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

合肥生活安徽新聞合肥交通合肥房產(chǎn)生活服務(wù)合肥教育合肥招聘合肥旅游文化藝術(shù)合肥美食合肥地圖合肥社保合肥醫(yī)院企業(yè)服務(wù)合肥法律

代寫COMP228、代做Python,Java編程

時(shí)間:2023-11-23  來(lái)源:合肥網(wǎng)hfw.cc  作者:hfw.cc 我要糾錯(cuò)


COMP228 Assignment 2 w/c 20th November 2023

Developing a visitor App for Ness Gardens.

Background:

Ness Botanical Gardens is located on the Wirral Peninsula (at 53.27566, -3.04122) and is owned by the

University of Liverpool. It features a wide variety of plants gathered from all over the world. Visitors may walk

around the gardens exploring the plants and scenery.

The Computer Science department worked with Ness in the **’s to develop a mySQL database to hold it’s

thousands of plant records. This database does not record the GPS location of individual plants. Instead, plants

are allocated to “beds” and it is the geographic locations of these that are recorded in the database table

“beds”.

Plant records in the database are held in a simplified version of the itf2 format (International Transfer Format 2 -

an international standard for transferring plant data) in the table named “plants”,

Your Task:

You will design and develop a portrait orientation application written in Swift 5.7 or later, using UIkit and

Storyboard for iPhone 15. The application is designed to assist visitors to Ness Gardens. Your app includes a

map and table and uses the user’s current location. The project must be developed using the Git version control

system (i.e. you must make regular commits to the repository, stored locally in your project. Note: Do not move

your project to Windows systems without zipping it first. Doing so can lose the hidden Git repository folder).

In order to get information about the plants, an API has been created. You will need to retrieve data from a web

service (in the following URL’s the value for the record number, recnum, is just an example):

https://cgi.csc.liv.ac.uk/~phil/Teaching/COMP228/ness/data.php?class=beds all bed data

https://cgi.csc.liv.ac.uk/~phil/Teaching/COMP228/ness/data.php?class=plants all plant data

https://cgi.csc.liv.ac.uk/~phil/Teaching/COMP228/ness/data.php?class=plants&recnum=4041 data on a specific plant

https://cgi.csc.liv.ac.uk/~phil/Teaching/COMP228/ness/data.php?class=images all image data

https://cgi.csc.liv.ac.uk/~phil/Teaching/COMP228/ness/data.php?class=images&recnum=1129 image data on a specific plant

Note that:

• As can be seen in the example above, some plants have associated images referenced in an “images”

table. The actual jpeg images referred to in the table are located at the following base URL:

https://cgi.csc.liv.ac.uk/~phil/Teaching/COMP228/ness_images/

(Note: use secure URLs, otherwise your app will not load the data or images).

• Thumbnail (i.e. small) versions of the images will be available shortly from the following base URL:

https://cgi.csc.liv.ac.uk/~phil/Teaching/COMP228/ness_thumbnails/

• Some of the plant records have multiple images. You should deal with displaying these in a sensible fashion.

• The plant record is only valid if the accsta field has the value ‘C’. If it has any other value, that plant should

be ignored (such plants may have originally been present, but subsequently died, or been removed)

• A single plant record in the database, might reference a plant in multiple beds (some plants may be split or

propagated and grown as several different instances in different locations). You will need to take the bed

attribute and split it into an array of beds (split it based on whitespace - see hint at the end).

Your application is required to have the following basic features (worth 55%):

1. The user is initially presented with a map displaying a satellite view, centred on their current location and

at a reasonable level of zoom so that features can be seen clearly. (A user location based in Ness

Gardens is available for you to use in the simulator. A further gpx location file which simulates the user

going on a “walk” around part of the gardens is planned to be made available shortly.) (worth 15%)

Draft

2. A table below the map contains plant data, grouped by bed (each of which should be implemented as a

different table section) and ordered by distance from the user’s current location (which can, of course,

change as the app runs). The location file featuring a “walk” around the gardens can be used to test this

feature. Each cell should contain a thumbnail image of the plant (if available) and some textual details

(e.g.genus, species, infraspecific epithet, vernacular name and cultivar name). (worth 15%)

3. Tapping on a cell, displays an image (or images) where these exist in the database and other relevant

information about a specific plant (you might wish to use a TextView for this purpose). Plant records that

include a valid latitude and longitude of the original plant origin, should include a map showing this.

Don’t show the map for a plant that is missing this information. (worth 15%)

4. The App must feel like a good mobile application - no unnecessary transitions, popups or alerts etc.

Layout of the interface elements and navigation within the app must be appropriate and aesthetically

correct. (worth 10%)

The remaining 45% of the marks may be obtained by implementing useful features such as:

1. The user can, from time to time, mark as “favourite”, a plant that they really like (or unfavourite one). This

should be displayed in the relevant table cell by displaying some kind of symbol against that cell. The list

of favourites should be saved into persistent storage so that it is retrieved every time the app is run.

(worth 5%)

2. Caching the plant and other information (including your choice of favourite plants) in Core Data. This

would effectively allow the app to run if there was no network connection. Please note: You do not need

to cache the plant images. (worth 10%)

3. Your code should be reasonably well-written. Functions should be used where it helps improve clarity

and reduces repetitive code. Data structures should be appropriate and effective. (worth 10%)

4. Ensure that your code is appropriately commented and that meaningful class, variable and constant

names are used. (worth 10%)

5. Your project should include a Git archive, featuring commits that you have made during the whole period

of the development process. (worth 10%)

If you use any additional images or other materials, ensure that these are copied into the project – not just

referenced somewhere else in your filestore. The zipped folder that you submit should include everything

required to compile and run your App. You can test this by copying the folder to another Mac (with the same

version of Xcode) and trying to run your project on that.

Important - Please note:

This is real plant data, typed into the database by volunteers and so may contain errors (e.g. the bed field might

contain references to non-existent beds). You should handle such data gracefully (e.g. if a bed referred to in a

plant record, does not exist, then the plant shouldn’t be displayed in the table, since that is organised by valid

bed names - each of which have a recorded location).

Do not use any third-party frameworks in your App (e.g. Alamofire). Use Apple standard frameworks ONLY (i.e.

only frameworks provided with Xcode 15). Use of third-party frameworks will involve a penalty of 25%.

The App must be written using UIKit and Storyboard. Submissions written using SwiftUI will involve a penalty of

25%.

What to Submit

Your completed project (which includes the Git repository, stored automatically in an invisible folder in the project

folder) should be zipped up and submitted via the online submission system:

https://sam.csc.liv.ac.uk/COMP/CW_Submissions.pl

Draft

(In the Finder, right click the icon for the folder containing the project file and folder and choose “Compress”)

Also submit a short PDF document (maximum of **2 sides of A4) which describes how to use your app and any

notable features or limitations.

Deadline for submission: Monday December 11th at 5pm

Reminder: This is the second of two assignments, each of which is worth 15% of the total mark for COMP228.

Your second part of the portfolio of lab work will be worth another 6%.

Draft

Hints:

Explore the API URLs on a web browser, copy the JSON data into a pretty printer program - such as https://

jsonformatter.org/json-pretty-print. This will show you the structure of the JSON data that you will need to

