Skip to main content
Filter by
Sorted by
Tagged with
1 vote
1 answer
64 views

I am experiencing a hard crash (the entire process terminates abruptly) whenever I execute GDAL translation or warping operations (gdal.Translate or gdal.Warp) synchronously in the main GUI thread of ...
8535241's user avatar
  • 113
0 votes
0 answers
37 views

I am trying to read three single band images and combine them in one 3 band image using gdal/python. I have found a working solution but it doesn't seem optimal : from osgeo import gdal import numpy ...
elwwan's user avatar
  • 13
1 vote
1 answer
95 views

I’m struggling to get GDAL working in my Anaconda environment on Windows. Despite multiple attempts, gdalinfo --version consistently returns an entry point error, preventing GDAL from functioning. I'm ...
Andres Bolivar's user avatar
1 vote
0 answers
345 views

My Python project uses Poetry for dependency management. It requires the GDAL package, which (on Linux) requires that libgdal-dev is installed on the system. Moreover, the version of the Python ...
MaartenB's user avatar
  • 475
0 votes
1 answer
812 views

I am trying to install GDAL==2.2.2 in a conda environment. But I get the following error for some reason: from osgeo import gdal Traceback (most recent call last): File "<stdin>", ...
Vinayak Huggannavar's user avatar
1 vote
0 answers
812 views

I am trying to use the GDAL as a lambda layer in my AWS environment. But I am getting this error response: "errorMessage": "Unable to import module 'lambda_function': cannot import name ...
cownan_kun's user avatar
0 votes
1 answer
291 views

I have a rectangular area of interest, and each vertex of this rectangle is defined by a pair of coordinates (latitude, longitude). Parsing a DTED, how could I find the highest altitude within this ...
carraro's user avatar
  • 309
0 votes
1 answer
211 views

I am trying to use python gdal to process a grib2 file into a geotiff file based on the following example: https://geoexamples.com/d3-raster-tools-docs/code_samples/vardah.html based on this I have ...
jms1980's user avatar
  • 1,085
0 votes
1 answer
1k views

I'm trying to build an application into a docker container that uses the OSGEO/GDAL libraries in Python, which are wrappers around the GDAL program. The GDAL program appears to install ok (at least ...
DVA's user avatar
  • 331
0 votes
1 answer
2k views

I'm trying to write an IN-Memory Dataset to a GeoTiff in Disk with gdal for python gd_driver = gdal.GetDriverByName("MEM") gd_raster = gd_driver.Create('pippo', src_height, src_width, ...
maike's user avatar
  • 1
0 votes
1 answer
147 views

Edited: Issue: I am experiencing a discrepancy between what Anaconda says is installed and what can actually be imported using Python. I have installed in a virtual anaconda environment (gis) ...
Max Duso's user avatar
  • 429
1 vote
1 answer
555 views

I installed the latest Postgre.app version Version 2.5.6 (139) Universal version for my new MacBook Pro M1. After setting up the CLI tools, I am able to access all gdal binaries that come bundled like ...
Shaunak's user avatar
  • 18.2k