Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
# coding: utf-8 | |
# python citygml_give_unique_building_ids.py filename1.gml filename2.gml ... | |
import re | |
import argparse | |
parser = argparse.ArgumentParser(description='Process CityGML files and give unique building IDs if needed.') | |
parser.add_argument("citygml_filename", nargs='+') |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/python | |
# -*- coding: utf-8 -*- | |
# | |
# Original Perl module: Regexp::Trie | |
# Original Copyright (C) 2006 by Dan Kogai | |
# | |
# This Python translation is a derivative work based on Regexp::Trie | |
# Copyright (c) 2010 by rex | |
# Copyright (c) 2017 by fcicq, atiking and EricDuminil |