San Diego City IQ Assets and Locations

All assets types extracted form the San Diego City Iq system

cityiq.io-objects-san_diego-5. Modified 2020-04-12T16:44:03

Resources | Packages | Documentation| Contacts| References| Data Dictionary

Resources

Documentation

These datafile are extracts of the assets and locations from the San Diego CityIQ system. Refer to the CityIQ developer documentation for details about these data records. The data are extracted using the cityiq Python package. See the ExtractAssets.ipynb notebook for the extract process.

Versions

  1. Development version
  2. Development version
  3. First release
  4. Added tract and community names
  5. Rebuild with recent data, and broke out asset and location types

Contacts

Packages

Accessing Packages in Metapack

import metapack as mp
pkg = mp.open_package('http://library.metatab.org/cityiq.io-objects-san_diego-5.zip')

# Create Dataframes
assets_gdf = pkg.resource('assets').geoframe()
locations_gdf = pkg.resource('locations').geoframe()
walkways_gdf = pkg.resource('walkways').geoframe()
traffic_lanes_gdf = pkg.resource('traffic_lanes').geoframe()
parking_zones_gdf = pkg.resource('parking_zones').geoframe()
cameras_gdf = pkg.resource('cameras').geoframe()
mics_gdf = pkg.resource('mics').geoframe()
nodes_gdf = pkg.resource('nodes').geoframe()
em_sensors_gdf = pkg.resource('em_sensors').geoframe()
env_sensors_gdf = pkg.resource('env_sensors').geoframe()

Data Dictionary

assets | locations

assets

Column NameData TypeDescription
assetuidstring
assettypestring
parentassetuidstring
mediatypestring
eventsstringWhat events the asset generates
community_namestringName of San Diego planning community where asset is located
tract_geoidstringGeoid of the tract where the asset is located
roadsegidintegerSANDAG road segment id. Links to the SANDAG roads data
speedintegerSpeed limit on the road segment
onewaystringIs the road segment one way?
abloaddrintegerAbsolute lowest address on road segment
abhiaddrintegerAbsolute highest address on road segment
rd30fullstringFull street name
geometrystringWKT Geometry of parking zone

locations

Column NameData TypeDescription
locationuidstring
locationtypestring
parentlocationuidstring
community_namestringName of San Diego planning community where location is located
tract_geoidstringGeoid of the tract where the location is located
roadsegidintegerSANDAG road segment id. Links to the SANDAG roads data
speedintegerSpeed limit on the road segment
onewaystringIs the road segment one way?
abloaddrintegerAbsolute lowest address on road segment
abhiaddrintegerAbsolute highest address on road segment
rd30fullstringFull street name
geometrystring

References

Urls used in the creation of this data package.

  • metapack+http://library.metatab.org/sangis.org-roads-sandiego-1.zip#all_roads. Roads in San Diego
  • metapack+http://library.metatab.org/sandiegodata.org-geography-2018.csv#tract_boundaries. San Diego tracts and communities
  • metapack+http://library.metatab.org/sandiegodata.org-geography-2018.csv#sd_community_boundaries. San Diego tracts and communities

Packages

Accessing Packages in Metapack

import metapack as mp
pkg = mp.open_package('http://library.metatab.org/cityiq.io-objects-san_diego-5.zip')

# Create Dataframes
assets_gdf = pkg.resource('assets').geoframe()
locations_gdf = pkg.resource('locations').geoframe()
walkways_gdf = pkg.resource('walkways').geoframe()
traffic_lanes_gdf = pkg.resource('traffic_lanes').geoframe()
parking_zones_gdf = pkg.resource('parking_zones').geoframe()
cameras_gdf = pkg.resource('cameras').geoframe()
mics_gdf = pkg.resource('mics').geoframe()
nodes_gdf = pkg.resource('nodes').geoframe()
em_sensors_gdf = pkg.resource('em_sensors').geoframe()
env_sensors_gdf = pkg.resource('env_sensors').geoframe()