Sale!

CSCI 585 HW3 Geospatial data handling solved

Original price was: $30.00.Current price is: $25.00. $21.25

Category:

Description

5/5 - (1 vote)

In this homework, you are going to work with spatial data – you will collect/create (generate/sample) your own spatial data,
visualize it, do queries on it, and visualize the query results.. Hope you have fun with this!

Geospatial data handling is a
The exercise will give you a taste of working with spatial data, use of a spatial file format and spatial query functions, all of which
are quite useful from a real-world (or job interview) perspective.

What you need to do is described below in sufficient, but not too much, detail – you’d need to do a bit of reading up and
experimenting, to fill in the gaps. Please post on Piazza, or talk to a TA/CP, or me, if you are unable to proceed at any point!
1. You need to create (generate) longitude,latitude pairs (ie. spatial coordinates) for 12 locations on the USC campus, in addition
to where your home/apartment/dorm room is.

The 12, other than your home, would have to be spread out – use your judgment, try to span the campus area, choose locations
inside or outside, nearby – we don’t want to cover a ‘huge’ region, or at the other extreme, have the points be ‘too close’.
The 12 points do need to be as follows:two depts, from six schools. We have a lot of schools you can choose from –
๐Ÿ™‚

If you are not on campus (if you are a DEN student, live abroad/away from campus), feel free to substitute places around where
you live, for the 12 points other than your residence or work (again, make sure they are not too close to each other or too far
apart). You can pick six categories (eg. park, bike rack, coffee shop, museum, restaurant…), and get two locations for each.
How would you obtain (lat,long) spatial coordinates at a location?

By walking around!! Please do NOT click on
to acquire your data! You need to submit a selfie of you [if you don’t want to show your full face,
that’s ok, include just a part :)] at each location, to show that you were there. Bring up page on your phone, it will display your
location – write it down/type it up, along with the location’s name; to get (long,lat), you can also your phone’s compass, or a
downloaded app.

Make a simple (text/on paper) table of your long,lat locations and their names, 13 entries total, as a starting point for the analysis
and viz you will be doing with them.
2. Now that you have 13 coordinates and their label strings (ie. text descriptions such as “CS Dept”,”BME”), you are going to
create a KML file (.kml format, which is XML) out of them using a text editor. Specifically, each location will be a ‘placemark’ in
your .kml file (with a label, and coords). is more detail. The .kml file with the 13 placemarks is going to be your starter file, for
doing visualizations and queries. is a .kml skeleton to get you started (just download, rename and edit it to put in your
coords and labels). NOTE – keep your labels to be 15 characters or less (including spaces). is the same .kml skeleton in .txt
valuable
skill!

https://admission.usc.edu/schools/
https://www.google.com/maps
this
Here
Here
Here

