Skip to content
This repository has been archived by the owner on Sep 5, 2022. It is now read-only.

Commit

Permalink
Version reporting in the XMLs
Browse files Browse the repository at this point in the history
  • Loading branch information
fbiljecki committed Mar 11, 2015
1 parent 7a36f16 commit 45692bf
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion generateCityGML.py
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ def storeCityGML(suffix):
citygmlFile = open(fname, "w")
#-- Header of the XML
citygmlFile.write("<?xml version=\"1.0\" encoding=\"utf-8\"?>\n")
citygmlFile.write("<!-- Generated by Random3Dcity (http://github.com/tudelft3d/Random3Dcity), a tool developed by Filip Biljecki at TU Delft. Version: 2015-02-18. -->\n")
citygmlFile.write("<!-- Generated by Random3Dcity (http://github.com/tudelft3d/Random3Dcity), a tool developed by Filip Biljecki at TU Delft. Version: 2015-03-11. -->\n")
# citygmlFile.write(citygml)
citygmlFile.write(citygml.decode('utf-8'))
citygmlFile.close()
Expand Down
2 changes: 1 addition & 1 deletion randomiseCity.py
Original file line number Diff line number Diff line change
Expand Up @@ -1015,7 +1015,7 @@ def vegetationgenerator(specs, CELLSIZE, vgcells, n):
SpecFile = open(fname, "w")
#-- Add the header to be politically correct
SpecFile.write("<?xml version=\"1.0\" encoding=\"utf-8\"?>\n")
SpecFile.write("<!-- Generated by Random3Dcity (http://github.com/tudelft3d/Random3Dcity), a tool developed by Filip Biljecki at TU Delft. Version: 2015-02-18. -->\n")
SpecFile.write("<!-- Generated by Random3Dcity (http://github.com/tudelft3d/Random3Dcity), a tool developed by Filip Biljecki at TU Delft. Version: 2015-03-11. -->\n")
#SpecFile.write(buildings)
SpecFile.write(buildings.decode('utf-8'))
SpecFile.close()
Expand Down

0 comments on commit 45692bf

Please sign in to comment.