国产人妻人伦精品_欧美一区二区三区图_亚洲欧洲久久_日韩美女av在线免费观看

合肥生活安徽新聞合肥交通合肥房產生活服務合肥教育合肥招聘合肥旅游文化藝術合肥美食合肥地圖合肥社保合肥醫院企業服務合肥法律

 ACADEMIC代做、代寫SQL設計編程

時間:2024-01-13  來源:合肥網hfw.cc  作者:hfw.cc 我要糾錯



College of Arts, Technology and Environment 
ACADEMIC YEAR 2023/24 
 
Assessment Brief 
Submission and feedback dates 

Submission deadline:    Before 14:00 on 18/01/2024 
This is an individual assessment task eligible for a 48 hour late submission window. 

Marks and Feedback due on: 14/02/2024 
N.B. all times are 24-hour clock, current local time (at time of submission) in the UK 

Submission details:
Module title and code:    UFCFLR-15-M Data Management Fundamentals         

Assessment type:    Database Design and Implementation Task 

Assessment title:        Modelling & Mapping Bristol Air Quality Data         

Assessment weighting:    50% of total module mark 

Size or length of assessment: N/A  

Module learning outcomes assessed by this task: 

Main Learning Goals & Outcomes (from the Module Specification)
oUnderstand and use the relational model to structure data for efficient and effective storage and retrieval.
oDesign, develop and validate a range of data models and schemas.
oUnderstand, evaluate and apply a range of data query and manipulation languages and frameworks.
Additional Learning Outcomes (from the Module Specification)
oConstructing and reverse-engineering entity relationship models.
oUnderstanding and applying data normalisation.
oNoSQL [data formats and understanding the difference] to RDBMS.

oLearn and use the MARKDOWN  markup syntax.

Assignment background & context
Measuring Air Quality
Levels of various air borne pollutants such as Nitrogen Monoxide (NO), Nitrogen Dioxide (NO2) and particulate matter (also called particle pollution) are all major contributors to the measure of overall air quality.
For instance, NO2 is measured using micrograms in each cubic metre of air (㎍/m3). A microgram (㎍) is one millionth of a gram. A concentration of 1 ㎍/m3 means that one cubic metre of air contains one microgram of pollutant.
To protect our health, the UK Government sets two air quality objectives for NO2 in their Air Quality Strategy
1.The hourly objective, which is the concentration of NO2 in the air, averaged over a period of one hour.
2.The annual objective, which is the concentration of NO2 in the air, averaged over a period of a year.
The following table shows the colour encoding and the levels for Objective 1 above, the mean hourly ratio, adopted in the UK.
Index    1    2    3    4    5    6    7    8    9    10
Band    Low    Low    Low    Moderate    Moderate    Moderate    High    High    High    Very High
㎍/m³    0-67    68-134    135-200    20**267    268-334    335-400    40**467    468-534    535-600    601 or more
Further details of colour encodings and health warnings can be found at the DEFRA Site.

The Input Data
The following ZIP file provides data ranging from 1993 to 22 October 2023 taken from 19 monitoring stations in and around Bristol.
Download & save the data file:  Air_Quality_Continous.zip (23.2 Mb)
Create a directory (folder) called “data” on your working machine and unzip the file there to Air_Quality_Continuous.csv (112 Mb).
Monitors may suffer downtime and may become defunct, so the data isn’t always complete for all stations.
Shown here is the first 8 lines of the file (cropped):

