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

Function toMetadata

pdal/PDALUtils.hpp:198–206  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

196
197
198inline MetadataNode toMetadata(const BOX2D& bounds)
199{
200 MetadataNode output("bbox");
201 output.add("minx", bounds.minx);
202 output.add("miny", bounds.miny);
203 output.add("maxx", bounds.maxx);
204 output.add("maxy", bounds.maxy);
205 return output;
206}
207
208inline MetadataNode toMetadata(const BOX3D& bounds)
209{

Callers 4

extractMetadataMethod · 0.85
doneMethod · 0.85
toMetadataMethod · 0.85
dumpSummaryMethod · 0.85

Calls 1

addMethod · 0.45

Tested by

no test coverage detected