geojson_to_csv
Convert GeoJSON files to CSV format for easy data analysis and storage, preserving all feature properties or customizing the output.
Instructions
Convert GeoJSON to CSV format
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| geojson | Yes | GeoJSON object to convert | |
| includeAllProperties | No | Include all feature properties in the CSV | 
Input Schema (JSON Schema)
{
  "properties": {
    "geojson": {
      "description": "GeoJSON object to convert",
      "type": "object"
    },
    "includeAllProperties": {
      "default": true,
      "description": "Include all feature properties in the CSV",
      "type": "boolean"
    }
  },
  "required": [
    "geojson"
  ],
  "type": "object"
}