Note the following:
There are 19 stations (monitors):
188 => 'AURN Bristol Centre', 51.4572***56,-2.58564914143
203 => 'Brislington Depot', 51.4417**1802,-2.5599558**24
206 => 'Rupert Street', 51.4554331987,-2.59626237**4
209 => 'IKEA M**', 51.**528**609,-2.56207998299
213 => 'Old Market', 51.4560189999,-2.5834894**26
215 => 'Parson Street School', 51.4**675707,-2.604956656**
228 => 'Temple Meads Station', 51.4488837041,-2.584**776241
270 => 'Wells Road', 51.4278638883,-2.5***153315
271 => 'Trailer Portway P&R', 51.4899934596,-2.68877856929
375 => 'Newfoundland Road Police Station', 51.4606**8207,-2.58225341824
395 => "Shiner's Garage", 51.4577930**4,-2.56271419977
452 => 'AURN St Pauls', 51.4628294172,-2.58454**35
4** => 'Bath Road', 51.4425372726,-2.571375360**
459 => 'Cheltenham Road \ Station Road', 51.4689385**1,-2.5927241667
463 => 'Fishponds Road', 51.**80449714,-2.5**3027459
481 => 'CREATE Centre Roof', 51.4**213417,-2.622**405516
500 => 'Temple Way', 51.45794971** ,-2.58398****3
501 => 'Colston Avenue', 51.4552693827,-2.59664882855
672 => 'Marlborough Street', 51.4591419717,-2.5954**71836
These monitors are spread across the four City of Bristol constituencies represented by the following Members of Parliament (MP's):
oBristol East - Kerry McCarthy (MP);
oBristol Northwest - Darren Jones (MP);
oBristol South - Karin Smyth (MP); &
oBristol West - Thangam Debbonaire (MP).
Each line represents one reading from a specific detector. Detectors take one reading every hour. If you examine the file using a programming editor, (Notepad++ can handle the job), you can see that the first row gives headers and there are another 1603492 (1.60 million+) rows (lines). There are 19 data items (columns) per line.
The schema for data (what each field represents) is given below:
measure    desc    unit
Date Time    Date and time of measurement    datetime
SiteID     Site ID for the station     integer
NOx     Concentration of oxides of nitrogen     ㎍/m3
NO2     Concentration of nitrogen dioxide     ㎍/m3
NO    Concentration of nitric oxide     ㎍/m3
PM10    Concentration of particulate matter <10 micron diameter    ㎍/m3
O3    Concentration of ozone Concentration of non - volatile particulate matter <10 micron diameter    ㎍/m3
Temperature     Air temperature    °C
ObjectID    Object (?)    Integer
ObjectID2    Object (?)    Integer
NVPM10    Concentration of non - volatile particulate matter <10 micron diameter    ㎍/m3
VPM10    Concentration of volatile particulate matter <10 micron diameter    ㎎/m3
NVPM2.5    Concentration of non volatile particulate matter <2.5 micron diameter    ㎍/m3
PM2.5    Concentration of particulate matter <2.5 micron diameter    ㎍/m3
VPM2.5    Concentration of volatile particulate matter <2.5 micron diameter    ㎍/m3
CO    Concentration of carbon monoxide    ㎎/m3
RH    Relative Humidity    %
Pressure    Air Pressure    mbar
SO2    Concentration of sulphur dioxide    ㎍/m3

Completing your assessment  

What am I required to do on this assessment? 

This is an individual assessment task requiring you to design, implement and populate a relational DB (MySQL) using open data (pollution levels in Bristol).

You are then required to design and run several SQL queries against the extracted (cropped) data set.  

Additionally, you are required to produce a report (in markdown format) describing the research undertaken, a prototype implementation (using a small sample of the dataset) and at least one example query in the NoSQL database of your choice. This report should also discuss the use cases and justification of using de-normalised (NoSQL) data models in contrast to normalised (relational) data models.

Finally, you should produce a short report (less than 600 words and again in markdown format) explaining the overall process undertaken, any issues and resolutions and the learning outcomes you have achieved. 

Your submission should consist of a single ZIP file dmf-assign.zip  containing all files and the two reports as specified in this brief. 

Where should I start? 

This assignment consists of seven tasks. This is the task breakdown: 
Task 1:  Organize and model the data (10 marks):
Group the detectors by constituency and design a normalised Entity Relationship (ER) model which models all the data items.
Note that this model should be a "no loss" model - that is, with the required entities holding all the attributes from all the derived entities. 
All relationships should be clearly defined and enumerated.
Submission file: An ER diagram pollution-er.png.
Task 2:  Forward engineer the ER model to a MySQL database (10 marks):
Using MySQL Workbench and/or PhpMyAdmin, create the required tables and fields to hold the data. All primary and foreign key attributes should be defined, and all fields should have the appropriate (required) data type.
Submission file: A download of a SQL file as pollution.sql showing all table and attribute definitions.
Task 3:  Crop and cleanse the data (10 + 6 marks):
i) Crop the dataset to hold only the data from 1st January 2015 on; (5 marks);
ii) Cleanse the cropped dataset to ensure that all dates fall between 1st January 2015 and 22nd October 2023. (5 marks)

