Skip to content

Instantly share code, notes, and snippets.

@hugoledoux
Created April 12, 2014 19:19
Show Gist options
  • Save hugoledoux/10551979 to your computer and use it in GitHub Desktop.
Save hugoledoux/10551979 to your computer and use it in GitHub Desktop.
Excerpt from a CityGML file containing one building modelled as a <gml:MultiSurface>
<?xml version="1.0" encoding="utf-8"?>
<CityModel ... >
<cityObjectMember>
<bldg:Building>
<bldg:lod1MultiSurface>
<gml:MultiSurface>
<gml:surfaceMember>
<gml:Polygon>
<gml:exterior>
<gml:LinearRing>
<gml:pos>0.8 0.2 0.2</gml:pos>
<gml:pos>0.9 0.3 0.2</gml:pos>
<gml:pos>0.5 0.5 0.2</gml:pos>
<gml:pos>0.8 0.2 0.2</gml:pos>
</gml:LinearRing>
</gml:exterior>
</gml:Polygon>
</gml:surfaceMember>
<gml:surfaceMember>
...
</gml:surfaceMember>
...
</gml:MultiSurface>
</bldg:lod1MultiSurface>
</bldg:Building>
</cityObjectMember>
</CityModel>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment