MCPcopy Create free account
hub / github.com/MapServer/MapServer / gmlEndGeometryContainer

Function gmlEndGeometryContainer

mapgml.c:110–120  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

108}
109
110static void gmlEndGeometryContainer(FILE *stream, char *name, char *namespace, const char *tab)
111{
112 const char *tag_name=OWS_GML_DEFAULT_GEOMETRY_NAME;
113
114 if(name) tag_name = name;
115
116 if(namespace)
117 msIO_fprintf(stream, "%s</%s:%s>\n", tab, namespace, tag_name);
118 else
119 msIO_fprintf(stream, "%s</%s>\n", tab, tag_name);
120}
121
122/* GML 2.1.2 */
123static int gmlWriteGeometry_GML2(FILE *stream, gmlGeometryListObj *geometryList, shapeObj *shape, const char *srsname, char *namespace, char *tab)

Callers 2

gmlWriteGeometry_GML2Function · 0.85
gmlWriteGeometry_GML3Function · 0.85

Calls 1

msIO_fprintfFunction · 0.85

Tested by

no test coverage detected