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

KeyDatatypeRequiredDescription
fileFormatstringThe format of the exported files
compressionstringThis parameter can be set if the exported files should be compressed. The only supported value is gzip.
fileSizenumberThe 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

KeyDatatypeRequiredDescription
x-tracking-idstringthe request tracking ID
Content-Typestring
Acceptstring

RESPONSES

status: OK

{&quot;status&quot;:&quot;\u003cstring\u003e&quot;,&quot;jobId&quot;:&quot;\u003cstring\u003e&quot;,&quot;validUntil&quot;:&quot;\u003cdateTime\u003e&quot;,&quot;fileNames&quot;:[&quot;\u003cstring\u003e&quot;,&quot;\u003cstring\u003e&quot;]}