- URL:
- https://<imageservice-url>/icsToPixel
- Methods:
GET
- Required Capability:
- Catalog
- Version Introduced:
- 10.7
Description
The image service raster ics
resource is available when the following conditions are met:
- ArcObjects11 or ArcObjectsRasterRendering is used as the service provider.
- The image service catalog capability is enabled.
- The requested catalog item has sensor transformation information, such as frame camera or rational polynomial coefficients.
The raster ics
resource returns coefficients to build up the mathematic model for geometric transformation. With this transformation, ICS coordinates based from the catalog item raster can be used to calculate the original column and row numbers on the corresponding image.
You can provide arguments to the ics
operation as query parameters defined in the parameters table below.
Request parameters
Parameter | Details |
---|---|
|
The response format. The default response format is Values: |
Example usage
Return the geometric transformation coefficients to perform image coordinate system [sensor: Frame] to pixel (column, row) transformation:
https
JSON response syntax
{
"ipxf":{<ipxf>}
}
JSON response example
{
"ipxf": {
"affine": {
"name": "ics [sensor: Frame] to pixel (column, row) transformation",
"coefficients": [
0.7696489740420431,
-0.6384672714838489,
-533.6198380428073,
-0.6384672714838486,
-0.7696489740420431,
2167.0723169784023
],
"cellsizeRatio": 0,
"type": "GeometricXform"
}
}
}