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. 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: …

  4. GDAL translate in python - where do I find how to convert the …

    Mar 2, 2020 · I'm trying to use gdal.translate() to convert a raster from unit16 to int16 and I am trying to figure out what arguments to use. I think in the command prompt version I would use …

  5. 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 = …

  6. 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, 6 months ago

  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. 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 …

  9. Installing GDAL for Python - Geographic Information Systems …

    Feb 3, 2024 · If you already use OSGeo4W, just install its python-gdal package. Otherwise you are mixing potentially (or rather, probably) incompatible packages. Also, OSGeo4W comes …

  10. gdal - Calculating Image boundary / footprint of satellite images …

    I need to create the polygon outlines of several single layer raster images, not the extent/bounding box, but the area without the nodata values, as shown here: Creating shapefile showing …