MCPcopy Create free account
hub / github.com/PDAL/PDAL / PDALGTIFErrorFunction

Function PDALGTIFErrorFunction

io/private/las/Geotiff.cpp:123–136  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

121};
122
123static void PDALGTIFErrorFunction(GTIF* gt, int level, const char* msg, ...)
124{
125 va_list list;
126 (void)gt;
127
128 va_start(list, msg);
129 if( level == LIBGEOTIFF_WARNING )
130 fprintf(stderr, "GEOTIFF Warning: ");
131 else if( level == LIBGEOTIFF_ERROR )
132 fprintf(stderr, "GEOTIFF Error: ");
133 vfprintf(stderr, msg, list);
134 fprintf(stderr, "\n");
135 va_end(list);
136}
137
138} // unnamed namespace
139

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected