Geotiff to Cloud Optimized Geotiff(COG)

A Cloud Optimized Geotiff(COG) is a GeoTIFF file with an internal organization that enables more efficient workflows in the cloud environment. It does this by leveraging the ability of clients issuing HTTP GET range requests to ask for just the parts of a file they need.

See more at https://cogeo.org/ (opens in a new tab)

TIFF to COG conversion

Manually trigger the processing pipeline defined in the input parameter.
mutation TriggerProcessingV2 {
triggerProcessingV2(
  params: {
    groupedAssetId: "[groupedAssetId]"
    outputFormat: COG
    processingPipelineName: LUCIAD_TIFF_TO_COG
  })
  {
    ... on TriggerProcessingOutput {
      success
    }
  }
}
 

groupedAssetId :The ID of the GroupedAsset.
outputFormat :COG
processingPipelineName :LUCIAD_TIFF_TO_COG

COG streaming

Retrieves the specified asset, provided the user has access to it.
query Asset {
  asset(groupedAssetId: "[groupedAssetId]") {
      ... on GroupedAssetOutput {
          id
          name
          asset {
              groupedAssetId
              storageRegion
              artifactsV2 {
                  parentId
                  contents {
                      id
                      addressesV2 {
                          contents {
                              ... on AddressCogOutput {
                                  id
                                  endpoint
                                  serviceType
                              }
                          }
                      }
                  }
              }
          }
      }
  }
}