GDAL (Geospatial Data Abstraction Library) is a library for reading and writing raster geospatial data formats.
0
votes
0answers
7 views
How to build gdal 64-bit on Visual Studio 2010 Express
I tried to compile gdal for 64-Bit.However, VS2010 Express couldn't compile it. I got some fatal errors related to odbc32.lib(Cannot open file: odbc32.lib) then I tried to remove ODBC Support through ...
0
votes
0answers
9 views
What's regular blocking arrangement?
I am using GDAL tools to retrieve PostGiS raster. The code(command line) I am using is as follows :
gdal_translate -of AAIGrid "PG:host=localhost dbname='database' user='postgres' password='admin' ...
0
votes
1answer
32 views
How to loop through several files using gdal and cmd?
I have several files which have the tif format.I would like to translate them to ENVI format.
I succeeded for one file but I want to do for the rest of files in the directory.
the first file in ...
0
votes
0answers
17 views
GDAL in IOS, runtime dll proj4 not available, OGR functions do not work
I have some problems with gdal compiled for iOS ( gdal internally uses proj for some operations )
I want to use this library to perform coordinate transformation, but some functions requires proj dll ...
0
votes
1answer
44 views
Bash scripting and gdal - how to refer to elements in an array variable?
I am trying to use gdal in a bash script. I have several input raster files, in ENVI format, in different directories, and want to give new outputnames, in GTiff format.
The idea is then to run the ...
0
votes
0answers
10 views
How do I add elevation data to a GeoJSON line from a GPX file? [migrated]
I understand that elevation can be added as an optional third value in Coordinates (lat, long, elev) in a geojson file, but I can't find a way to actually do that from a gpx file. I've used ogr2ogr to ...
0
votes
0answers
11 views
Link error with GetACP under mingw64 (mingw-builds)
I was trying to build gdal-1.10.0
(http://trac.osgeo.org/gdal/wiki/DownloadSource) using mingw64 (from
http://sourceforge.net/projects/mingwbuilds/files/host-windows/
...
0
votes
1answer
35 views
Relationship between MSVC and .NET framework versions
This is a rather general question, a result of my confusion about how to compile GDAL using different versions of Microsoft Visual C++ (MSVC) and its C#-bindings. I understand that MSVC is a compiler ...
1
vote
3answers
62 views
Can't build gdal in x64
I am trying to build GDAL (1.9.2) in x64.
In the instructions, I see:
# Uncomment the following if you are building for 64-bit windows
# (x64). You'll need to have PATH, INCLUDE and LIB set up for ...
0
votes
0answers
17 views
Generate custom tile sizes with gdal2tiles
Gdal2tiles or maptiler generates tiles with tile size of 256x256 px.
I have a non-square image with resolution of 1984x3062.
Processing this non-square image, gdal2tiles generates tiles of 256x256 ...
0
votes
2answers
53 views
Obtaining Latitude and Longitude with from Spatial objects in R
I want to obtain the latitude and longitude from a shapefile. Until now, I only know how to read the shapefile.
library(rgdal)
centroids.mp <- readOGR(".","35DSE250GC_SIR")
But how I can ...
0
votes
0answers
24 views
Installing GDAL on Python 3 with easy-install
I am using python 3.3, and I want to install GDAL on my mac.
Unfortunately the great packake installation on http://www.kyngchaos.com/software/frameworks
So i am using easy_install.
When I run :
...
0
votes
1answer
30 views
Support for Arc/Info Binary Grid format by C#-bindings of GDAL
I want to read Arc/Info Binary Grids and convert them to other image formats using the C#-bindings of GDAL. I installed FWTools 2.4.7 and the current binaries (MSVC2010 (Win64) -stable) from here. ...
0
votes
0answers
37 views
Installing GIS for gis with Python is easy …? not for me
I really really need your help please. The fact is my problem should seem pretty simple to you.
So I have a macbook with Lion, I use python 3.3. In order to use GDAL for GIS? I downloaded the package ...
2
votes
0answers
61 views
install of GDAL failed for kartograph.py - DLL load failed
There is a very similar topic but solutions there didn't helped me.
I am trying to install and run kartograpgh.py tests from installation, and it breaks like this =>
...
0
votes
1answer
24 views
Error using GDAL in iOS development
I finally managed to build gdal for ios. I want to develop an application wich will work with elevation data from geotiff files.
After the successful built, i made a simple app just to test the ...
0
votes
4answers
61 views
How to stretch GMT raster with gdal to work with google
How can I stretch a PNG raster coming from GMT (Generic Mapping Tools 4.5.6) in such a way that does align with Google satellite or bing?
Such raster is in wgs84 and crosses two UTM zones (17 and 18 ...
0
votes
1answer
35 views
Change offset of geotiff file
I need to change the offset of some tiff files that I am exporting from Qgis.
Qgis gives them a offset of 0xbd72, while the program I need to load them in to only reades files with an offset of ...
1
vote
0answers
33 views
Error building GDAL for iOS
I've been trying to build GDAL for iOS for a while. Using the MikL shell script from this thread, I managed to start the building process, but it always gives me the same error:
In file included from ...
0
votes
1answer
68 views
Variance image in python using gdal and a running window approach
Variance image in gdal
Hi,
I want a local variance image with a 3x3 of a geospatial raster image using python. My approach so far was to read in the raster band as an array, then using matrix ...
0
votes
1answer
74 views
Python GDAL: Georeference array using other file for projection
I have an array of data, for each point I know the latitude and longitude of that point, and I'd like to write the data to a GTiff with projection taken from another file. How do I properly ...
1
vote
1answer
72 views
GDAL and OGR Virtual Format, reading *.csv file and creating shapefile of lines
I have a text file (*.csv) and have successfully defined XYZ within that file to write a shapefile of points:
ogr2ogr -f "ESRI Shapefile" testing.shp conduitout.vrt
My *.vrt file looks like this:
...
3
votes
1answer
61 views
affine_transform xy coords from gda94
I'm trying to figure out how to convert a polygon whose coordinates are in Spatial Reference GDA94 (EPSG 4283) into xy coordinates (inverse affine transformation matrix).
The following code works:
...
0
votes
0answers
37 views
GDAL GetRasterBand() function return type in python
I'm using the gdal GetRasterBand() function which returns a GDALBand object. What I want however is a GDALRasterBand Object (mostly because it has the data I need.) Is there a function that gives that ...
0
votes
0answers
32 views
efficiently slicing tiles with gdal C API
Im working a project using the gdal C api(in a block of objective-c) to slice TMS style png tiles. The code currently works, but I'm running into some trouble optimizing to run fast enough for use on ...
0
votes
0answers
28 views
using GDAL/OGR (faster)
Eventually, I was able to get the GDAL installed and compiled correctly using Visual C++ 2010.
I even tested some of its methods on some geo-referenced raster files, and it looks like that all is ...
-1
votes
1answer
106 views
Can't Install gdal on CentOS 5 [closed]
I'm really struggling with installing gdal on CentOS 5 -- I have searched and searched. Here is the output I get:
[root@1-free-fonts ~]# yum install gdal
Loaded plugins: fastestmirror
Loading mirror ...
0
votes
3answers
78 views
Multiple line shell commands using Python commands module
I'm trying to write a Python function that transforms a given coordinate system to another using gdal. Problem is that I'm trying to execute the command as one string, but in shell, I have to press ...
0
votes
0answers
36 views
`GDALAllRegister@0’ when linking GDAL to Qt
I’ve been trying desperately to link GDAL library to Qt (5.0.1) ., but didn’t succeed. I keep getting error messages every times I use a GDALl function.
#include "mainwindow.h"
#include ...
0
votes
1answer
43 views
reading , zoom and move images like remote sensing image (e.g jpg,tiff,img) by managed DX
excuse me,my english is poor however i would try to describe my questions clearly.
first i want to operate (read,zoom,move,zoom with rectangle) some image whose format like jpg,tiff and img .
i have ...
0
votes
0answers
47 views
How to build GDAL for ios?
I trying to build the GDAL library for my iOS project.
I found this thred
Incorporating GDAL/OGR into an iOS project - A quick guide , but the script given by MiKL is simply throws an "unexpected end ...
0
votes
1answer
35 views
How to read complex SAR image by GDAL?
Question above.How to get both real and imaginary band part of complex image by Gdal?
0
votes
0answers
23 views
gdal_retile.py and sqlite database
I have processed thousands of raster files and i am running gdal_retile.py and it constantly stops after running for days mainly because it encounters a raster that has illegal band that is a 1 band ...
1
vote
1answer
60 views
PHP GDAL/OGR library usage, which approach is cleaner?
I will be using gdal/ogr for a new project. I want a lean but fully functional app, so will not be using other implementations such as mapserver, because they have extraneous components that I doubt ...
1
vote
2answers
187 views
Installing GDAL with Homebrew Error
I'm currently working through Let's make a map and I'm having difficulty installing GDAL. Here's the console output:
brew doctor
Your system is raring to brew.
Toms-MacBook-Pro:~ tomstove$ brew ...
1
vote
1answer
140 views
Install rgdal library in rstudio - GDALAllRegister not found in libgdal
I'm trying to install rgdal library in Rstudio (0.97.332), using Ubuntu 12.10 (quantal) and R 2.15.1 (Roasted Marshmallows).
I have the following installed regarding gdal in Ubuntu:
$ apt-cache ...
0
votes
1answer
46 views
Error with GDAL python binding in GeoDjango Shell
I would like to use the GDAL python binding in my GeoDjango site. The aim of this is to use ogr2ogr capabilities in a script. I am on windows 7 so I have installed GDAL-1.9.2.win32-py2.7 downloaded ...
1
vote
1answer
44 views
Using GDAL directly on windows
Is there a possibility to use GDAL directly through MS_DOS? Most of the instructions I have seen requires one to install Python and its bindings.
Would it be possible to use GDAL after installing the ...
0
votes
0answers
59 views
how to read Terrasar-X data using GDAL
Question of the title.Recently using GDAL reading Terrasar—X data and dividing imaginary and real parts Like software NEST confuses me a lot.Any help and suggestion will be highly appreciated.Below is ...
0
votes
1answer
21 views
Attribute Error of different gdal version in python - gdal.RegisterAll
i've coded a small python program, which is used on varying Operating systems and with different gdal versions.
I'm using Debian Linux (Python 2.7.3 and Gdal 1.9.0) and in the beginning of my code i ...
0
votes
1answer
101 views
How to do zonal statistics on raster file based on polyon in Python?
I have a raster file and a polygon shapefile. I like to get the mean of the raster file of the area the polygon covers. I like to do this in a python standalone script. So QGIS and Starspan do not ...
0
votes
1answer
64 views
GDAL ReadAsArray does not ignore NoData Value
I am trying to read the band of a TIFF as an array. The problem is GDAL does not ignore the NoData values. Is there a way to tell GDAL to ignore it?
When I compute statistics, GDAL ignores the NoData ...
0
votes
0answers
33 views
GDAL does not ignore NoData value
I am trying to calcualate the statistics of a TIFF. The script shall ignore the NoData value, but doesn't. What causes this?
import gdal
from gdalconst import *
# register all of the drivers
...
0
votes
0answers
29 views
OGR GetX returns always zero
I am trying to get the first x-coordinates of a polygon. However I only get zero in return. What could cause that?
import os, sys, gdal, ogr
from gdalconst import *
driver = ...
0
votes
0answers
17 views
Compatibility between py2exe and GDAL for the creation of an executable file
My target is to produce a small executable (.exe) file to read shapefile format and do same easy processing. Before starting to code, I wish to know if the "OGR Simple Feature Library" (The OGR Simple ...
0
votes
2answers
53 views
Convert Point Geometry to list
I have the following script that creates a point geometry. How can I convert this point geometry to a list only containing the coordiantes to look like [258432.79138201929, 1001957.4394514663]?
...
0
votes
1answer
112 views
OGR Distance Units
I am using OGR Distance in Python to determine the shortest distance between a point and a line. My results are completely different then the ones I get using QGIS. I assume the units OGR uses depend ...
1
vote
1answer
147 views
Aggregating neighbouring pixels Python / GDAL and Numpy without interpolation
Consider we have an image of 2000 x 2000 pixels and the pixel size is 10 x 10 meters. The pixel values are also float numbers ranging from 0.00 - 10.00. This is image A.
I would like to resize image ...
1
vote
1answer
113 views
How to include shared object files in maven project
I am using an external c++ library (gdal/ogr) which creates shared object files so that java can utilize its functionality. The problem is that I am not really sure what I am supposed to do with these ...
0
votes
1answer
72 views
Postgres - Convert bytea PNG column to GeoTiff
I have loaded a massive set of tiles into a postgres database for use in a tile server. These were all loaded into bytea columns in PNG format.
I now find out that the tile server code needs these to ...





