The reverse of csv2geojson: shuttle GeoJSON points into CSV encoding.
Given a valid GeoJSON object, return a CSV composed of all decodable points.
Parameters
geojson
Object any GeoJSON objectdelim
string CSV or DSV delimiter: by default, ","mixedGeometry
boolean? serialize just the properties of non-Point features. (optional, defaultfalse
)
Examples
var csvString = geojson2dsv(geojsonObject)
- geojson2csv also does this, but has file-assumptions and does dsv encoding in-house instead of farming it out to mbostock/dsv