Using an external DEM #347
Replies: 3 comments 7 replies
-
Steps I used to transform data from NAVD88 vertical datum to WGS84 Ellipsoid vertical datum (necessary for ISCE2): From NAVD88 to WGS84 Ellipsoid Since my input is projected to WGS84 Ancillary (EPSG 3857) with vertical datum NAVD88 (EPSG 5703) and the desired output for ISCE2 is EPSG 4979 for WGS84 horizontal and vertical height Tif to ISCE format using GDAL Create ISCE format .vrt |
Beta Was this translation helpful? Give feedback.
-
Here's how I finally got to convert my NAD83 NADV88 datum LiDAR data to a WGS84 ref ellipsoid GeoTIFF file for ISCE stack processing. 1. Downloaded and used NOAA vdatum to convert the .las files to WGS84 UTM. (UTM since I discovered that Arcgis pro would not interpolate my LiDAR to a raster tif unless it's in UTM, otherwise you will receive the error "000210: Cannot create output " ) This creates a *_NEW.las file.:
2. In ArcGIS pro:a) Define Projection for each tile, set the coordinate system to WGS_1984_UTM_Zone_17N Plotting tif with gdal:import elevation convert to a numpy array: replace missing values if necessary: Plot our data w/ 'contourf': Convert tif DSM to ISCE format!gdal_translate -of ISCE HERNANDO_2018_LiDAR_GCS_VCS_WGS84m.tif HERNANDO_2018_LiDAR_GCS_VCS_WGS84m.dem.wgs84 after using gdal_translate to generate .vrt for ISCE: After running stackStripMap.py, so far I have run: |
Beta Was this translation helpful? Give feedback.
-
Dear All |
Beta Was this translation helpful? Give feedback.
-
We (Tonian Robinson, @tonianr, and I) were having a discussion under a closed Issue (#329 (comment)) about how to prepare an external DEM for use in ISCE2. It was suggested that we have the discussion here in the newly enabled Discussion section.
I suggested that there are ways to use a GeoTIFF file as a DEM in ISCE2 if you create the necessary .xml and .vrt files, but you are better off converting it to a standard ISCE raster format with the GDAL
gdal_translate -of ISCE
command.The other big consideration is getting an external DEM into the horizontal and vertical datum that ISCE2 expects: WGS84 horizontal and WGS84 ellipsoid vertical datums.
Beta Was this translation helpful? Give feedback.
All reactions