DIMAP -> GeoTIFF Conversion

Converts DIMAP to GeoTIFF format.


Description

A processing block that converts satellite images from the DIMAP format into georeferenced GeoTIFFs, while keeping the same bands and spatial resolution of the input data.

See this block on the marketplace.

How it works

ParametersOverview
msboolean / required if
Required if pan=false.
The conversion of multispectral bands. The default value is true.
panboolean / required if
Required if ms=false.
The conversion of the panchromatic band. The default value is false.
bboxarray of integers / required if
Required if intersects or contains aren't specified.
A bounding box to use as an AOI. Will clip to scenes that intersect with this box.
containsobject / required if
Required if bbox or intersects aren't specified.
A GeoJSON geometry to use as an AOI. Will clip to scenes that fully cover this geometry.
intersectsobject / required if
Required if bbox or contains aren't specified.
A GeoJSON geometry to use as an AOI. Will clip to scenes that intersect with this geometry.
clip_to_aoiboolean / required
Whether the specified AOI should be clipped before processing:
  • true — The AOI should be clipped first.
  • false — The full scene should be processed.
The default value is false.

Compatibility

Catalog collections

Use in combination with Processing from Storage.

Processing blocks

Example

A workflow with the following blocks:

{
  "up42-processing-from-storage:1": {
    "asset_ids": ["00210895-5405-4c0r-9bca-ccca551776f9"]
  },
  "data-conversion-dimap:1": {
    "ms": true,
    "pan": false,
    "bbox": null,
    "contains": null,
    "intersects": null,
    "clip_to_aoi": false
  },
  "fieldfinder:1": {}
}

Capabilities

Input

raster
up42_standard
bands
{
  "or": [
    [
      "red",
      "green",
      "blue",
      "nir",
      "pan"
    ],
    [
      "red",
      "green",
      "blue",
      "nir"
    ],
    [
      "blue",
      "deepblue",
      "green",
      "nir",
      "red",
      "rededge"
    ]
  ]
}
dtype
{
  "or": [
    "uint16",
    "uint8"
  ]
}
formatDIMAP
sensor
{
  "or": [
    "Pleiades",
    "SPOT",
    "PNEO"
  ]
}
processing_levell2

Output

raster
up42_standard
bands
{
  "or": [
    [
      "red",
      "green",
      "blue",
      "nir"
    ],
    [
      "pan"
    ],
    [
      "blue",
      "deepblue",
      "green",
      "nir",
      "red",
      "rededge"
    ]
  ]
}
dtype> (propagated)
formatGTiff
sensor> (propagated)
resolution> (propagated)
processing_level> (propagated)
To know more please check the block capabilities specifications.