An extra 6 marks are available if you can accomplish the above two tasks using PYTHON code.

Submission file/s: A ZIP file cropped.zip holding the cropped and cleansed data. Additionally and possibly, a PYTHON script called cropped.py that accomplishes the above tasks.

Task 4:  Populate the MySQL database tables with the extracted/reduced dataset created in the previous task (10 + 6 marks):

USE PhpMyAdmin’s “import CSV” feature or MySQL's “LOAD DATA INFILE” statement to import the cropped & cleansed dataset into the MySQL tables implementation completed in Task 2 (10 marks).

You can make use of the following guides:
- Import CSV file data into MySQL table with phpMyAdmin;
- Import CSV File Into MySQL Table.

An extra 6 marks are available if you can accomplish the above data mapping task using PYTHON code.

Submission file/s: A screen capture readings.png showing the first 12 records of the main readings file.
Additionally and possibly, a PYTHON script called import.py that accomplishes the above task.

Task 5: Design, write and run SQL queries (12 marks):

Write and implement (test run) the following four SQL queries:

i) Return the date/time, station name and the highest recorded value of nitrogen oxide (NOx) found in the dataset for the year 2022. (4 marks)

ii) Return the mean values of PM2.5 (particulate matter <2.5 micron diameter) & VPM2.5 (volatile particulate matter <2.5 micron diameter) by each station for the year 2022 for readings taken on or near 08:00 hours (peak traffic intensity). (4 marks)

iii) Extend the previous query to show these values for all stations for all the data. (4 marks)
Model the data for a specific monitor (station) to a NoSQL data model (key-value, xml or graph) to implement the selected database type/product & pipe or import the data.
Submission files: Code listing of the three SQL queries query-a.sql, query-b.sql & query-c.sql.
Task 6: Model, implement and query a selected NoSQL database. (24 marks)
Model the data for a specific monitor (station) to a NoSQL data model (key-value, xml, timeseries or graph) to implement the selected database type/product & pipe or import a small sample of the data. You should also implement an example query in your selected database and show the output (screen capture).
You can select from any of the eight databases listed below but if you want, you can also select one not currently on the list (after consultation with the tutor).
        
         
Submission file: A report (in markdown format) nosql.md that is less than 1200 words.

Task 7: Reflective Report. (12 marks)
A short report in Markdown format (less than 800 words) reflecting on the assignment tasks, the problems encountered, and the solutions found.
You should also briefly outline the Learning Outcomes you have managed to achieve in undertaking this Assignment.
Submission file: A report (in markdown format) named report.md. 
    


What do I need to do to pass?  
The pass mark is 50%. 

How do I achieve high marks in this assessment?  
We are looking for a well-constructed design transformed into a complete and valid implementation. No PYTHON coding is required to achieve a first-class mark (up to 88%) but if you do want to attempt the PYTHON coding tasks, you can gain an extra 12%. The SQL queries should be functional and return the required results. A first-class attempt will also include two well-constructed reports. The NoSQL task should import a small sample of the dataset and implement at least one query showing the output.  This report should outline the design and implementation and include a brief discussion of a normalised (relational) model contrasting it to a de-normalised (NoSQL) model. The final report should reflect on the tasks undertaken, the problems encountered, and the solutions found.  You will make use UWE/Harvard referencing if any external resources are referenced. 

How does the learning and teaching relate to the assessment?  
The lectures and particularly the workshops will guide you on each of design and implementation tasks. All teaching will be completed before the assignment is due for submission. 

What additional resources may help me complete this assessment? 
You will find relevant material in the lectures and worksheets. You can also make use of LinkedIn Learning for hands on lessons and practice. 
 
What do I do if I am concerned about completing this assessment? 
UWE Bristol offer a range of Assessment Support Options that you can explore through this link, and both Academic Support and Wellbeing Support are available. 
For further information, please see the Academic Survival Guide. 

How do I avoid an Assessment Offence on this module? 2 
Use the support above if you feel unable to submit your own work for this module.  
Avoid collusion and explain things in your own words (not those of a machine). 


