Good evening everybody,
I am using the Range-Doppler Terrain Correction in Snappy and since I would like to look at tif data all around the world in the program I guess I would need to change the Coordinate Reference System to the specific area (I thought it could do that automatically with the standard parameter but that does not seem to be the case). How would I add that parameter (EPSG/UTM Zone) to the code? My code currently:
def terrain_correction(product_subset, band= “Intensity_VH”):
parameters = HashMap()
parameters.put(‘demName’, ‘SRTM 1Sec HGT’)
parameters.put(‘pixelSpacingInMeter’, 10.0)
parameters.put(‘sourceBands’, band)
parameters.put(‘nodataValueAtSea’, “False”)
product_subset_corrected = GPF.createProduct(“Terrain-Correction”, parameters,
product_subset)
return product_subset_corrected
Thank you for your time.