From 06e37088c13c9265fd8dc919cd12191ad3ffa744 Mon Sep 17 00:00:00 2001 From: Mark van der Wal Date: Thu, 29 Apr 2021 06:32:31 +0000 Subject: [PATCH] Add 'Shape-to-geotiff.md' --- Shape-to-geotiff.md | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 Shape-to-geotiff.md diff --git a/Shape-to-geotiff.md b/Shape-to-geotiff.md new file mode 100644 index 0000000..562f26f --- /dev/null +++ b/Shape-to-geotiff.md @@ -0,0 +1,25 @@ +The VRAHerbicide task only processes tiff items as input. +If your input data is a processed shape file it first needs to be converted to geotiff, this can be done with the 'ShapeToGeoTiffTask'. + +Pass the code of the shape item into the {code} parameter, this creates a new item with tiff data as a sibling of the shape item with the same parent +This new geotiff item should be used as input to the a task. + +> Request +```javascript +POST /api/v1/items/{code}/tasks +{ + "taskType": "vnd.farmmaps.task.shapetogeotiff" +} +``` +> Response 201 +```javascript +{ + "code": "string", + "taskType": "vnd.farmmaps.task.shapetogeotiff" +} +``` + +Response 400 Tasktype not found +Response 401 Not authenticated +Response 403 No WRITE permissions in item +Response 404 Item not found \ No newline at end of file