Skip to content

Commit 1a2ce1c

Browse files
committed
update formatting
1 parent 653f7d4 commit 1a2ce1c

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

geoid_conversion/geoid_conversion.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ Optional Arguments
3636
- Target Output File Type `-of`: You can also specify the output file type with the `-of`. GDAL will guess the output format from the file extension in the `dstfile` if none is specified. A useful output type is the Virtual Raster `.vrt`, which will not write the output to a new file, but will act as a pointer to the source file transforming the data on the fly when accessed. This is particularly handy to avoid essentially duplicating files when performing spatial transformations or merging raster files together.
3737
- Additional Creation Options `-co`: GDAL also provides additional creation options for each driver, including compression and tiling. Details can be found here for [GeoTIFF](https://gdal.org/en/stable/drivers/raster/gtiff.html#creation-options) and [COGs](https://gdal.org/en/stable/drivers/raster/cog.html#creation-options).
3838

39-
#### Examples
39+
## Example Scripts
4040

4141
For a local ArcticDEM mosaic tile, from .tif to .tif:
4242

@@ -50,7 +50,7 @@ Transforming the other way, from orthometric (geoid) to ellipsoid, you can set t
5050

5151
``` gdalwarp -s_srs EPSG:3031+3855 -t_srs EPSG:3031 rema_orthometric.tif rema_ellipsoidal.tif ```
5252

53-
### Verifying conversion outputs
53+
## Verifying conversion outputs
5454
Users can verify the outputs with GDAL tools or in a desktop GIS application. `gdalinfo` will return details about the spatial projection, including any vertical reference details. Here we see the `EGM2008 geoid` applied after the `gdalwarp` transformation:
5555
```
5656
gdalinfo dem_orthometric.tif

0 commit comments

Comments
 (0)