1. Homepage
  2. Homework
  3. ITECH2004 DATA MODELLING - Assignment 2 Advanced Database Design and Implementation
This question has been solved

ITECH2004 DATA MODELLING - Assignment 2 Advanced Database Design and Implementation

Engage in a Conversation
Federation University AustraliaITECH2004DATA MODELLINGSQLDatabase

ITECH2004 – DATA MODELLING ASSIGNMENT 2, SEM2 2023 CourseNana.COM

Assignment 2 CourseNana.COM

Advanced Database Design and Implementation CourseNana.COM

Purpose and Learning Outcomes Purpose CourseNana.COM

The purpose of the assignment is to provide students with the opportunity to apply knowledge and skills developed during the semester with particular reference to: CourseNana.COM

  1. Interpretation of business rules from additional information for case study; CourseNana.COM

  2. Knowledge acquisition with respect to Spatial, Graph and Document Databases: CourseNana.COM

    1. Creation of a spatial database, graph database and a document database; CourseNana.COM

    2. Creation of spatial data within the spatial database, graph data within the graph database and CourseNana.COM

      document data within the document database; CourseNana.COM

    3. Querying of the spatial, graph and document data. CourseNana.COM

Learning Outcomes CourseNana.COM

The learning outcomes directly assessed are: CourseNana.COM

Knowledge: CourseNana.COM

K2. Explain the motivation for emerging trends in database technology, and the impact of database technology on organisations. K3. Discriminate between different types of database systems (e.g. relational, spatial, NoSQL, hierarchical, graph, object) CourseNana.COM

Skills: CourseNana.COM

S1. Interpret conceptual level diagrams (e.g. entity relationship) to implement a database. CourseNana.COM

S2. Demonstrate skills in designing and building a database application using a commercially available database management system development tool.
S3. Use a query language for data manipulation. CourseNana.COM

Application of Knowledge and Skills: CourseNana.COM

A1. Design and implement a relational database using a database management system.
A2. Utilise a query language tools and techniques to obtain data and information from a database. CourseNana.COM

ITECH2004 Assignment2 SQL and Extensions CourseNana.COM

Page 1 of 6 CourseNana.COM

ITECH2004 – DATA MODELLING CourseNana.COM

Timelines and Expectations CourseNana.COM

Percentage Value of Task: 30% of the course marks Due: Refer to Course Descriptor or Moodle Minimum time expectation: 25 hours CourseNana.COM

ASSIGNMENT 2, SEM2 2023 CourseNana.COM

Students are required to complete the assignment individually.
Students are expected to submit the required report and details (see below) to the submission box in their Moodle shell.
CourseNana.COM

Assignment Requirements CourseNana.COM

Case Study – Tourism Track Recommender System CourseNana.COM

Refer to Figure 1 for a high-level overview of the system to be developed. CourseNana.COM

The company for whom you are developing this system wants people to visit local walks that are considered to have touristic appeal. For instance in Melbourne there are several tourism guide books and websites that detail walks that interested tourists can use to explore sites of local interest. CourseNana.COM

In order to find potentially interested people, the company trawls various sources of social media (e.g. Facebook, Twitter, Instagram etc) for geocoded data – which could include a mention of a certain place, or coordinates tagging postings or hidden within image EXIF data. CourseNana.COM

The geographic coordinates are then used to search through a database of tracklogs for local touristic walks. The nearest walk is retrieved and recommended to that person. CourseNana.COM

Additionally, during the social media trawl, friendship links are gathered, and these are used to recommend the same retrieved walk to the persons’ friends. The links are inserted into a separate database for later use. CourseNana.COM

Additionally, anyone who wants to submit a review of their walking experience can do so. This is inserted into a separate database. CourseNana.COM

NOTE: The complete scenario for the assignment will be discussed in lectures and support provided in tutorials, including appropriate algorithms for calculating the nearest tracklog. CourseNana.COM

ITECH2004 Assignment2 SQL and Extensions Page 2 of 6 CourseNana.COM

ITECH2004 – DATA MODELLING ASSIGNMENT 2, SEM2 2023 CourseNana.COM

Figure 1. Overview of Tourism Track Recommender System CourseNana.COM

Technical Details CourseNana.COM

While the system as explained appears to be a single application, you do not need to develop a Graphical User Interface that incorporates all of these different elements. Instead you merely need to demonstrate these different parts. The case study is used to motivate these different types of technology. CourseNana.COM

