-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathclasses.py
More file actions
27 lines (21 loc) · 1.04 KB
/
classes.py
File metadata and controls
27 lines (21 loc) · 1.04 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# collection of CityGML namespaces for file creation and getting versions of inputed files
class CGML1:
core = 'http://www.opengis.net/citygml/1.0'
gen = 'http://www.opengis.net/citygml/generics/1.0'
grp = 'http://www.opengis.net/citygml/cityobjectgroup/1.0'
app = 'http://www.opengis.net/citygml/appearance/1.0'
bldg = 'http://www.opengis.net/citygml/building/1.0'
gml = 'http://www.opengis.net/gml'
xal = 'urn:oasis:names:tc:ciq:xsdschema:xAL:2.0'
xlink = 'http://www.w3.org/1999/xlink'
xsi = 'http://www.w3.org/2001/XMLSchema-instance'
class CGML2:
core = 'http://www.opengis.net/citygml/2.0'
gen = 'http://www.opengis.net/citygml/generics/2.0'
grp = 'http://www.opengis.net/citygml/cityobjectgroup/2.0'
app = 'http://www.opengis.net/citygml/appearance/2.0'
bldg = 'http://www.opengis.net/citygml/building/2.0'
gml = 'http://www.opengis.net/gml'
xal = 'urn:oasis:names:tc:ciq:xsdschema:xAL:2.0'
xlink = 'http://www.w3.org/1999/xlink'
xsi = 'http://www.w3.org/2001/XMLSchema-instance'