Demonstrate advanced written communication skills

Assignment Help Python Programming
Reference no: EM132514358

ICT705 Data and System Integration - University of Southern Queensland

Case Study: Overseas Shipping Logistics Ltd

Assignment tasks

This assignment consists of two deliverables:
1. Demonstration code - demonstrating the principles of data merging, RESTful Web Services and Mashups
2. Integration report - explaining the principles of data merging, RESTful Web Services and Mashups and applying them to the case study organisation

Demo code

There are three major components in the demo system:
• Data integration demo. In this demo, there are two data source files:
• "owid-covid-data.csv" contains COVID-19 statistical data from over 200 countries for dates ranging from the 31st December 2019 to 30th March 2020*. You may like to download the latest file from Our World in Data - Coronavirus Source Data,
• "Country_location.xml" contains country location coordinates for each country.

Instructions:
• Before importing the COVID-19 data into Python you are required to:
i. Choose 15 countries from the "owid-covid-data.csv" dataset you think would be applicable to the case study,
ii. Retain the most current day's statistics for each of these 15 countries,
iii. Add 2 or 3 extra columns to your dataset. These columns will contain other 2 or 3 other interesting statistics of your choosing for each of your
selected countries (you will need to do some quick research on the countries you choose to include)
iv. Populate these extra columns with the statistics you research for each country
v. Save this new dataset into a new .csv file which you can import into Python
• Create a Python scrip file with the name "data_merger.py"
• This Python script will use the Python petl framework to:
i. Import your new CSV and "Country_location.xml" files into Python. HINT: hard-to-find code to import this XML file using petl - etl.fromxml('Country_location.xml', './/tr', ('th', 'td'))
ii. Merge the country geolocation data from the XML file with the COVID- 19 data, and
iii. Export the merged data as a .csv file named "covid_countries.csv"

• RESTful Web service server demo. In this demo, you are required to build a RESTful Web service
• This Web Service requires the Python bottle and petl frameworks
• This Web Service server accepts a ‘getcountry' query from the client browser similar to "/getcountry?country=xxxx",
• The server Web Service will return a JSON object to the client with all the attributes required by the client browser.
HINT: the data will be returned as a Json / Dictionary object - etl.cut(datatable, "data", "data", "etc", "etc", "etc").dicts()[0]
HINT: in order for your code to return the JSON object to an AJAX request insert the following code before returning the JSON object - response.headers['Access-Control-Allow-Origin'] = '*' response.headers['Content-type'] = 'application/json'
• The data for this JSON object will be retrieved from the "covid_countries.csv" file created in component 1.
• A Python scrip file with the name "country_locator.py" will contain this RESTful Web Service server demo.
• Mashup demo. In this demo, you are required to build a mashup application
• Your HTML page accepts a country name as the input. If the country can be found in your dataset, then its location is displayed in Google Map. (See sample Mashup figure 1),
• A HTML file "country_map.html" should be implemented.
• In this file, a text field is provided at the page top to accept user's input of country name.
• In addition, a Submit button will trigger an AJAX "getcountry" Web Service GET query to retrieve the country's corresponding latitude, longitude and other country specific data, and highlight and centre the location in Google map.

• In addition to highlighting the country's positon on the map, a user is able to click on the marker bubble and see an information window containing country specific COVID-19 information and 2 to 3 other country statistics you have included in your dataset.

Integration Report

In addition to the above demo code you are required to include a Report explaining the key concepts around the demo design and implementation.

Your report should follow the following template:

Executive Summary Table of Contents
Table of Figures (if needed) Table of Tables (if needed)
1.0 Introduction
2.0 Service Oriented Architecture (SOA)
Key System Concepts
Data Cleaning & Merging
RESTful Web Services
Mashup Design
4.0 Demo Running Instructions
5.0 Conclusion & Recommendations Reference List
Appendices (if needed)