To simulate the social media data, you will use a Postgres database, which will include tables of people (at least 5), their connections to other people, and some coordinates related to them - which supposedly originated from their social media profile. CourseNana.COM

You can use the same Postgres database for the next spatial part but you will need to extend the PostgreSQL relational database to a PostGIS spatial database. You can write SQL commands in pgAdmin4 to create spatial data in the extended database, and write spatial queries using SQL. The PostGIS database will need to have some tracklogs inserted (at least 5), each comprised of at least 10 points. You will need to be able to query this database as follows: given a specific point (set of x,y coordinates), you are to find all tracklogs (as polygons) within which this point is CourseNana.COM

ITECH2004 Assignment2 SQL and Extensions Page 3 of 6 CourseNana.COM

ITECH2004 – DATA MODELLING ASSIGNMENT 2, SEM2 2023 CourseNana.COM

contained. You are also required to retrieve the nearest tracklog if the point does not lie within a specific tracklog. For the spatial database tasks you should use the Spatial Reference ID (SRID) of 4326 for your spatial data. CourseNana.COM

The Neo4j database will contain nodes representing people and links representing the relationships between these people. You will need to be able to insert new nodes and links into the database. You will need to be able to retrieve friends of a specific named person. Insert at least 5 people. CourseNana.COM

The MongoDB document database will contain a collection of reviews, comprised of JSON documents that have appropriate key:value attributes, for instance keys such as “Trip name/ID”, “Reviewer name/ID”, “Rating”, “Review” etc. You will need to write the code to insert at least 5 reviews. Use MongoDBCompass GUI and associated software mongosh to create the document database, create a collection in that document database, create documents within that collection, write MongoDB commands to populate the collection. You will also need to write MQL to query the database to find the best review. CourseNana.COM

Additional Information General Comments CourseNana.COM

The submission must be presented in a professional, clear and concise manner. If you need further system information, please use your initiative and make reasonable and logical assumptions. State your assumptions in your report. Ask your lecturer or tutor for further information. CourseNana.COM

Readings CourseNana.COM

Your text, course material and references listed on the Course Description will assist you with this assignment. CourseNana.COM

For the spatial database component:
PostGIS documentation and in particular:
Introduction to PostGIS Tutorial;
PostGIS 3.1.5dev Manual – Chapter 5 PostGIS Reference; IISS ITECH2004 PostGIS Installation Guide V1.0;
CourseNana.COM

Week 7 laboratory sheet; Week 7 lecture; CourseNana.COM

For the document database component:
Bradshaw, S., Brazil, E. & Chodorow, K. (2020). MongoDB: The Definitive Guide. O’Reilly Media Inc. Coronel, C., & Morris, S. (2018). Database systems: Design, implementation & management (13th ed.). Cengage Learning;
https://docs.mongodb.com/manual/tutorial/
https://docs.mongodb.com/guides/
Phaltankar, A., Ahsan, J., Harrison, M. & Nedov, L. (2020). MongoDB Fundamentals. Packt Publishing SEITPS ITECH2004 MongoDB Installation Guide V1.0;
Week 8 laboratory sheet;
Week 8 lecture and Additional Mongo Details slides
CourseNana.COM

Get in Touch with Our Experts

WeChat WeChat
Whatsapp WhatsApp
Federation University Australia代写,ITECH2004代写,DATA MODELLING代写,SQL代写,Database代写,Federation University Australia代编,ITECH2004代编,DATA MODELLING代编,SQL代编,Database代编,Federation University Australia代考,ITECH2004代考,DATA MODELLING代考,SQL代考,Database代考,Federation University Australiahelp,ITECH2004help,DATA MODELLINGhelp,SQLhelp,Databasehelp,Federation University Australia作业代写,ITECH2004作业代写,DATA MODELLING作业代写,SQL作业代写,Database作业代写,Federation University Australia编程代写,ITECH2004编程代写,DATA MODELLING编程代写,SQL编程代写,Database编程代写,Federation University Australiaprogramming help,ITECH2004programming help,DATA MODELLINGprogramming help,SQLprogramming help,Databaseprogramming help,Federation University Australiaassignment help,ITECH2004assignment help,DATA MODELLINGassignment help,SQLassignment help,Databaseassignment help,Federation University Australiasolution,ITECH2004solution,DATA MODELLINGsolution,SQLsolution,Databasesolution,