Difference between revisions of "Topo to 3D"
(Created page with "How to make a printable 3D model from topo maps - notes. Get the topo map, in GeoTiff format. Possible sources are: * http://opentopo.sdsc.edu * https://viewer.nationalmap.g...") |
|||
Line 10: | Line 10: | ||
Convert the GeoTiff to ASCII DEM. |
Convert the GeoTiff to ASCII DEM. |
||
Possible tools are: |
Possible tools are: |
||
* On Linux: [https://gdal.org/programs/gdal_translate.html GDAL translate option] |
|||
* On Linux: Gdal |
|||
sudo apt install gdal-bin |
sudo apt install gdal-bin |
||
gdal_translate -of AAIGrid /yoursourcepath/output_alos.tif /youroutputpath/out.asc |
gdal_translate -of AAIGrid /yoursourcepath/output_alos.tif /youroutputpath/out.asc |
Revision as of 12:40, 23 July 2019
How to make a printable 3D model from topo maps - notes.
Get the topo map, in GeoTiff format.
Possible sources are:
Convert the GeoTiff to ASCII DEM.
Possible tools are:
- On Linux: GDAL translate option
sudo apt install gdal-bin gdal_translate -of AAIGrid /yoursourcepath/output_alos.tif /youroutputpath/out.asc