Esri shapefiles are super common
Your "shapefile" needs four files:
Esri geodatabases (.gdb)
are not so commonGeoJSON
is more and more popularsample 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