Skip to main content
Filter by
Sorted by
Tagged with
0 votes
1 answer
55 views

I am trying to install GDAL in my virtual Environment which is built based on python 3.13.7. Following this page, In my environment I do: pip install gdal No success though. Please see the error ...
Sina NAKHOSTIN's user avatar
0 votes
0 answers
18 views

I have a small C++ file like below #include <iostream> #include <string> #include <sstream> #include "/opt/homebrew/Cellar/gdal/3.11.5/include/gdal_priv.h" // #include &...
BallpenMan's user avatar
0 votes
0 answers
42 views

I have a tif image(RGBA) with following stats for alpha channel: Band 4 Block=829x2 Type=Byte, ColorInterp=Alpha Min=1.000 Max=255.000 Minimum=1.000, Maximum=255.000, Mean=202.508, StdDev=46.463 ...
Mandroid's user avatar
  • 7,778
3 votes
1 answer
82 views

I am hoping to install the R-INLA package (https://www.r-inla.org/what-is-inla) which requires the package terra. I need to install the source version of terra to use the INLA package (the binary ...
the_wrath_of_the_whatever's user avatar
2 votes
0 answers
62 views

I have a gis image file in tif format which I convert to png based tiles using gdal. gdalinfo command for tif file shows: Band 1 Block=1652x2 Type=Byte, ColorInterp=Gray Min=1.000 Max=255.000 ...
Mandroid's user avatar
  • 7,778
1 vote
1 answer
99 views

I need to perform a conversion from a FlatGeoBuf file that I read as bytes from an http request to a GeoJSON file. I know that I could save the .fgb on disk, open it with ogr, and then I have a ...
marting's user avatar
  • 503
2 votes
1 answer
85 views

I'm running a Python script inside a Conda-based Docker container that processes geospatial data. The script runs a two step GDAL workflow, it uses gdaldem colorrelief to create a colorized GeoTIFF, ...
mrotskcud's user avatar
1 vote
0 answers
50 views

I have downloaded and successfully built the GDAL3.js project, but it does not include any drivers for JPEG2000 (such as Kakadu, or Open JPEG). I have in the past successfully built the standard GDAL3 ...
Randy Thompson's user avatar
0 votes
1 answer
98 views

I am trying to build PDAL from source. At 57%, the build fails, missing the GDAL header file cpl_vsi.h included in VSIIO.cpp. In the CMakeCache.txt file in the build directory, there is //Path to the ...
Mau's user avatar
  • 1
0 votes
0 answers
61 views

I'm in the process of upgrading the version of GDAL that we use to version 3.10.3, which was installed using vcpkg. I noticed that some of our unit tests were failing. Below is an example that fails (...
earthmover's user avatar
0 votes
0 answers
20 views

So, I have the following Dockerfile to create my Lucee image (I named the built image as "basic"). FROM lucee/lucee:latest RUN mkdir -p /var/www COPY www/ /var/www/ And I use this image ...
Manny K SoSo's user avatar
0 votes
0 answers
1k views

I have a venv and need to access methods from the gdal package which is included in the osgeo package. The following command did not work directly: pip install gdal So I downloaded this wheel GDAL-3.9....
tds's user avatar
  • 121
0 votes
1 answer
24 views

I have installed gdal at Anaconda base prompt using "conda install -c conda-forge gdal" and also created separate conda environment (geo) and installed at this location using the same ...
Rathpr's user avatar
  • 3
0 votes
1 answer
39 views

Is there a way to dynamically check the version of a package installed system wide and set that as a package dependency in the pyproject.toml? Specially, I need to check if a person already has GDAL ...
andrewr's user avatar
  • 815
0 votes
1 answer
78 views

I used this script to crop a raster using a polygon shapefile with python gdal.Warp, but it seems it leaves many pixels with value = 1 outside the cropline gdal.Warp(rasterOut.jp2, rasterIn....
ilFonta's user avatar
  • 301
0 votes
0 answers
31 views

There is a service that exports layer objects to the MapInfo .tab format. This service uses the Gdal 3.3 library version. The service is deployed on a Linux server. There is a problem with exporting ...
Suk0na's user avatar
  • 1
0 votes
0 answers
38 views

I'm processing some satellite MOD13Q1 images. If I print the ExportToWkt output, I get: PROJCS["unnamed",GEOGCS["Unknown datum based upon the custom spheroid",DATUM["...
Mauro Assis's user avatar
2 votes
0 answers
182 views

I am trying to import a KML file into a PostgreSQL database using the ogr2ogr tool, but I am encountering the following error: ERROR 1: PROJ: proj_create_from_database: C:\Program Files\PostgreSQL\17\...
irem cagbayir's user avatar
2 votes
0 answers
83 views

I’ve been using Dependabot to keep my Python packages up to date, but recently it’s been slowing down and not updating as often as I’d like. After digging into the issue, I found that a specific ...
BlackLotus's user avatar
0 votes
0 answers
155 views

Gdal_translate throws "too many command options." I used a gdal_translate code in a batch file to convert multiple JP2 files to TIFF format, and it worked well. I then modified that same ...
Stevenj279's user avatar
0 votes
1 answer
119 views

I am having problem with running gdal/ogr/osr in python environment. The program just stopped running until the line where I use any of these packages.It doesn't give any error or warning message. I ...
Zixin's user avatar
  • 1
0 votes
0 answers
51 views

I am trying to extract all raster values where the cell is equal to either 330 or 430, however I can't get the syntax to work. I am using the following: python gdal_calc.py --co "COMPRESS=DEFLATE&...
AndyH's user avatar
  • 21
0 votes
1 answer
444 views

How to export layers(shape-files and GTiff) from a list into one gpkg file? It works for vector and raster layers separately, but only one type of layers is saved in the output. I've realised what ...
Vera PL's user avatar
0 votes
1 answer
128 views

I'm working with a GeoJSON file that represents the area of the United States at 0 feet elevation. However, when I load it into QGIS, a strange diagonal line appears, stretching across the map. This ...
Pannam's user avatar
  • 731
0 votes
1 answer
111 views

I am trying to process rain radar images of the UK MET weather service for a particular catchment area. I am stitiching the image together from several png files before georeferencing it with gdal....
felix_the_cat's user avatar

1
2 3 4 5
45