Skip to content

Latest commit

 

History

History
33 lines (21 loc) · 1.42 KB

README.md

File metadata and controls

33 lines (21 loc) · 1.42 KB

Build Status Coverage Status Greenkeeper badge

geojson2dsv

The reverse of csv2geojson: shuttle GeoJSON points into CSV encoding.

API

geojson2dsv

Given a valid GeoJSON object, return a CSV composed of all decodable points.

Parameters

  • geojson Object any GeoJSON object
  • delim string CSV or DSV delimiter: by default, ","
  • mixedGeometry boolean? serialize just the properties of non-Point features. (optional, default false)

Examples

var csvString = geojson2dsv(geojsonObject)

see also

  • geojson2csv also does this, but has file-assumptions and does dsv encoding in-house instead of farming it out to mbostock/dsv