Create an Export Job

get

{server}/georaster/v1/{datasource}/{tableName}/{georasterColumnName}/{rdt}/{rid}/{format}

Create a job that exports a GeoRaster Object to a file with the specified format. The available formats are the one supported by GDAL. A job will be created and the response will include a job id that can be used to monitor the progress and result of the job.

Request

Path Parameters

There's no request body for this operation.

Back to Top

Response

Supported Media Types

202 Response

Export job has been accepted and will be executed asynchronously. The id included in the response should be used to monitor the progress and result of the job by invoking Get Job Status endpoint.
Body ()
Root Schema : jobResponse
Type: object
response for a import or export job created.
Show Source
Examples

401 Response

Authentication information is missing or invalid
Headers
Back to Top

Examples

The following is an example on how to create a job to export a GeoRaster Object into a JPEG file using cURL.

curl -X GET  "https://localhost:8080/oraclespatial/georaster/v1/datasource1/image_table/image/image_table_RDT1/1/JPEG?fileName=out.jpg" -H "Cookie: JSESSIONID=<jsessionid_value>"

The following shows an example of the response for the above request:

{
  "id": 1675794043556
}
Back to Top