data file formats
@
maptime detroit
by Jimmy McBroom -- March 31, 2015

Esri shapefiles are super common

Your "shapefile" needs four files:

Esri geodatabases (.gdb)

are not so common

GeoJSON

is more and more popular

sample GeoJSON file w/ one feature

        {
          "type": "Feature",
          "geometry": {
            "type": "Point",
            "coordinates": [125.6, 10.1]
          },
          "properties": {
            "name": "Dinagat Islands"
          }
        }
      

GeoJSON is good for:

TopoJSON

KML & KMZ
(Keyhole Markup Language)

GPX
(GPS Exchange Format)

CSV & TSV
(comma- and tab- separated values)

check out the website:

maptimedet.github.io