Raster CRS Conversion
Transforms input data to the desired coordinate reference system (CRS).
The current analytics platform will be discontinued after January 31, 2024, and will be replaced by new advanced processing functionalities. This change will affect projects, workflows, jobs, data blocks, processing blocks, and custom blocks. For more information, see the blog post.
Description
A processing block that converts the input image Coordinate Reference System to another CRS based on an EPSG code and outputs georeferenced GeoTIFFs with the same bands and resolution as the input data. If you're not familiar with coordinate systems or EPSG codes, refer to epsg.io.
See this block on the marketplace.
How it works
Parameter | Overview |
---|---|
resampling_method | string / required The resampling method to use when reprojecting the image:
cubic . |
output_epsg_code | integer / required The EPSG code of the output raster file. By default, the UTM zone of the image is selected. |
Example
A workflow using storage data with the help of Processing from Storage, reprojected to an EPSG code 3857 or WGS 84/Pseudo-Mercator.
{
"up42-processing-from-storage:1": {
"asset_ids": ["00210895-5405-4c0r-9bca-ccca551776f9"]
},
"crs-conversion:1": {
"resampling_method": "cubic",
"output_epsg_code": 3857
}
}