GeoObject.xid.xml
3.08 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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
<?xml version="1.0" encoding="UTF-8" ?>
<specification xmlns="https://xid.location.studio/schema/V1.0.0/XtensibleInterfaceDefinition.xsd"
xmlns:xid="https://xid.location.studio/schema/V1.0.0/XtensibleInterfaceDefinition.xsd"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="https://xid.location.studio/schema/V1.0.0/XtensibleInterfaceDefinition.xsd https://xid.location.studio/schema/V1.0.0/XtensibleInterfaceDefinition.xsd"
identity="GeoObject.xid.xml">
<title>Common Geo Object Definitions. </title>
<comment>This file defines commonly used structures and enumerations used throughout the GeoTracker system.</comment>
<!-- Include all known definitions -->
<import ref="https://xid.location.studio/Tensor/V1.0.0/Definitions.xid.xml" local="Definitions.xid.xml" />
<import ref="https://xid.location.studio/GeoSpatial/V1.0/SpatialDefs.xid.xml" local="SpatialDefs.xid.xml" />
<import ref="https://xid.location.studio/GeoSpatial/V1.0/Address.xid.xml" local="Address.xid.xml" />
<import ref="https://xid.location.studio/GeoSpatial/V1.0/Shape.xid.xml" local="Shape.xid.xml" />
<namespace name="GeoSpatial">
<using namespace="Tensor"/>
<!--
*************************************
* GeoObject Definition.
*************************************
-->
<struct name="GeoObject" type="Object" rttkey="GeoSpatial.ObjectType.GeoObject">
<comment>Defines the base 3D Geo Object comprising id, bounding box, and various other base information. GeoObjects are
not simple shapes. They have identity, temporal validity, and modification attributes.</comment>
<elem name="bounds" type="GeoSpatial.BoundingBox" multiplicity="1" ord="23">
<comment>Bounding box defining the maximum bounds for this GeoObject in WGS84 reference frame.</comment>
</elem>
<elem name="floorMin" type="int16" multiplicity="1" default="0" ord="24">
<comment>Defines the minimum floor number associated with the minimum bounds of the bounding box.</comment>
</elem>
<elem name="floorMax" type="int16" multiplicity="1" default="0" ord="25">
<comment>Defines the maximum floor number associated with the maximum bounds of the bounding box.</comment>
</elem>
<elem name="shape" type="GeoSpatial.Shape" multiplicity ="0..1" ord="26">
<comment>
Optional shape defining more detailed boundary of the GeoObject. This shape must be contained
entirely within the bounding box.
</comment>
</elem>
<elem name="address" type="GeoSpatial.AddressInfo" multiplicity="0..1" ord="28">
<comment>Optional address associated with the GeoObject.</comment>
</elem>
<elem name="validBegin" type="datetime" multiplicity="0..1" ord="29">
<comment>Optional time stamp denoting beginning validity.</comment>
</elem>
<elem name="validEnd" type="datetime" multiplicity="0..1" ord="30">
<comment>Optional time stamp denoting ending validity.</comment>
</elem>
</struct>
</namespace>
</specification>