Get a GeoRaster Object

get

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

Get a GeoRaster Object in JSON format with the given RDT and RID.

Request

Path Parameters
Query Parameters
  • Boolean parameter to indicate whether to include the metadata in the returned object stream. If not specfied, metadata is not returned.
    Default Value: false

There's no request body for this operation.

Back to Top

Response

Supported Media Types

200 Response

Return the GeoRaster Object.
Body ()
Root Schema : georasterObjectResponse
Type: object
The json response of the information of the GeoRaster Object
Show Source
Nested Schema : sdogeormetadata
Type: object
GeoRaster Object metadata
Show Source
Nested Schema : spatialExent
Match All
Show Source
Nested Schema : rasterBandReferenceSystemType
Type: object
Show Source
Nested Schema : layerInfo
Type: array
Minimum Length: 1
Show Source
Nested Schema : objectDescriptionType
Type: object
Show Source
Nested Schema : rasterDescriptionType
Type: object
Show Source
Nested Schema : rasterSpatialReferenceSystemType
Type: object
Show Source
Nested Schema : rasterTemporalReferenceSystemType
Type: object
Show Source
Nested Schema : bandReference
Type: array
Show Source
Nested Schema : spatialResolution
Type: object
Show Source
Nested Schema : extentType
Type: object
Show Source
Nested Schema : segmentationDataType
Type: object
Show Source
Nested Schema : layerDescriptionType
Type: object
Show Source
Nested Schema : layerType
Type: object
Show Source
Nested Schema : subLayer
Type: array
Minimum Length: 0
Show Source
Nested Schema : binFunctionType
Type: object
Show Source
Nested Schema : colorMapType
Type: object
Show Source
Nested Schema : grayScaleType
Type: object
Show Source
Nested Schema : NODATAType
Type: object
Show Source
Nested Schema : scalingFunctionType
Type: object
Show Source
Nested Schema : statisticDatasetType
Type: object
Show Source
Nested Schema : binDefinition
Match One Schema
Show Source
Nested Schema : colors
Match One Schema
Show Source
Nested Schema : colors-oneOf[0]
Type: array
Minimum Length: 1
Show Source
Nested Schema : cellPseudoColorType
Type: object
Show Source
Nested Schema : grays
Match One Schema
Show Source
Nested Schema : grays-oneOf[0]
Type: array
Minimum Length: 1
Show Source
Nested Schema : cellGrayType
Type: object
Show Source
Nested Schema : ranges
Type: array
Show Source
Nested Schema : values
Type: array
Show Source
Nested Schema : histogramType
Type: object
Show Source
Nested Schema : rectangularWindowType
Type: object
Show Source
Nested Schema : counts
Match One Schema
Show Source
Nested Schema : counts-oneOf[0]
Type: array
Minimum Length: 1
Show Source
Nested Schema : cellCountType
Type: object
Show Source
Nested Schema : cellCoordinateType
Type: object
Show Source
Nested Schema : blockingDescriptionType
Type: object
Show Source
Nested Schema : cellDimensionSizeType
Type: object
Show Source
Nested Schema : pyramidDescriptionType
Type: object
Show Source
Nested Schema : maxLevel
Default Value: 0
Match All
Show Source
  • Minimum Value: 0
    Minimum Value: > false
Nested Schema : GCPGeoreferenceType
Type: object
Show Source
Nested Schema : rationalPolynomialType
Type: object
Show Source
Nested Schema : gcp
Type: array
Minimum Length: 0
Show Source
Nested Schema : GCPType
Type: object
Show Source
Nested Schema : polynomialType
Type: object
Show Source
Nested Schema : polynomialCoefficients
Type: array
Show Source
Examples

401 Response

Authentication information is missing or invalid
Headers
Back to Top

Examples

The following is an example on how to get a single GeoRaster Object by submitting a GET request using cURL.

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

The following shows an example of the response body in JSON format for the above request.

{
  "rasterType": 21001,
  "spatialExtent": null,
  "rasterDataTable": "image_table_RDT1",
  "rasterID": 1,
  "links": [{
    "rel" : "self" ,
    "href" : "https://localhost:8080/oraclespatial/georaster/v1/datasource1/image_table/image/image_table_RDT1/1"
  }, {
    "rel" : "metadata",
    "href" : "https://localhost:8080/oraclespatial/georaster/v1/datasource1/image_table/image/image_table_RDT1/1/metadata"
  }]
}
Back to Top