2021-02-10 19:15:23 +00:00
|
|
|
## Create taskmap
|
|
|
|
The user can use the "ItemTask" API to execute the TaskmapTask with the cropfield item code in {code}.
|
|
|
|
{itemCode} should contain the item with tiff data.
|
|
|
|
|
2021-02-10 19:15:31 +00:00
|
|
|
**~! REMEMBER, creating a taskmap with a high resolution < 1 can take a considerable time (from minutes up to hours). !~**
|
2021-02-10 19:15:23 +00:00
|
|
|
**~! It helps to lower the precision to say 1 or 0 if a high resolution is needed. !~**
|
|
|
|
|
|
|
|
> Request
|
|
|
|
```javascript
|
|
|
|
POST /api/v1/items/{code}/tasks
|
|
|
|
{
|
2021-02-10 20:29:52 +00:00
|
|
|
"taskType": "vnd.farmmaps.task.taskmap",
|
|
|
|
"attributes": {
|
2021-02-10 19:15:23 +00:00
|
|
|
"inputCode" "{itemCode}"
|
|
|
|
"operation": "shape", // currently only "shape" supported
|
|
|
|
"cellWidth": "10", // in metres
|
|
|
|
"cellHeight": "5", // in metres
|
|
|
|
"startPoint": "{
|
|
|
|
\"type\": \"Point\",
|
|
|
|
\"coordinates\": [6.014414493084948, 53.08996024180022]
|
|
|
|
}",
|
|
|
|
"endPoint": "{
|
|
|
|
\"type\": \"Point\",
|
|
|
|
\"coordinates\": [6.014997043859679, 53.090253715796308]
|
|
|
|
}"
|
|
|
|
}
|
|
|
|
}
|
2021-02-10 20:29:52 +00:00
|
|
|
```
|
2021-02-10 19:15:23 +00:00
|
|
|
* geojson is expected in WGS84, 4326 projection.
|
|
|
|
* endPoint is optional but angle or endPoint is needed!
|
|
|
|
|
2021-02-10 20:29:52 +00:00
|
|
|
> Response 201
|
|
|
|
```javascript
|
|
|
|
{
|
|
|
|
"code": "string",
|
|
|
|
"taskType": "vnd.farmmaps.task.taskmap"
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
|
2021-02-10 19:15:23 +00:00
|
|
|
Response 400 Tasktype not found
|
|
|
|
Response 401 Not authenticated
|
|
|
|
Response 403 No WRITE permissions in item
|
|
|
|
Response 404 Item not found
|
|
|
|
|
|
|
|
This will create the item with shape data as a sibling of the input item.
|
|
|
|
|
|
|
|
##### Optional input parameters #####
|
|
|
|
There are some optional task attribute input parameters for greater flexibility.
|
|
|
|
|
|
|
|
* **inputLayerName**
|
|
|
|
Allows you to specify which layer to use for an input item.
|
|
|
|
* **precision** default value of 2 decimals.
|
|
|
|
Caps the values to {precision} decimals after the .
|
|
|
|
* **endPoint** geojson geometry. (endpoint or angle is needed!)
|
|
|
|
point geometry
|
|
|
|
* **angle** value between 0.0 - 360.0. (endpoint or angle is needed!)
|
|
|
|
Orientation of the taskmap fishnet.
|
|
|
|
* **centered** true or false.
|
|
|
|
centers the abline in the middle of the 'cellWidth' axis.
|
|
|
|
|
|
|
|
Default percentile values for nbs are 0.0 and 1.0.
|
|
|
|
|
|
|
|
```javascript
|
|
|
|
{
|
|
|
|
"inputLayerName": "customLayerName",
|
|
|
|
"precision": 2,
|
|
|
|
"angle": 45,
|
|
|
|
"centered": "true",
|
|
|
|
"endPoint": "{
|
|
|
|
\"type\": \"Point\",
|
|
|
|
\"coordinates\": [6.014997043859679, 53.090253715796308]
|
|
|
|
}"
|
|
|
|
}
|
2021-02-15 08:51:39 +00:00
|
|
|
```
|
|
|
|
|
2021-02-15 09:28:44 +00:00
|
|
|
**Endpoint and startpoint are strings! not json!**
|