I know that a number of format-specific options can be set as environment
variables so they don't have to be specified on the command line
(TIFF_USE_OVR, GTIFF_IGNORE_READ_ERRORS). Is there a way to set defaults
for other format-specific dataset creation options (for geotiff, TILED=YES,
COMPRESS=L
Another thing that might speed up access is setting the config option
GDAL_DISABLE_READDIR_ON_OPEN
= TRUE, either as an environment variable or on the command line. That
should help with GDAL reading the directory each time it opens a dataset.
I have an application which reads one value from each
The GDAL bindings for Go have moved to github.com/lukeroth/gdal to simplify
usage with Go's dependency management. You should now be able to 'import "
github.com/lukeroth/gdal" without having to rename any directories or
packages.
Thanks,
Luke
___
gdal-d
Thanks, I just noticed that when I pulled the code to a new machine.
I've renamed the repository to
https://github.com/lukeroth/gdal_go to avoid the problem.
Luke
On Thu, Oct 4, 2012 at 12:57 AM, minux wrote:
>
> On Oct 4, 2012 2:46 AM, "Luke Roth" wrote:
>> set
x27;ll take a look at the GDAL Trac pages, although I might wait until
I've had a chance to fill in some of the missing areas and add to the
(currently pretty minimal) documentation.
Luke
On Wed, Oct 3, 2012 at 6:02 PM, Even Rouault
wrote:
> Le mercredi 03 octobre 2012 20:46:10, Luke
For any who are interested, I've published a (incomplete, but growing)
set of GDAL bindings for the Go language at
https://github.com/lukeroth/gdal.go .
The bindings cover most of the GDAL C API, the OGR C API is next.
More details are available at the Github page. Let me know if you
find them use
Hi everybody,
I've been working on writing an image viewer using GDAL, and I'd like
to take advantage of the block cache to avoid keeping multiple copies
of things in memory where I can. I'm currently using the
GetLockedBlockRef() function, which works well, but can sometimes lead
to large delays