[gdal-dev] kml superoverlay help request

2011-04-03 Thread Brian Wilson
I received a batch of files that are in a kml format that looks like the "KML SUPEROVERLAY" that gdal supports. There is a kmz flle which when unzipped contains a batch of JPEGs and a file called doc.kml that describes them. My "gdalinfo --formats" command says "KMLSUPEROVERLAY (rwv): Kml Super Ov

[gdal-dev] FileGDB OGR driver test

2011-04-03 Thread Ragi Burhum
Hello list, I am trying to test a new version of the FileGDB driver for OGR, but I lack enough FileGDBs to test :) If you have an *ArcGIS 10* FileGDB and would like to test the FileGDB driver (and report back), feel free to grab a gdal-trunk binary I made for Windows. All I want to know is if it

[gdal-dev] Convert Shape file to GeoJSON with gdal-ruby

2011-04-03 Thread igorti
I have compiled GDAL 1.8 with ruby bindings(ruby 1.8.7) on Ubuntu 10.10. I'm trying to convert shape or tab files with code like this: require 'gdal/ogr' ds = Gdal::Ogr.open("point.shp") drv = Gdal::Ogr.get_driver_by_name("GeoJSON") drv.copy_data_source(ds, "point.json") It works perfectly fine