Marks and Feedback 
Your assessment will be marked according to the following marking criteria. 
You can use these to evaluate your own work before you submit. 
Criterion     <50%     50-59%     60-69%     ≧70% 
Task 1:  Organize and model the data (10%)
    Limited and incorrect model that does not capture all the required entities and attributes. Relationships are incorrect.
No proper naming convention adopted.
    Adequate model with some minor errors. All entities and attributes are captured. Relationships are as required.    A valid and correct model capturing all required entities, attributes and relationships. All attributes are properly named with their required data types.
    Optimal model adopting a consistent naming convention. All entities, attributes (with the required data types) and relationships are captured. Relationships are labelled and correctly enumerated.

Task 2: Forward Engineer the ER model to MySQL (10%)    Database lacks all required fields and may have missing keys. Relationships are not properly implemented using foreign keys as required.    All data has been mapped with the required keys and relationships. There may be minor errors.    A good implementation including the required keys and relationships. Data types may not be optimal and have minor anomalies.    A complete and valid mapping of the ER model with well named fields and data types. Required relationships are complete and correct.
Task 3: Crop and cleanse the data (10% + 6%)    Not all data is cropped and cleaned as required.    Data is adequately cleaned overall but may have some minor anomalies (e.g., missed rows).    All data is cropped and cleaned as required.     A complete cleansing and cropping attempt with all data complete with no missing columns or records. An attempt has been made at the PYTHON code even if not complete.

Task 4: Populate the MySQL database tables (10% + 6%)    Not all data is mapped to the database as required.    All data has been mapped but may be inconsistent in places due to an inadequate model.    All data is mapped to the required tables and all keys are implemented. No missing data and all relationships are realized using foreign keys.    All data is accurately mapped to the required tables and all keys are implemented. No missing data and all relationships are realized using foreign keys. An attempt has been made at the 
PYTHON code even if not complete.
Task 5: SQL queries    Queries are not functional and/or contain errors. Some effort apparent.     All queries are included in the submission as required. Queries are functional. Queries return the expected output.    SQL queries are commented and functionally complete returning the expected output.     SQL queries include comments, are optimized, and work as required. Queries and output (screen captures) are included in the submission. 
Task 6: NoSQL implementation and report    A sub-optimal design or implementation. Report lacks sufficient discussion and reflection.     A reasonable report with an adequate data model. Implementation may have some flaws and the discussion may lack the required detail.    A complete data model and NoSQL implementation. Some discussion of normalisation / de-normalisation in their context.    A complete and accurate NoSQL implementation with an excellent model and discussion. One or more queries have been implemented showing evidenced output.
Task 7: Reflective report    Report lacks sufficient detail and reflection.    An adequate report with some discussion of the problems encountered and solutions implemented.    A good report with adequate discussion of problems and solutions. Some discussion of learning outcomes.    An excellent and complete report with detailed discussion of problems, solutions and the learning outcomes achieved.
 
1.In line with UWE Bristol’s Assessment Content Limit Policy (formerly the Word Count Policy), word count includes all text, including (but not limited to): the main body of text (including headings), all citations (both in and out of brackets), text boxes, tables and graphs, figures and diagrams, quotes, lists.  
2.UWE Bristol’s UWE’s Assessment Offences Policy requires that you submit work that is entirely your own and reflects your own learning, so it is important to: 
Ensure you reference all sources used, using the UWE Harvard system and the guidance available on UWE’s Study Skills referencing pages.  
Avoid copying and pasting any work into this assessment, including your own previous assessments, work from other students or internet sources 
Develop your own style, arguments and wording, so avoid copying sources and changing individual words but keeping, essentially, the same sentences and/or structures from other sources 
Never give your work to others who may copy it 
If an individual assessment, develop your own work and preparation, and do not allow anyone to amend your work (including proof-readers, who may highlight issues but not edit the work).  

When submitting your work, you will be required to confirm that the work is your own, and text-matching software and other methods are routinely used to check submissions against other submissions to the university and internet sources. Details of what constitutes plagiarism and how to avoid it can be found on UWE’s Study Skills pages about avoiding plagiarism. 
請加QQ:99515681 或郵箱:99515681@qq.com   WX:codehelp