convert into Swift Codable classes (see

Carefully look at the JSON structure - this will give you information about the Swift structs that you’ll need to

create to hold the decoded JSON data. Remember that you’ll need an array of these (similar to the week 9

research papers lab exercise).

To use the gpx fie of a walk around Ness Gardens, you’ll need to refer to the guidance document “Obtaining the

user’s location” which will be published on the canvas site shortly.

Since each plant record’s bed field may contain a reference to multiple beds, you’ll need to take that bed string

and split it into an array of items. Here’s an example:

//This fixed string would actually be data from the plant record

let beds = "PW1 PW2 PW3 PW4"

let bedArray = beds.components(separatedBy: .whitespaces)

//bedArray is now an array of individual bed Strings

Ness Gardens map, showing the location of plant beds Draft

Important Tables:

plants Individual plant records

images References an individual jpeg image of a plant

beds Short and full-name and location of a plant bed

The plants table contains the following fields:

recnum record number (integer)

acid accession ID - plant instance String

accsta accession status - “C” means a plant that is still alive

family family name

genus genus name

species species name

infraspecific_epithet optional part of the species name of a plant

vernacular_name common name for the plant

cultivar_name name for a plant variation produced by selective breeding

donor name of the donor who supplied the plant

latitude latitude of origin

longitude longitude of origin

country full name of country of origin

iso ISO 2-letter code for country of origin

sgu specific geographical unit in country of origin

loc locality in country of origin

alt altitude of plant origin location

cnam Primary collector’s name

cid Collector’s identifier

cdat Collection date

bed Bed(s) in Ness gardens where plant is located

memoriam Plant is sponsored in memory of a deceased person

redlist Plant is endangered

last_modified Date and time of last change to this plant record Draft

請(qǐng)加QQ:99515681 或郵箱:99515681@qq.com   WX:codehelp

掃一掃在手機(jī)打開(kāi)當(dāng)前頁(yè)
  • 上一篇:COMP2005J代寫、代做Python,Java程序設(shè)計(jì)
  • 下一篇:代做COM661、代寫 Stack Strategies編程
  • 無(wú)相關(guān)信息
    合肥生活資訊

    合肥圖文信息
    流體仿真外包多少錢_專業(yè)CFD分析代做_友商科技CAE仿真
    流體仿真外包多少錢_專業(yè)CFD分析代做_友商科
    CAE仿真分析代做公司 CFD流體仿真服務(wù) 管路流場(chǎng)仿真外包
    CAE仿真分析代做公司 CFD流體仿真服務(wù) 管路
    流體CFD仿真分析_代做咨詢服務(wù)_Fluent 仿真技術(shù)服務(wù)
    流體CFD仿真分析_代做咨詢服務(wù)_Fluent 仿真
    結(jié)構(gòu)仿真分析服務(wù)_CAE代做咨詢外包_剛強(qiáng)度疲勞振動(dòng)
    結(jié)構(gòu)仿真分析服務(wù)_CAE代做咨詢外包_剛強(qiáng)度疲
    流體cfd仿真分析服務(wù) 7類仿真分析代做服務(wù)40個(gè)行業(yè)
    流體cfd仿真分析服務(wù) 7類仿真分析代做服務(wù)4
    超全面的拼多多電商運(yùn)營(yíng)技巧,多多開(kāi)團(tuán)助手,多多出評(píng)軟件徽y1698861
    超全面的拼多多電商運(yùn)營(yíng)技巧,多多開(kāi)團(tuán)助手
    CAE有限元仿真分析團(tuán)隊(duì),2026仿真代做咨詢服務(wù)平臺(tái)
    CAE有限元仿真分析團(tuán)隊(duì),2026仿真代做咨詢服
    釘釘簽到打卡位置修改神器,2026怎么修改定位在范圍內(nèi)
    釘釘簽到打卡位置修改神器,2026怎么修改定
  • 短信驗(yàn)證碼 豆包網(wǎng)頁(yè)版入口 破天一劍 目錄網(wǎng) 排行網(wǎng)

    關(guān)于我們 | 打賞支持 | 廣告服務(wù) | 聯(lián)系我們 | 網(wǎng)站地圖 | 免責(zé)聲明 | 幫助中心 | 友情鏈接 |

    Copyright © 2025 hfw.cc Inc. All Rights Reserved. 合肥網(wǎng) 版權(quán)所有
    ICP備06013414號(hào)-3 公安備 42010502001045

    国产人妻人伦精品_欧美一区二区三区图_亚洲欧洲久久_日韩美女av在线免费观看
    国产精品10p综合二区| 国产精品永久免费视频| 欧美一区激情视频在线观看| 国产热re99久久6国产精品| 国产激情一区二区三区在线观看 | 日本精品一区二区三区四区 | 黄色一级片在线看| 成人国产精品色哟哟| 日韩在线观看网址| 亚洲淫片在线视频| 免费看黄色a级片| 国产成人精品国内自产拍免费看| 欧美理论片在线观看| 日本三级久久久| 99精品一级欧美片免费播放| 久久成人免费视频| 欧美两根一起进3p做受视频| 久久人人九九| 一区二区不卡在线| 国内揄拍国内精品少妇国语| 91美女福利视频高清| 九色精品免费永久在线| 欧美国产视频在线观看| 国产成+人+综合+亚洲欧美丁香花| 中文字幕在线观看一区二区三区| 国内精品400部情侣激情| 色777狠狠综合秋免鲁丝| 岛国视频一区| 91精品国产成人| 欧美人交a欧美精品| 国产在线视频在线| 国产精品欧美激情在线播放| 欧美图片激情小说| 久久久久久有精品国产| 日本一区视频在线观看| 99视频免费播放| 一区二区在线观看网站| 国产精品一区电影| 欧美激情乱人伦| 国产伦精品一区| 伊人久久av导航| 不卡日韩av| 亚洲五月六月| 国产主播喷水一区二区| 国产精品国产对白熟妇| 精品一区日韩成人| 精品国产乱码久久久久久108| 国产青青在线视频| 在线免费观看一区二区三区| 91久久久久久久久久| 国产精品国产三级国产aⅴ浪潮| 欧美日韩在线不卡视频| 久久精品电影一区二区| 亚洲高清乱码| 成人一区二区av| 亚洲一区在线直播| 91精品国产91久久久| 日本欧洲国产一区二区| 国产v亚洲v天堂无码| 青青草原一区二区| 国产精品免费在线| 国产在线视频91| 一区二区三区四区视频在线观看| 91麻豆国产精品| 日本免费在线精品| 日韩中文字幕在线精品| 欧美精品一区三区在线观看| 国产精品电影一区| www.男人天堂网| 日本高清不卡三区| 中文字幕av导航| 精品久久中出| 国产av无码专区亚洲精品| 欧美精品在线观看91| xvideos亚洲| 欧美精品一区二区三区在线四季| 国产精品国产三级国产aⅴ浪潮 | 国产精品久久精品国产| 国产日韩在线观看av| 97精品久久久中文字幕免费| 欧美在线不卡区| 国产亚洲精品自在久久 | 欧美在线一区二区三区四区| 国产精品三级久久久久久电影| 国产日产久久高清欧美一区| 精品产品国产在线不卡| 久久综合九九| 激情成人开心网| 亚洲va欧美va在线观看| 久久综合九色综合网站| 加勒比海盗1在线观看免费国语版 加勒比在线一区二区三区观看 | 精品免费日产一区一区三区免费| 97精品国产91久久久久久| 日韩欧美国产综合在线| 精品乱子伦一区二区三区| 9191国产视频| 国产中文字幕日韩| 日本一区不卡| 一区二区日本伦理| 国产精品网站大全| 91福利视频在线观看| 欧美日韩国产不卡在线看| 欧美激情视频一区二区| 久久这里只有精品8| 欧美xxxx黑人又粗又长精品| 亚洲欧美精品在线观看| 久久久久久国产精品美女| 国产精品美女诱惑| 狠狠精品干练久久久无码中文字幕| 国产精品视频久久久久| 91精品久久久久久久久久久久久久 | 久久精品日产第一区二区三区精品版 | 国产精品高潮视频| 97久久精品人人澡人人爽缅北| 欧美日韩精品久久| 亚洲精品偷拍视频| 国产精品久久久久久久app| 国内精品久久久久伊人av| 亚洲巨乳在线观看| 国产精品久久久久久网站| 久久国产精品免费一区| 国产欧美在线一区| 欧美一级二级三级九九九| 一本久道久久综合狠狠爱亚洲精品| 日韩有码在线视频| 91高清免费视频| 成人免费观看cn| 欧美日韩高清在线一区| 日韩亚洲在线视频| 午夜精品久久久久久99热| 中国成人亚色综合网站| 精品免费国产| 久久久99国产精品免费| 欧美日韩三区四区| 久久6精品影院| 久久久精品欧美| 国产v亚洲v天堂无码久久久 | 欧美亚洲黄色片| 日本精品一区二区三区四区| 一区二区国产日产| 欧美激情乱人伦一区| 国产精品久久久久久网站| 久久久久一区二区| 欧洲熟妇精品视频| 亚洲熟女乱色一区二区三区 | 久久久精品有限公司| 欧美动漫一区二区| 国产h视频在线播放| 国产噜噜噜噜久久久久久久久| 蜜桃视频成人| 国产视频不卡| 国产亚洲一区二区三区在线播放| 欧美中文字幕第一页| 日韩暖暖在线视频| 日本电影亚洲天堂| 日韩精品免费一区| 日韩欧美精品在线不卡| 日韩欧美一区二区三区四区| 亚洲综合色av| 日韩尤物视频 | 国产情人节一区| 国产日产欧美a一级在线| 国产精品一区二区三区在线播放 | 日韩中文字幕二区| 日本精品免费视频| 欧美在线免费视频| 欧美h视频在线观看| 精品一区二区三区自拍图片区| 国产一区精品视频| 97碰碰碰免费色视频| 国产不卡视频在线| 国产精品三级网站| 精品久久久久久综合日本| 一区二区三区久久网| 亚洲一区二区三区视频播放 | 高清欧美精品xxxxx| 久久久亚洲国产天美传媒修理工| 久久草视频在线看| 国产精品久久综合av爱欲tv| 国产精品成人v| 日韩国产欧美精品| 精品视频一区二区在线| 99久热在线精品视频| 视频在线一区二区| 精品国产乱码久久久久软件 | 亚洲欧洲免费无码| 日本91av在线播放| 蜜桃av噜噜一区二区三区| 68精品国产免费久久久久久婷婷| 久久国产成人精品国产成人亚洲| 国产精品视频在线免费观看| 欧美激情区在线播放| 日韩不卡av| 国产区一区二区| 99久久久久国产精品免费| 国产精品免费小视频| 懂色一区二区三区av片| 日韩激情视频一区二区| 国产欧美在线一区二区| 国产成人亚洲欧美|