Ticket #2491 (closed defect: invalid)
GetGeometryType does not work on geometries retrieved from a VRT data source
| Reported by: | jbronn | Owned by: | warmerdam |
|---|---|---|---|
| Priority: | normal | Milestone: | |
| Component: | OGR_SF | Version: | 1.5.2 |
| Severity: | normal | Keywords: | vrt geometrytype |
| Cc: |
Description
Given a VRT file (test.vrt):
<OGRVRTDataSource> <OGRVRTLayer name="test"> <SrcDataSource relativeToVRT="1">test.csv</SrcDataSource> <GeometryType>wkbPoint</GeometryType> <GeometryField encoding="PointFromColumns" x="POINT_X" y="POINT_Y" z="NUM"/> </OGRVRTLayer> </OGRVRTDataSource>
With the following CSV data set (test.csv):
POINT_X,POINT_Y,NUM 1.0,2.0,5 5.0,23.0,17 100.0,523.5,23
Any geometry pulled from this VRT data source will have an invalid geometry type number. This script demonstrates the problem:
from osgeo import ogr ds = ogr.Open('test.vrt') lyr = ds[0] for feat in lyr: geom = feat.geometry() print geom.GetGeometryType(), geom.GetGeometryName()
The script produces the following output:
-2147483647 POINT -2147483647 POINT -2147483647 POINT
Change History
Note: See
TracTickets for help on using
tickets.
