> > Is there any way how to set names also for geometry tags? Similar to > > properties, eg. > > > > <PropertyDefn> > > > > <Name>myname</Name> > > <ElementPath>tagname</ElementPath> > > > > </PropertyDefn> > > > > I would like to name them without 'geometry|' part... > > Hum, this isn't yet possible, but I can try to see if I can add support for > that.
Done. See http://trac.osgeo.org/gdal/changeset/27132 The syntax is : <GMLFeatureClassList> <GMLFeatureClass> <Name>LAYER</Name> <ElementPath>LAYER</ElementPath> <GeomPropertyDefn> <Name>geometry</Name> <-- OGR geometry name --> <ElementPath>geometry</ElementPath> <!-- XML element name possibly with '|' to specify the path --> <Type>MultiPolygon</Type> </GeomPropertyDefn> <GeomPropertyDefn> <Name>referencePoint</Name> <ElementPath>referencePoint</ElementPath> <Type>Point</Type> </GeomPropertyDefn> </GMLFeatureClass> </GMLFeatureClassList> Even -- Geospatial professional services http://even.rouault.free.fr/services.html
_______________________________________________ gdal-dev mailing list [email protected] http://lists.osgeo.org/mailman/listinfo/gdal-dev