掃一掃在手機打開當前頁
  • 上一篇:指標代寫 代寫指標 代寫公式 公式代寫
  • 下一篇:指標代寫 代寫選股公式 代寫指標 代寫量化策略
  • 無相關信息
    合肥生活資訊

    合肥圖文信息
    流體仿真外包多少錢_專業CFD分析代做_友商科技CAE仿真
    流體仿真外包多少錢_專業CFD分析代做_友商科
    CAE仿真分析代做公司 CFD流體仿真服務 管路流場仿真外包
    CAE仿真分析代做公司 CFD流體仿真服務 管路
    流體CFD仿真分析_代做咨詢服務_Fluent 仿真技術服務
    流體CFD仿真分析_代做咨詢服務_Fluent 仿真
    結構仿真分析服務_CAE代做咨詢外包_剛強度疲勞振動
    結構仿真分析服務_CAE代做咨詢外包_剛強度疲
    流體cfd仿真分析服務 7類仿真分析代做服務40個行業
    流體cfd仿真分析服務 7類仿真分析代做服務4
    超全面的拼多多電商運營技巧,多多開團助手,多多出評軟件徽y1698861
    超全面的拼多多電商運營技巧,多多開團助手
    CAE有限元仿真分析團隊,2026仿真代做咨詢服務平臺
    CAE有限元仿真分析團隊,2026仿真代做咨詢服
    釘釘簽到打卡位置修改神器,2026怎么修改定位在范圍內
    釘釘簽到打卡位置修改神器,2026怎么修改定
  • 短信驗證碼 寵物飼養 十大衛浴品牌排行 suno 豆包網頁版入口 wps 目錄網 排行網

    關于我們 | 打賞支持 | 廣告服務 | 聯系我們 | 網站地圖 | 免責聲明 | 幫助中心 | 友情鏈接 |

    Copyright © 2025 hfw.cc Inc. All Rights Reserved. 合肥網 版權所有
    ICP備06013414號-3 公安備 42010502001045

    国产人妻人伦精品_欧美一区二区三区图_亚洲欧洲久久_日韩美女av在线免费观看
    成人免费在线网| 久久一区二区精品| 国产精品人人做人人爽| 国产精品12345| 国产精品夜夜夜一区二区三区尤| 男人亚洲天堂网| 欧洲国产精品| 色之综合天天综合色天天棕色| 在线视频亚洲自拍| 亚洲中文字幕无码中文字| 久久久久久高潮国产精品视| 伊人久久在线观看| 亚洲欧洲久久| 日本中文字幕在线视频观看| 日本在线视频不卡| 日本www高清视频| 欧美综合在线观看视频| 日韩精品xxxx| 男人的天堂成人| 精品一区久久久| 国产视频99| av动漫在线免费观看| 久久久亚洲国产天美传媒修理工| 久久亚洲国产成人精品无码区| 久久全国免费视频| 国产成人三级视频| 国产精品九九久久久久久久| 美女999久久久精品视频| 亚洲一区二区三区精品视频 | 久久精品在线免费视频| 国产第一页视频| www.欧美精品| 欧美日韩成人在线播放| 亚洲熟妇无码一区二区三区导航| 午夜精品视频在线观看一区二区 | 国产伦精品一区二区三区视频黑人| 国产九九精品视频| 91精品视频免费| 日韩在线欧美在线| 国产精品美女免费看| 中文字幕乱码人妻综合二区三区| 日韩中文字幕一区| 欧美成人高潮一二区在线看| 国产欧美日韩综合精品二区 | 国产精品久久久一区| 在线播放 亚洲| 日本精品在线视频| 国产综合久久久久| 69精品小视频| 国产精品大片wwwwww| 亚洲资源视频| 欧美成人蜜桃| 久久久亚洲欧洲日产国码aⅴ| 国产精品私拍pans大尺度在线| 一区二区三区我不卡| 欧美亚洲另类制服自拍| 97欧洲一区二区精品免费| 三级三级久久三级久久18| 欧美在线一级va免费观看| 国产裸体舞一区二区三区| 久久精品福利视频| 日日噜噜夜夜狠狠久久丁香五月 | 欧美极品色图| 逼特逼视频在线| 日韩一二三在线视频播| 亚洲午夜精品久久久久久人妖| 黄色一级大片免费| 国产成人精品免高潮费视频 | 日韩wuma| 68精品国产免费久久久久久婷婷| 国产精品精品久久久| 日韩免费av片在线观看| 久久这里只有精品18| 亚洲日本欧美在线| 国产精品一区二区欧美 | 午夜免费在线观看精品视频| 国产伦精品一区二区三区高清| 国产精品-区区久久久狼| 日本精品免费一区二区三区| 白白操在线视频| 在线一区亚洲| 国产在线拍揄自揄视频不卡99| 久草资源站在线观看| 欧美一区2区三区4区公司二百| 91久久精品一区二区别| 在线观看亚洲视频啊啊啊啊| 精品亚洲第一| 欧美另类99xxxxx| 韩日午夜在线资源一区二区| 久久99精品久久久久久水蜜桃| 三级三级久久三级久久18| 国产精品99久久久久久久| 一区二区三区av在线| 国产免费一区二区三区| 欧美激情精品在线| 丰满人妻中伦妇伦精品app| 欧美激情二区三区| 国产男女无遮挡| 一区二区在线中文字幕电影视频| 国产精品一区二区三区久久久| 一区二区在线不卡| 91久久精品国产91久久| 性视频1819p久久| 国产v综合ⅴ日韩v欧美大片| 日韩av日韩在线观看| 久久免费视频网| 日韩精品欧美在线| 国产精品国产精品| 国产情侣av自拍| 亚洲欧美日韩精品综合在线观看 | 精品国产一区二区三区久久久久久 | 欧美亚洲另类在线| 久久精品国产成人精品| 国内精品一区二区| 中文字幕一区二区三区最新| 97碰在线视频| 任我爽在线视频精品一| 久久精品视频在线| 国产欧美亚洲视频| 午夜精品一区二区三区在线视频| 久久精品视频16| 麻豆视频成人| 亚洲色成人一区二区三区小说| 国产v综合v亚洲欧美久久| 欧美日韩免费观看一区| 九九热在线精品视频| 久久久久国产精品视频| 黄色成人在线免费观看| 亚洲影视九九影院在线观看| 久久久久久亚洲精品不卡4k岛国| 国产综合av在线| 日韩av黄色网址| 久久在线免费观看视频| 国产精品99久久久久久人| 欧美精品一区免费| 亚洲一区二区三区视频播放| 久久精品夜夜夜夜夜久久| 99久久激情视频| 国内精品久久久| 日本一本草久p| 精品国产一区二区三区四区精华| 国产v亚洲v天堂无码久久久 | 欧美国产视频一区| 一区二区冒白浆视频| 日韩一区视频在线| av一区观看| 国产综合在线看| 欧美在线播放一区二区| 亚洲一区二区三区在线免费观看| 国产精品久久久久久久久电影网 | 精品国产一区二区三区在线观看| 国产精品亚洲美女av网站| 日本毛片在线免费观看| 久久99精品国产99久久6尤物| 色青青草原桃花久久综合| 国产精品99久久免费黑人人妻| 国产女女做受ⅹxx高潮| 精品人妻人人做人人爽| 日韩视频免费在线播放| 亚洲第一页在线视频| 蜜臀久久99精品久久久久久宅男| 国产精品欧美日韩一区二区| 久久久久中文字幕| av动漫在线看| 国产欧美精品一区二区| 欧美两根一起进3p做受视频| 日本在线精品视频| 性色av一区二区咪爱| 中文字幕黄色大片| 久久伊人精品天天| 久久精品国产亚洲精品2020| 久热国产精品视频一区二区三区| 国产精品一级久久久| 国产区精品视频| 国产在线欧美日韩| 黄色91av| 黄色影院一级片| 欧美日韩在线高清| 日韩中文字幕av在线| 亚洲三区在线观看| 亚洲中文字幕久久精品无码喷水 | 久久久久久香蕉| 国产成人av网址| 国产a级片免费看| 久久涩涩网站| 久久免费精品视频| 国产第一页视频| 国产成人a亚洲精v品无码| 久久综合九色欧美狠狠| 97精品视频在线| av一区二区在线看| 97免费在线视频| 91免费视频国产| 久久人人爽人人爽人人av | 亚洲精品视频一区二区三区| 欧美大片欧美激情性色a∨久久| 国产99久久精品一区二区永久免费| 久久国产精品影视| 亚洲一区中文字幕| 亚洲三级一区|