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

Function gmlStartGeometryContainer

mapgml.c:98–108  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

96}
97
98static void gmlStartGeometryContainer(FILE *stream, char *name, char *namespace, const char *tab)
99{
100 const char *tag_name=OWS_GML_DEFAULT_GEOMETRY_NAME;
101
102 if(name) tag_name = name;
103
104 if(namespace)
105 msIO_fprintf(stream, "%s<%s:%s>\n", tab, namespace, tag_name);
106 else
107 msIO_fprintf(stream, "%s<%s>\n", tab, tag_name);
108}
109
110static void gmlEndGeometryContainer(FILE *stream, char *name, char *namespace, const char *tab)
111{

Callers 2

gmlWriteGeometry_GML2Function · 0.85
gmlWriteGeometry_GML3Function · 0.85

Calls 1

msIO_fprintfFunction · 0.85

Tested by

no test coverage detected