format, if you’d like to RMB save it instead and rename the file extension from .txt to .xml. NOTE too that in .kml, you specify
(long,lat), instead of the expected (lat,long) [after all, longtitude is what corresponds to ‘x’, and latitude, to ‘y’]! Also, place your 12
coords (not your home one) in KML ‘folders’.
You are going to use Google Earth to visualize the data in your KML file (see #3 below). FYI, as a quick check, you can also
visualize it using page – simply copy and paste your KML data into the textbox on the left, and click ‘Show it on the map’ to
have it be displayed on a map on the right ๐Ÿ™‚ Or you can do a quick check at instead.

3. on your laptop, install it, bring it up. Load your .kml file into it – that should show you your sampled
locations, on Google Earth’s globe ๐Ÿ™‚ Take a snapshot (screengrab) of this, for submitting.
4. Install Oracle 11g+Oracle Spatial, or Postgres+PostGIS on your laptop, and browse the docs for the spatial functions and
search for basic tutorials (eg. is a good one).
Windows users: please Postgres v.13.3 from , then PostGIS v.3.1.2 after starting Postgres’ Stack Builder UI. Mac users can do
After you install Postgres+PostGIS, is how you can create a DB, create a table, insert data, query it.

OR, you don’t need to install your own copy of Postgres/PostGIS ๐Ÿ™‚ DO feel free to do the queries this way!
5. You will use the spatial db software to execute the following two spatial queries that you’ll write:
โ€ข compute the convex hull for your 13 points [a for a set of 2D points is the smallest convex polygon that contains the point set]. If
you use Oracle, see page; if you decide to use Postgres, read and instead. Use the query’s result polygon’s coords, to create a
polygon in your .kml file (edit the .kml file, add relevant XML to specify the KML polygon’s coords).

Load this into Google Earth, visually verify
that all your points are on/inside the convex hull, then take a screenshot. Note that even your data points happen to have a concave perimeter
and/or happen to be self-intersecting, the convex hull, by definition, would be a tight, enclosing boundary (hull) that is a simple convex polygon.
The convex hull is a very useful object – eg. see discussion.. Note: be sure to specify your polygon’s coords as ‘…-118,34 -118,34.1…’ for
example, and not ‘…-118, 34 -118, 34.1…’ [in other words, do not separate long,lat with a space after the comma, ie it can’t be long, lat].

โ€ข compute the four nearest neighbors of your home/apt/dormroom location [look up the spatial function of your DB, to do this]. Use the query’s
results, to create four line segments in your .kml file: line(home,neighbor1), line(home,neighbor2), line(home,neighbor3), line(home,neighbor4).
Verify this looks correct, using Google Earth, take a snapshot.
Note – it *is* OK to hardcode points, in the above queries! Or, you can create and use a table to store your 13 points in it, then
write queries against the table.

6. Use OpenLayers (a JavaScript API) to visualize your location data. The idea is to store your 13 sampled points, via your web
browser, in a browser cache area in your local machine, where the data would persist [even after you close the browser]; then
you’d read back the stored values, and visualize them, using the OpenLayers API. To store and load points, you’ll use ‘HTML5
localStorage’, which is a key-value based standard WWW
The API calls are in JavaScript, which you would run via an html page, like so:

If you create an html file [OL.html] and run it (in Chrome, preferably), you’d see this (in Chrome, to see the console, use the threedots dropdown menu on the top right: More tools -> Developer tools) :
this
http://kmlviewer.nsspot.net/
Download Google Earth
this
install here install
this instead.
here
at all
convex hull
this this this
this
API.

Now you’re ready to store, retrieve, and plot your points!
The code in this starter is to show you, roughly, how to do it; you’d need to do it ‘for real’ by modifying it ๐Ÿ™‚ EVEN IF you
don’t know JS or coding, don’t worry – it’s easy, and fun, to figure it out! In other words, start with the OL.html I’m giving you,
mildly EDIT it to ADD IN your sampled locations, submit that [note: you do NOT have to do extensive JavaScript coding at all!].
The OL.html code is also if you want to play with it; a ‘v2’ version is
If you like, you can do the location visualization, using CodePen [ ] or jsfiddle [ ], and just
submit a URL of your code – the grader would simply copy and paste your URL into their browser, and be able to see your code
and the result. If you do this, submit a README file with your link, instead of submitting OL.html.

7. Using Tommy Trojan as the center, compute (don’t/can’t use GPS!) a set (sequence) of lat-long (ie. spatial) co-ordinates that lie
along a pretty ๐Ÿ™‚
If you are on campus, you can go visit TT to get his (long,lat); otherwise, please long-press (for just under a second) on him in
, that will make his coords pop up in a little box.
Create a new KML file with Spirograph curve points [see below], convert the KML to an ESRI ‘shapefile’, visualize the shapefile
data using ArcGIS Online.

To convert your .kml into a shapefile, use this online converter: – the result will be
a .zip [which is what we call ‘shapefile’], which will contain within it, shape data (.shp), a relational table (.dbf), and other optional
files (.shx, .prj, .cpg). is a page on shapefiles, and talks about the various components (.shp, .dbf etc) of a shapefile.
Once you have your shapefile, you can upload it to ArcGIS’ online map creator to view your Spirograph curve-shaped points. To
do so, log on to ArcGIS [after creating a free ‘public’ account], at , then use the ‘Map’ tab –
. Do ‘Add -> Add Layer from File’, and upload your shapefile

.zip, you should see your data overlaid on a map. is a screenshot of roughly what to expect.
What if your shapefile is too large, and you get a ‘Dataset too large’ error while using ArcGIS?In that case, you can import your
shapefile into instead, and create a screenshot (this site will handle large shapefiles).
For the Spirograph curve point creation, use the following parametric equations (with R=6, r=1, a=8):
x(t) = (R+r)*cos((r/R)*t) – a*cos((1+r/R)*t)
y(t) = (R+r)*sin((r/R)*t) – a*sin((1+r/R)*t)
OL.html
here here.

https://codepen.io/ https://jsfiddle.net/
Spirographโ„ข curve
https://www.google.com/maps
https://mygeodata.cloud/converter/kml-to-shp
Here this
https://www.arcgis.com/
https://www.arcgis.com/home/webmap/viewer.html?useExisting=1
Here
https://maps.equatorstudios.com/

Using the above equations, loop through t from 0.00 to n*Pi (eg. 2*Pi; note that ‘n’ might need to be more than 2, for the curve to
close on itself; and, t is in radians, not degrees), in steps of 0.01. That will give you the sequence of (x,y) points that make up the
Spiro curve, which would/should look like the curve in the screengrab below, when R=6, r=1, a=8:
Note – your figure MUST resemble the above, ie. it MUST have 6 loops – so please do not change R, r or a!

In order to center the Spirograph at a given location [TT or other], you need to ADD each (x,y) curve point to the (lat,long) of the
centering location – that will give you valid Spiro-based spatial coords for use in your .kml file [note that it means, in actuality,
you’re adding your location’s (long,lat) to the computed curve’s (y,x)]. You can use any coding language you want, to generate (and
visualize) the curve’s coords: JavaScript, C/C++, Java, Python, , MATLAB, Scala, Haskell, Ruby, R.. You can also use Excel, SAS,
SPSS, JMP etc., for computing [and plotting, if you want to check the results visually] the Spirograph curve points. can help
you a lot ๐Ÿ™‚

Payoff – when you do this in KML, what you’ll see is the Spirograph curve superposed on the land imagery – pretty!
PS: is MUCH more on Spirograph (hypocycloid and epicycloid) curves if you are curious. Also, for fun, try changing any of R,
r, a in the code for the equations above [you don’t need to submit the results]!
Here is what you need to submit(as a single .zip file):
* 13 selfies, from step 1 above [if you don’t submit these, you will LOSE 2 points!]
* your .kml file from step 5 above – with the placemarks, convex hull and nearest-neighbor line segments (1 point)
* a text file (.txt or .sql) with your two queries from step 5 – table creation commands (if you use Postgres and directly specify points in your
queries, you won’t have table creation commands, in which case you wouldn’t need to worry about this part), and the queries themselves (2
points)
* screengrabs from steps 3,5 (1 point)
* a .html file (with the OpenLayers code) from step 6, or a CodePen/jsfiddle link (1 point)
* your Spirograph point generation code, the resulting .kml file (“spiro.kml”), shapefile (this needs to be a .zip) and a screenshot (1 point)
HAVE FUN! From here on out, you know how to create custom overlays (via KML files containing vector symbols constructed
from points, lines and polygons, and its shapefile equivalent) on a map, and perform spatial queries on the underlying data.

This
can even be the basis for ๐Ÿ™‚
SQL
This
Here
a career