Api session event logic measurement line add
API Endpoint: api/session/event/logic/measurement_line_add/
Description: Add a LineMeasurement for an Overlay for a specific Timeframe.
| Name | Importance | Type | Description | Values |
|---|---|---|---|---|
| 0 | REQUIRED | (OVERLAY Integer ID or multiple values in array [1, 2, 3]) | Overlay IDs | |
| 1 | REQUIRED | (Point with crs: EPSG:3857) | Point start | |
| 2 | REQUIRED | (Point with crs: EPSG:3857) | Point end | |
| 3 | REQUIRED | (String) | Name | |
| 4 | REQUIRED | (Integer number) | Timeframe (-1 for automatic last) | |
| 5 | REQUIRED | (true, false) | Save Measurement | true or false |
| 6 | REQUIRED | (true, false) | Sum | true or false |
Response Codes
| Response Code: | Description |
|---|---|
| 200 | Integer (Measurement ID) |
| 300-600 | Codes Overview |
Example POST
Curl example POST:
curl 'https://engine.tygron.com/api/session/event/logic/measurement_line_add/?crs=3857' -H 'Content-Type: application/json' -H 'Authorization: Bearer API_TOKEN' -d '
[ 1, {
"type" : "Point",
"coordinates" : [ 658652.5127233695, 6799372.5710882 ]
}, {
"type" : "Point",
"coordinates" : [ 658780.9705194401, 6799415.0467621675 ]
}, "Name", -1, true, true ]
'Curl example multi item POST:
curl 'https://engine.tygron.com/api/session/event/logic/measurement_line_add/?crs=3857' -H 'Content-Type: application/json' -H 'Authorization: Bearer API_TOKEN' -d '
[ [ 1, 2, 3 ], {
"type" : "Point",
"coordinates" : [ 658664.4306340262, 6799438.76067076 ]
}, {
"type" : "Point",
"coordinates" : [ 658797.1550356153, 6799458.576722857 ]
}, "Name", -1, true, true ]
'JavaScript example POST:
var options = {
method: "POST",
headers: { "Content-Type": "application/json", "Authorization": "Bearer API_TOKEN" },
body: '[ 1, { "type" : "Point", "coordinates" : [ 658652.5127233695, 6799372.5710882 ]}, { "type" : "Point", "coordinates" : [ 658780.9705194401, 6799415.0467621675 ]}, "Name", -1, true, true ]'
};
fetch("https://engine.tygron.com/api/session/event/logic/measurement_line_add/?crs=3857", options)
.then(response => response.text())
.then(result => console.log(result))
.catch(error => console.log('error', error));