About 409,000 results
Open links in new tab
  1. python - How do you make pip install gdal work? - Geographic ...

    Dec 30, 2024 · However, GDAL doesn't provide precompiled binaries. If you really want to do this the hard way and compile the python bindings, you'll need to install GDAL binaries and have …

  2. installation - Installing GDAL with Python on Windows

    Can anyone explain how to install GDAL/OGR with Python on Windows? I have Windows Vista and I have tried following the information on the website and it does not seem to bind the *.exe …

  3. Using gdal.Warp() and gdal.warpOptions() of GDAL Python API

    Apr 8, 2018 · Using gdal.Warp () and gdal.warpOptions () of GDAL Python API Ask Question Asked 7 years, 6 months ago Modified 1 year, 7 months ago

  4. Converting GeoTIFF to USGS DEM or DTED using GDAL

    Oct 24, 2018 · The GDAL Raster Formats list show USGSDEM and DTED as supporting "Copy" which means you can output a copy of an existing raster to those formats. So try: …

  5. How to apply GDAL polygonize? - Geographic Information …

    Nov 26, 2021 · First, that doc is for the commandline application, not the gdal.Polygonize function. Second, you need to use GDAL to open the raster, GDAL doesn't understand rioxarray or …

  6. gdal - Geographic Information Systems Stack Exchange

    Jun 9, 2023 · Install GDAL with conda install -c conda-forge gdal - it seemed to successfully install at first, but upon importing osgeo into Python, I get the ModuleNotFoundError;

  7. Merging all tiles from one directory using GDAL

    I would like to use GDAL (under Windows; OSGeo4W Shell) to merge all GeoTIFFs from one directory into a new GeoTIFF. I have tried to address them by writing c:\data\....\*.tif which …

  8. raster - Python - gdal.Grid () correct use - Geographic Information ...

    Sep 5, 2017 · Is there any good, complete API for the GDAL Python bindings? I am interpolating and rasterizing points with elevation data using the gdal.Grid() method; output = …

  9. gdal - gdalwarp cutline along with shapefile - Geographic …

    You need to use the -dstalpha option to gdalwarp e.g.: gdalwarp -cutline INPUT.shp -crop_to_cutline -dstalpha INPUT.tif OUTPUT.tif This will add an alpha band to the output tiff …

  10. gdal - Convert GeoTIFF DEM to DTED level 2 (.dt2) without …

    Sep 13, 2023 · 0 I tried converting GeoTIFF DEM to DTED using GDAL with following command gdal_translate -of DTED -outsize 1201 1201 -projwin_srs EPSG:4326 -co LEVEL=2 …