Raster ICS To Pixel

URL:
https://<imageservice-url>/icsToPixel
Methods:
GET
Required Capability:
Catalog
Version Introduced:
10.7

Description

The image service raster icsToPixel 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 icsToPixel 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 icsToPixel operation as query parameters defined in the parameters table below.

Request parameters

ParameterDetails

f

The response format. The default response format is html .

Values: html | json

Example usage

Return the geometric transformation coefficients to perform image coordinate system [sensor: Frame] to pixel (column, row) transformation:

https://myserver:6443/arcgis/rest/services/myAO11imageservice/ImageServer/1/info/icsToPixel?f=json

JSON response syntax

1
2
3
{
  "ipxf":{<ipxf>}
}

JSON response example

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{
 "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"
  }
 }
}

Your browser is no longer supported. Please upgrade your browser for the best experience. See our browser deprecation post for more details.

You can no longer sign into this site. Go to your ArcGIS portal or the ArcGIS Location Platform dashboard to perform management tasks.

Your ArcGIS portal

Create, manage, and access API keys and OAuth 2.0 developer credentials, hosted layers, and data services.

Your ArcGIS Location Platform dashboard

Manage billing, monitor service usage, and access additional resources.

Learn more about these changes in the What's new in Esri Developers June 2024 blog post.

Close