Triggers the export of the waviness data into files
POST {{baseUrl}}/waviness/export?fileFormat=csv&compression=none&fileSize=50
This endpoint triggers the export of the waviness data limited to the area defined by the GeoJSON referenced in the header. The returned jobId
can be used to get the status of the export process and once the export is completed, the list of files that can be downloaded. If there is already an export process running or is completed, no new export process is started, but the ID of the existing export process is returned.
The same filters that are available for the data retrieval endpoint can be used for this endpoint.
Request Params
Key | Datatype | Required | Description |
---|---|---|---|
fileFormat | string | The format of the exported files | |
compression | string | This parameter can be set if the exported files should be compressed. The only supported value is gzip . | |
fileSize | number | The size of the file that are generated (before compression). The size is in megabytes. The default value is 50 MB if the query parameters is not provided. Allowed values are between 5 MB and 200 MB. |
Request Body
{"geoJson"=>{"type"=>"Polygon", "coordinates"=>[[["<number>", "<number>"], ["<number>", "<number>"], ["<number>", "<number>"], ["<number>", "<number>"]], [["<number>", "<number>"], ["<number>", "<number>"], ["<number>", "<number>"], ["<number>", "<number>"]]], "bbox"=>["<number>", "<number>", "<number>", "<number>"]}, "minIri"=>"<float>", "minIriConfidence"=>"<float>"}
HEADERS
Key | Datatype | Required | Description |
---|---|---|---|
x-tracking-id | string | the request tracking ID | |
Content-Type | string | ||
Accept | string |
RESPONSES
status: OK
{"status":"\u003cstring\u003e","jobId":"\u003cstring\u003e","validUntil":"\u003cdateTime\u003e","fileNames":["\u003cstring\u003e","\u003cstring\u003e"]}