d(ogr.FieldDefn("title", ogr.OFTString))
feature = ogr.Feature(layer.GetLayerDefn())
feature.SetField("title", data[0]["title"])
feature.SetField("id", data[0]["id"])
feature.SetGeometryDirectly(ogr.CreateGeometryFromWkt("POINT (%d %d)" %
(data[0
Hello,
I am trying to tile cache an ArcSDE Raster using gdal2tiles. I have other tile caches already created with specific a bounding box and resolutions. How can I use gdal2tiles to build a tile cache with these same parameters?
I tried create a VRT with the specific bounding box: