Skip to content

Latest commit

 

History

History

CityGML2Stripper

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 

A small utility that strips a CityGML 2.0 (XML)file from its appearences and generic attributes and serializes the result back into a new CityGML (XML) file.

Installation

$ virtualenv -p python3 venv
$ . venv/bin/activate
(venv)$ pip install -r requirements.txt

Usages

  • With input files:
(venv)$ python CityGML2Stripper.py --input filename_1.gml --output output.gml
  • Optionally the --remove-building-parts flag can be added to move all BuildingPart content by copying it to its parent Building:
(venv)$ python CityGML2Stripper.py --input filename_1.gml --output output.gml --remove-building-parts