Files
actions/geojson2csv
Stefan Mandaric ba06537e88 Add readme
2019-07-01 12:37:47 +02:00
..
2019-07-01 11:26:17 +02:00
2019-06-26 12:14:14 +02:00
2019-07-01 12:37:47 +02:00

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"
}