Please address the following in your report:
• Outline the theory and technologies under each of the headings.
• Explain how these technologies can be applied by OSL. Outline the difficulties, advantages and disadvantages to OSL. Give examples in addition to the COVID-19 application,
• Explain how to run your code and the principles behind each step - you may use screenshots of Mashups, etc. if you wish,
• Reflect on your journey as you developed the demonstration - the problems you faced, how you researched and found answers.

Attachment:- Data and System Integration.rar

Reference no: EM132514358

Questions Cloud

What makes a contribution income statement unique : What makes a contribution income statement unique? Discuss how a contribution income statement could be used to improve planning in a company. please include re
Find which is not a feasible solution : Bagel profits are 20 cents each and croissant profits are 30 cents each. the shop wishes to maximize profits. which of the following is not a feasible solution?
Mos 5101 columbia southern : What are the legal terms that are included in summarizing the legal principles as related to safety and health? Explain in detail.
What is the expected market price share : $46.25 at the end of every month per preferred share. What is the expected market price share if money is worth 7.1% compounded quarterly?
Demonstrate advanced written communication skills : Demonstrate advanced written communication skills in a business context and design and analysis to suit the case study -explaining the principles of data
Compute the unit costs for materials costs : Compute the unit costs for materials costs. Compute the unit costs for conversion costs. Production costs chargeable to the Sanding Department in July
Current management of information systems : The research project is a research-based paper on a current Management of Information Systems topic,
Compute the price of a common share of husky : Compute the price of a common share of Husky. Husky Kennels will pay a quarterly common share dividend of $0.20 at the end of the next quarter.
Enhance a health care organization competitive advantage : How can effective human resources management (HRM) practices and policies enhance a health care organization's competitive advantage?

Reviews

len2514358

5/13/2020 4:46:10 AM

I need this assignment without any plagiarism and with proper format according to the instructions written in PDF file. please follow Harvard style reference.

Write a Review

Python Programming Questions & Answers

  Explain a program that prompts the user for a name

You task is to explain a program that prompts the user, for a name, an hourly rate, and number of hours worked, and computes and prints a paycheck.

  Design reusable parameterised functions

create multiple icon styles that can be drawn at different sizes, it would be very repetitive if you tried to code the whole solution using ‘brute force.' Instead you are strongly encouraged to design reusable parameterised functions to draw the i..

  Write a program that displays 10 random balls in a rectangle

Write a program that displays 10 random balls in a rectangle with width 120 and height 100, centered at (0,0).

  Write a program that prompts the cashier to enter all sales

A supermarket wants to reward its best customer of each day, showing the customer's name on a screen in the supermarket.

  Write a function which should accept a list argument

Write a function which should accept a list argument and an integer argument as input. The function should return a new list containing the k largest value.

  Tower of hanoi game

Tower of Hanoi game that you can let a player to move discs between the towers using a mouse - Each move consists of taking the upper disk from one of the pegs and sliding it onto another rod, on top of the other disks that may already be present o..

  Create an array that contains the days of the week

Create an array that contains the days of the week, and then Create a loop to print that content. Include explanations of each line of code and submit.

  Ask from the user a string s, print a string

Ask from the user a string s, print a string where all occurrences of its first char have been changed to '*', except do not change the first char itself.

  Write a python program for given incidence

Write a Python program called wdcount.py which uses a dictionary to count the number of occurrences of each word (ignoring case)in a file. Note that the input.

  Define a function findword that takes a line as input

Define a function "findWord" that takes a line as input and return the words & their counts (if stopwords, don't count the word)

  Write a program using the ''requetinteger''

using python/jython programming write a program using the 'requetInteger' function that will ask the user to type a value that will draw a line from one point on a picture to another. I don't need specific help just a gerneral idea.

  Develop a Python program to solve a problem

Develop a Python program to solve a problem. Follow good program development and coding style practices. Develop a Graphical User Interface

Free Assignment Quote

Assured A++ Grade

Get guaranteed satisfaction & time on delivery in every assignment order you paid with us! We ensure premium quality solution document along with free turntin report!

All rights reserved! Copyrights ©2019-2020 ExpertsMind IT Educational Pvt Ltd