
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 the GDAL …
installation - Installing GDAL with Python on Windows - Geographic ...
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 files for me...
gdal - Why is PROJ not figuring out a CRS? - Geographic Information ...
Dec 3, 2021 · I am trying to use gdal_translate to convert a WCS source to a tif target. I am trying to achieve this using a WCS XML service description file. The gdal_translate call looks like this …
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: gdal_translate -of …
raster - How to efficiently access files with GDAL from an S3 bucket ...
Jul 20, 2016 · 29 So, GDAL has recently added a new feature that allows random reading of S3 bucket files. I am looking to crop GDAL images from multiple tiles of an image without having to download …
gdal - Convert huge XYZ CSV to GeoTIFF - Geographic Information …
I have a huge amount of data in the form of CSV containing UTM coordinates as X and Y and an elevation value as Z information. I need to convert these data into a DEM as GeoTIFF for further …
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 however does not …
gdal - "Error 4: xxxxx.dat: not recognized as a supported file format ...
May 28, 2019 · I am trying to convert a .dat file to a .tif file using gdal_translate. The .dat file comes with an associated .Hdr file of the same name with the metadata (these are geospatial data from …
gdal - Calculating Image boundary / footprint of satellite images using ...
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 footprint...
gdal - gdalwarp cutline along with shapefile - Geographic Information ...
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 which masks out the …