Using Python, how do I apply a unit conversion function chain to each individual raster based on source units?
I'd like all units to be in Meters. I have a mosaic dataset containing elevation rasters with mixed source units: feet and meters.
I'd like to :
1) iterate through the mosaic dataset,
2) check the units of each raster,
3) if the raster has source units feet, then apply a unit conversion function chain (ft to m).
Rasters with source unit Meters do not need a function chain.
Thanks!