Product configurations

Get information about UP42 product configurations.


Overview

A product configuration refers to a data product's image type. The product configurations available depend on the data producer.

See product configurations

To see a list of all available product configurations, call the /product-configurations endpoint.

Request

GET /product-configurations HTTP/1.1
Host: api.up42.com
Query parameterOverview
is_integratedstring
Whether it is integrated in the UP42 API. The default value is true.

You can order non-integrated data by contacting the Operations team.

Response


See response example
{
  "data": [
    {
      "host": {
        "name": "oneatlas",
        "title": "OneAtlas",
        "description": "OneAtlas is the platform that provides access to the Airbus constellation of satellites.",
        "isIntegrated": true,
        "isCommercial": true,
        "createdAt": "2021-08-10T11:25:54.203814Z",
        "updatedAt": "2022-04-04T10:45:58.064559Z"
      },
      "hostName": "oneatlas",
      "title": "Mono Analytic",
      "description": "Monoscopic orthorectified imagery in GeoTIFF format...",
      "id": "a5d162e1-42d3-4848-8fa0-acb653e4c1c7",
      "configuration": {
        "params": {
          "item_properties": {
            "acquisitionMode": "MONO"
          },
          "production_option": {
            "image_format": "dimap_geotiff",
            "pixel_coding": "12bits",
            "projection_1": "4326",
            "processing_level": "ortho",
            "spectral_processing": "bundle",
            "radiometric_processing": "reflectance"
          }
        },
        "product": "tasking"
      },
      "isIntegrated": true,
      "createdAt": "2021-10-27T08:44:42.447525Z",
      "updatedAt": "2021-10-27T08:44:42.447525Z"
    },
    {
      "host": {
        "name": "oneatlas",
        "title": "OneAtlas",
        "description": "OneAtlas is the platform that provides access to the Airbus constellation of satellites.",
        "isIntegrated": true,
        "isCommercial": true,
        "createdAt": "2021-08-10T11:25:54.203814Z",
        "updatedAt": "2022-04-04T10:45:58.064559Z"
      },
      "hostName": "oneatlas",
      "title": "Mono Display",
      "description": "Monoscopic orthorectified imagery in GeoTIFF format...",
      "id": "9d7700d9-5138-4769-9fc4-de8c42e95fc7",
      "configuration": {
        "params": {
          "item_properties": {
            "acquisitionMode": "MONO"
          },
          "production_option": {
            "image_format": "dimap_geotiff",
            "pixel_coding": "8bits",
            "projection_1": "4326",
            "processing_level": "ortho",
            "spectral_processing": "pansharpened",
            "radiometric_processing": "display"
          }
        },
        "product": "tasking"
      },
      "isIntegrated": true,
      "createdAt": "2021-10-27T08:44:42.447525Z",
      "updatedAt": "2021-10-27T08:44:42.447525Z"
    }
  ],
  "error": null
}

ParameterOverview
data.hostobject
Information about the data host.
data.titlestring
The title of the product configuration.
data.descriptionstring
The description of the product configuration.
data.idstring
The product configuration ID.
data.configurationobject
The product configuration.
data.isIntegratedboolean
Whether the product configuration is integrated in the UP42 API.

You can order non-integrated product configurations by contacting the Operations team.
data.createdAtstring
The timestamp when the the product configuration was created.
data.updatedAtstring
The timestamp when the the product configuration was updated.

See a particular product configuration

To see information about one product configuration, call the /product-configurations/{product_configuration_id} endpoint with a specific data product ID as a path parameter.

Request

GET /product-configurations/{product_configuration_id} HTTP/1.1
Host: api.up42.com

Response

The response is an object from the /product-configurations data array.

See response example
{
  "data": {
    "host": {
      "name": "oneatlas",
      "title": "OneAtlas",
      "description": "OneAtlas is the platform that provides access to the Airbus constellation of satellites.",
      "isIntegrated": true,
      "isCommercial": true,
      "createdAt": "2021-08-10T11:25:54.203814Z",
      "updatedAt": "2022-04-04T10:45:58.064559Z"
    },
    "hostName": "oneatlas",
    "title": "Mono Analytic",
    "description": "Monoscopic orthorectified imagery in GeoTIFF format...",
    "id": "a5d162e1-42d3-4848-8fa0-acb653e4c1c7",
    "configuration": {
      "params": {
        "item_properties": {
          "acquisitionMode": "MONO"
        },
        "production_option": {
          "image_format": "dimap_geotiff",
          "pixel_coding": "12bits",
          "projection_1": "4326",
          "processing_level": "ortho",
          "spectral_processing": "bundle",
          "radiometric_processing": "reflectance"
        }
      },
      "product": "tasking"
    },
    "isIntegrated": true,
    "createdAt": "2021-10-27T08:44:42.447525Z",
    "updatedAt": "2021-10-27T08:44:42.447525Z"
  },
  "error": null
}