Tagged Questions
0
votes
1answer
61 views
Export KML ExtendedData with OGR2OGR
I would like to export with ogr2ogr the data I have in a kml as ExtendedData
<Placemark>
<ExtendedData>
<SchemaData schemaUrl="#15540_punti">
...
8
votes
2answers
3k views
ogr2ogr converting to shapefile - how to select feature types?
Shapefiles can only have one geometry type, but many other formats (kml, geojson) can have multiple types.
When converting to shapefiles, is it possible to to tell ogr2ogr to create multiple ...
2
votes
1answer
141 views
only 1 tile visible in GE after gdal_translate -of KMLSUPEROVERLAY
I have a 3-band ASTER scene in any of several formats (PCIDISK, GeoTIFF, Imagine), already reprojected to the geographic coordinate system. I can view and manipulate the scene successfully in PCI ...
2
votes
2answers
498 views
Create a ground overlay kml from georeferenced raster
I have a world georeferenced raster (5m resolution, ~4000 x 4000 pixels) that I would like to display in google earth. I am looking for a simple and effective way to generate this kml file.
Using ...
5
votes
3answers
468 views
How to convert factfinder2.census.gov map data to KML?
I've downloaded a map from http://factfinder2.census.gov/faces/tableservices/jsf/pages/productview.xhtml?pid=DEC_10_SF1_P1 (limited to San Francisco census tracts), and I'd like to convert it to KML ...
1
vote
3answers
1k views
Read KML file with GDAL/OGR for Python
I have file : test.kml and I try to open it with GDAL/OGR (1.6) librairie in Python (2.5).
But I don't succed can you help me ?
This is my code :
from osgeo import ogr
adresse = 'test.kml'
...