dshean / demcoreg

Utilities for DEM and point cloud co-registration
MIT License
114 stars 45 forks source link

Two different reference surfaces #27

Closed tobkug closed 3 years ago

tobkug commented 3 years ago

Hi

I want to co-register two different digital elevation models

1): Lidar dem (vertical datum: geoid EGM96) 2): stereoscopic Pléiades dem (vertical datum: ellipsoid WGS84)

Do i have to apply a vertical datum transformation first before using dem_align.py?

ShashankBice commented 3 years ago

It would be best to indeed convert the Lidar DEM to ellipsoidal height for best results. If the geoid undulation in your study area is uniform, then geoid to ellipsoid height difference will be pretty much constant and dem_align.py can recover that z offset during co-registration, even if you don't convert the reference datums. But there can be subtle artifacts, for which I would say having the datasets vertical datum to be consistent is the best bet. You can use the latest gdal3 datum conversion recipe or the Ames stereo pipeline dem_geoid tool to convert between geoid to ellipsoidal heights.

tobkug commented 3 years ago

thank you