Demonstrating the principles of data merging

Assignment Help Python Programming
Reference no: EM132515480

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: EM132515480

Questions Cloud

Describe the classification rule method : Describe the Classification Rule method and Describe the K-nearest neighbor method - Produce a K-NN model (classifiers.lazy.IBk) for Weather.numeric data set
Analyse system functionality : Analyse system functionality and Review and update technical and user documentation for at least TWO systems or occasions
Explain what nutrition is and why it is important : Explain what nutrition is and why it is important and Describe the characteristics of a healthy diet and provide supporting examples
Differences between the three types of intervention : Explain the differences between the three types of intervention in group work: Interpersonal. Intrapersonal. Environmental and Cognitive Restructuring
Demonstrating the principles of data merging : Demonstrating the principles of data merging, RESTful Web Services and Mashups - explaining the principles of data merging, RESTful Web Services and Mashups
Total inventory costs for that order quantity : Discuss the advantages and disadvantages of your proposed layout compared to another alternative layout type in terms of demand volume, flexibility, labor
Total inventory costs for the optimal order quantity : Compute the demand forecast for period 15 using the exponential smoothing with alpha equal - How many orders will be placed per year using the optimal order
Analyze how to develop consulting services : Analyze needed services by sector, service line, or phase to meet target and Analyze how to develop consulting services
Body language and mannerisms : Effectiveness of introduction, body, conclusion Overall organization Emphasis on two to four major points - Use of evidence to support claims Enthusiasm

Reviews

len2515480

5/14/2020 7:42:54 AM

This task is being used for measuring assurance of learning towards Association to Advance Collegiate Schools of Business (AACSB) accreditation. The following Program Learning Objectives will be assessed: PLO1.1: Written Communication Demonstrate advanced written communication skills in a business context Criteria: examination of the functionality of the application, its user interface, code structure and readability presentation of a cohesive application design and analysis to suit the case study demonstrate advanced written communication skills in a business context

len2515480

5/14/2020 7:42:44 AM

Artefact - Technical and Scientific, and Written Piece You will be given a case study and will develop an application to suit the case study's functionality needs. You will use tools developed in computer workshops to achieve the application and data integration requirements. Beside the runnable application, you also need to present your design and analysis in the form of a written report. A guideline structure will be provided on Blackboard.

len2515480

5/14/2020 7:42:28 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

  Define a function which can generate a dictionary

Define a function which can generate a dictionary where the keys are numbers between 1 and 20 (both included) and the values are square of keys.

  Write a grade book program for his class to help him

Write a Grade Book program for his class to help him compute final grades. Design a program that asks for the student's name.

  Create a new table with the same dimensions as the two table

Create a function called threeboxes that expects two 2-dimensional tables of integers as parameters. Both will be implemented as a list of lists.

  Write a python run test page

Write a python run test page. The run-test page will receive a data.csv from a configure page. The video is only to show you the whole project

  Program that creates a dictionary containing

Write a program that creates a dictionary containing the U.S. states as keys and their capitals as values. The program should then randomly quiz the user by displaying

  Write a program that allows the user to entre a list of num

You have to write a program that allows the user to entre a list of numbers and to return the same list but with the numbers inverse.

  Two-dimensional word puzzle

Write a python function called find_words that finds and prints the list of valid words in a two-dimensional word puzzle

  Generate a table with the results as shown in the example

Prompt for the difficulty level, and then start the game. The computer picks a random number in that range and prompts the player to guess that number.

  What is the difference in execution speed

In Python, Using a random number generator, create a list of 500 integers.

  Write python script that reads and analyses country metadata

ICT702 Task 2 - Theme: Child Mortality. In this second part of Task 2, you should write another Python script that reads and analyses the country metadata

  Read a list of guest names from a file into a list

Program in Python that will Read a list of guest names from a file into a list. Enter from the keyboard a guest name into a variable using the input statement.

  Compute the orders for a takeaway coffee shop

Create a Python program that will compute the orders for a Takeaway Coffee shop.

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