On 11/15/2012 12:20 AM, netcadturgay wrote:
my program reads a tif file starting left-top point. But I want to read
starting left-bottom(LowerLeft). How can I solve this problem?
Example:
band.ReadRaster(0, 0, 500, 500, pixels, 500, 500, 0, 0);
You will have to read one line at a time into the
First of all sorry for posing a question that has been asked a thousand times
before. I did a lot of research but didn't find this specific problem.
I have Linux Mint (Ubuntu) with Oracle instant client basic and SDK (11.2)
installed from .deb (via Alien). $ORACLE_HOME is set
(/usr/lib/oracle/11.2
I am also (moderately) interested in this.
From what I remember, Even once explained us that the problem is that
official Python binaries are built with VS2008 (or 9) and the GDAL from
Tamas is from VS2010 and so the dlls are incompatible. However, I did a
home built of Python with VS2010 and s
I usually struggle with the same problems over and over again. Try using
Dependency Walker (http://www.dependencywalker.com/) to see if you are missing
a library or two. I used it to determine that I was missing these two files:
msvcp100.dll
msvcr100.dll
I remember something about Micr
Hey guys,
I am using the python 2.7.3 64b, with the GDAL 64b (tried both 19 & 20
versions) under windows 7 64b, I have followed all the steps here
http://www.gis.usu.edu/~chrisg/python/2009/docs/gdal_win.pdf
and here
http://pythongisandstuff.wordpress.com/2011/07/07/installing-gdal-and-ogr-for
Hi Chris,
On 15.11.2012, at 1:15, Chris Barker wrote:
>> I just created index bounding boxes for
>> all the NOAA BSB charts using GDAL
>
> Exacltly how did you use GDAL for this?
I use GDAL as library. So I have a code which scans all the files and requests
bounding boxes.
>> for my Android s
All,
I'm trying to use ogr2ogr to convert data from a non-spatial table (has X & Y
values) in an Oracle database (1) to a spatial format in a different Oracle
database (2). This will be scheduled to run daily to overwrite the table in
Oracle database (2) each time.
I have it working using a og