Files
actions/geojson2csv/README.md
Stefan Mandaric ba06537e88 Add readme
2019-07-01 12:37:47 +02:00

426 B

geojson2csv

Github Action for tansforming geojson FeatureCollections to CSVs with WKT geometry.

Usage

Example Workflow file

An example workflow to transform a geojson in the repository

workflow "Deploy geometries" {
  on = "deployment"
  resolves = "Transform to csv"
}

action "Transform to csv" {
  uses = "unacast/actions/geojson2csv@master"
  runs = "geojson2csv"
  args = "input.geojson output.csv"
}