Add readme

This commit is contained in:
Stefan Mandaric
2019-07-01 12:37:47 +02:00
parent 7b8efe99c8
commit ba06537e88

21
geojson2csv/README.md Normal file
View File

@@ -0,0 +1,21 @@
# 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"
}
```