Skip to content

Jeremy-D/Santa-Monica-Parking-Map

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

26 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Santa Monica GIS Data Visualization

This project started out as a way to make parking easier for our clients. It is turning into a library to visualize open data from Santa Monica GIS Data Portal. The library uses fetch to get the data as a JSON object, then parses the data to work with the Google Maps API.

Example use case

Green Map A portion of the map is selected from the API endpoint and drawn on the map.

No Parking Mondays Map An attribute can be selected and overlayed onto the map.

No Parking Mondays 11-1 Attribute data can be combined to get more specific visualizations.

(note: you will need to use your own google maps API key to run the application

the API key will go in the index.html file

  <script async defer src="https://maps.googleapis.com/maps/api/js?key=YOUR_API_KEY&callback=initMap"
  type="text/javascript"></script>
  • for more information on how to set up a google maps project see this link )

drawParkingPath(GIS data [object], color [string], filter attribute [string])

  • sorts the data based on 1 feature attribute,
  • parses the lat lng data into google maps friendly format
  • draws the polylines on the map & stores the data to erase the paths

setFilterAttributes(attributes [array])

  • states what attributes you would like to sort by (ex DAY, TIME etc)

  • creates an object from an array to be passed as filterAttributes to the filterDataSet() function

  • when the object is created the values for keys are empty strings the object keys are updated with the updateFilterAttributes() function

updateFilterAttributes(attributesObj[object], attribute[string], value [string])

  • takes an object{},
  • takes an attribute as a string, convention with this dataset seems to be a string in all caps for attribute names
  • takes a value, currently string but could possibly be something else for other datasets, use this.value for the implemented dropdown

showFieldAliasOptions() allows the developer to see the combination of field

aliases that can be used in the filterDataSet() function a simple example is seeing all of the options for DAY and TIME but other insights can be gained by comparing various field aliases from the database

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published