GeoQuerySet.gml(**kwargs)
Deprecated since version 1.9: Use the AsGML
function instead.
Availability: PostGIS, Oracle, SpatiaLite
Attaches a gml
attribute to every model in the queryset that contains the Geographic Markup Language (GML) representation of the geometry.
Example:
1 2 3 | >>> qs = Zipcode.objects. all ().gml() >>> print (qs[ 0 ].gml) <gml:Polygon srsName = "EPSG:4326" ><gml:OuterBoundaryIs> - 147.78711 , 70.245363 ... - 147.78711 , 70.245363 < / gml:OuterBoundaryIs>< / gml:Polygon> |
Keyword Argument | Description |
---|---|
precision | This keyword is for PostGIS only. It may be used to specify the number of significant digits for the coordinates in the GML representation – the default value is 8. |
version | This keyword is for PostGIS only. It may be used to specify the GML version used, and may only be values of 2 or 3. The default value is 2. |
Please login to continue.