a7595abc by Pavan Sabbineni

Switching to local XIDs in slam core repo for further improvements

1 parent b235e214
<?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="CommonDefs.xid.xml">
<title>SLAM Common Definitions</title>
<comment>This file defines commonly used structures and enumerations used throughout the SLAM system.</comment>
<!-- Include used definitions -->
<import ref="https://xid.location.studio/HPE/V1.2/HpeCore.xid.xml" local="HpeCore.xid.xml" />
<namespace name="SLAM">
<using namespace="HPE"/>
<using namespace="Tensor"/>
<!--
*************************************
* Enumerations
*************************************
-->
<enum name="CoordRefFrameType" type="Tensor.int8" default="unknown">
<comment>Enumerations defines the supported coordinate reference frames</comment>
<literal name="unknown" value="0"></literal>
<literal name="WGS84" value="1"></literal>
<literal name="ENU" value="2"></literal>
<literal name="NED" value="3"></literal>
</enum>
<!--
*************************************
* HashKey Definition.
*************************************
-->
<type name="HashKey" size="12">
<comment>12 byte hashkey for reference point identifiers.</comment>
<!-- <lang name="c" type="UUID" include="SLAM/CXMF/haskey.h"/> -->
<lang name="cpp" type="::SLAM::HashKey" include="SLAM/HashKey.h"/>
<!--
<lang name="java" type="SlamHasKey" include="com.comtechtel.tensor.SLAM.Hashkey"/>
<lang name="node" type=" SlamHasKey "/>
-->
</type>
<!--
*************************************
* BoundingBox Definition.
*************************************
-->
<struct name="BoundingBox" pack="true">
<comment>defines the bounding box parameters</comment>
<elem name="latmin" type="Tensor.float64" multiplicity="1" >
<comment>minimum value of the latitude</comment>
</elem>
<elem name="latmax" type="Tensor.float64" multiplicity="1" >
<comment>maximum value of the latitude</comment>
</elem>
<elem name="lonmin" type="Tensor.float64" multiplicity="1" >
<comment>minimum value of the longitude</comment>
</elem>
<elem name="lonmax" type="Tensor.float64" multiplicity="1" >
<comment>maximum value of the longitude</comment>
</elem>
<elem name="altmin" type="Tensor.float64" multiplicity="1" >
<comment>minimum value of the altitude</comment>
</elem>
<elem name="altmax" type="Tensor.float64" multiplicity="1" >
<comment>maximum value of the altitude</comment>
</elem>
</struct>
<!--
*************************************
* ContactInfo Definition.
*************************************
-->
<struct name="ContactInfo">
<elem name="givenname" multiplicity ="1" type="string" >
<comment>Contact given (first) name. Default is empty.</comment>
</elem>
<elem name="surname" multiplicity ="1" type="string" >
<comment>Contact surname (last name). Default is empty.</comment>
</elem>
<elem name="email" multiplicity ="1" type="string" >
<comment>Contact email address.</comment>
</elem>
<elem name="phone" multiplicity ="1" type="string" >
<comment>Contact phone number.</comment>
</elem>
</struct>
<!--
*************************************
* AddressInfo Definition.
*************************************
-->
<struct name="AddressInfo">
<elem name="address1" multiplicity ="1" type="string">
<comment>First line street address.</comment>
</elem>
<elem name="address2" multiplicity ="0..1" type="string">
<comment>Second line street address.</comment>
</elem>
<elem name="City" multiplicity ="1" type="string">
<comment>Name of City.</comment>
</elem>
<elem name="StateRegion" multiplicity ="1" type="string">
<comment>State or region. Two character state definitions ok for U.S. addresses. Default is empty.</comment>
</elem>
<elem name="PostalCode" multiplicity ="1" type="string">
<comment>Postal code or zip code.</comment>
</elem>
<elem name="Country" multiplicity ="1" type="string">
<comment>Name of the country.</comment>
</elem>
</struct>
<!--
*************************************
* SurveyInfo Definition.
*************************************
-->
<struct name="SurveyInfo">
<comment>General information about the survey.</comment>
<elem name="name" multiplicity ="1" type="string" >
<comment>Optional name to describe the identify of the survey</comment>
</elem>
<elem name="flrmax" multiplicity ="1" type="int8" default ="0">
<comment>Optional maximum floor identifier, default is zero meaning the ground floor</comment>
</elem>
<elem name="flrmin" multiplicity ="1" type="int8" default ="0">
<comment>Optional minimum floor identifier, default is zero meaning the ground floor</comment>
</elem>
<elem name="appid" multiplicity ="1" type="string" >
<comment>Application identifier used to collect the survey data. Default is empty "".</comment>
</elem>
<elem name="appver" multiplicity ="1" type="string" >
<comment>Application version used to collect the survey data. Default is empty "".</comment>
</elem>
<elem name="createdate" type="datetime" multiplicity="1">
<comment>Date and time the survey was created or conducted.</comment>
</elem>
<elem name="contact" multiplicity ="0..1" type="ContactInfo" >
<comment>Optional contact information.</comment>
</elem>
<elem name="address" multiplicity ="0..1" type="AddressInfo" >
<comment>Optional address information.</comment>
</elem>
<elem name="datestart" type="datetime" multiplicity="0..1">
<comment>Date and time of when this survey is valid. Do not define if unknown.</comment>
</elem>
<elem name="dateend" type="datetime" multiplicity="0..1">
<comment>Last date and time of when this survey is valid. Do not define if unknown.</comment>
</elem>
</struct>
<!--
*************************************
* PointOfInterest Definition.
*************************************
-->
<struct name="PointOfInterest">
<elem name="name" multiplicity ="1" type="string">
<comment>Name of the point of interest.</comment>
</elem>
<elem name="floor" multiplicity ="1" type="int16" default ="0">
<comment>Optional floor identifier, default is zero meaning the ground floor</comment>
</elem>
<elem name="description" multiplicity ="1" type="string">
<comment>Other information describing the point of interest.</comment>
</elem>
<elem name="location" multiplicity="1" type="Shape" polymorphic="true" >
<comment>
Location of the POI. Polymorphic type, see specializationsfrom Shape for details.
</comment>
</elem>
<elem name="confidence" type="float32" multiplicity="1">
<comment>Confidence of position shape. Valid range is 0.0 to 1.0</comment>
</elem>
<elem name="address" multiplicity ="0..1" type="AddressInfo" >
<comment>Optional address information.</comment>
</elem>
<elem name="contact" multiplicity ="0..1" type="ContactInfo" >
<comment>Optional contact information.</comment>
</elem>
</struct>
<!--
*************************************
* SurveyRecord Definition.
*************************************
-->
<struct name="SurveyRecord" >
<comment>A Survey Record.</comment>
<elem name="state" multiplicity="1" type="StateInfo">
<comment>
Required device position and other state information. At least one of
observations or state is required, otherwise there is insufficient data to process.
</comment>
</elem>
<elem name="floor" multiplicity="1" type ="int8" default="0">
<comment>The floor number of this scan</comment>
</elem>
<elem name="observations" multiplicity="1" type="ObservationSet" >
<comment>
Optional Set of observation data encoded in the format specified by encObs.\n
At least one of observations or state is required,
otherwise there is insufficient data to process.
</comment>
</elem>
</struct>
<!--
*************************************
* SurveyData Definition.
*************************************
-->
<struct name ="SurveyData">
<elem name ="surveyid" type="Tensor.UUID" multiplicity="1" >
<comment>Identifies the unique id of the survey</comment>
</elem>
<elem name ="part" type="int32" multiplicity="1" default="0">
<comment>Zero based part index of survey indicating data is in parts.</comment>
</elem>
<elem name ="type" type="uri" multiplicity="1">
<comment>Type uri, provides information on the type of survey. This can indicate a variety of things and is used for search.</comment>
</elem>
<elem name ="source" type="uri" multiplicity="1">
<comment>Source uri, provides information on how survey data was sourced, potentially ownership.</comment>
</elem>
<elem name ="veracity" type="float32" multiplicity="1">
<comment>Veracity of the survey data contained. This is a measure between 0 and 1 about the quality and trustworthiness of the data collected. Veracity of 1 is the highest trust.</comment>
</elem>
<elem name="info" multiplicity="1" type="SurveyInfo">
<comment>
Optional survey information.
</comment>
</elem>
<elem name="records" multiplicity="0..*" type="SurveyRecord">
<comment>
Survey record(s) collected by the survey.
</comment>
</elem>
<elem name="pois" multiplicity="0..*" type="PointOfInterest">
<comment>
Points of interest collected by the survey.
</comment>
</elem>
</struct>
</namespace>
</specification>
<?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="ProbeApi.xid.xml">
<title>SLAM Probe API Specifications</title>
<comment>
This file defines the SLAM Probe API. The probe API is used to load one or more probe data records from a single device.
</comment>
<!-- Include used definitions -->
<import ref="https://xid.location.studio/HPE/V1.2/HpeGnss.xid.xml" local="HpeGnss.xid.xml" />
<import ref="https://xid.location.studio/HPE/V1.2/HpeCellular.xid.xml" local="HpeCellular.xid.xml" />
<import ref="https://xid.location.studio/HPE/V1.2/HpeWiFi.xid.xml" local="HpeWiFi.xid.xml" />
<import ref="https://xid.location.studio/Tensor/V1.0.0/ApiBase.xid.xml" local="SLAM/ApiBase.xid.xml" />
<import ref="https://xid.location.studio/ILP/SLAM/V1.0.0_alpha/TileDefinitions.xid.xml" local="SLAM/TileDefinitions.xid.xml" />
<namespace name="SLAM">
<using namespace="HPE"/>
<using namespace="Tensor"/>
<enum name="DeviceClass" type="Tensor.int8" default="undefined">
<comment>
Device class enumeration specifies the class or primary use of the device.
This allows probe data recorded to be analyzed by classes of devices.
</comment>
<literal name ="undefined" value="0"/>
<literal name ="mobileSmartphone" value="1"/>
<literal name ="mobilePad" value="2"/>
<literal name ="mobileTablet" value="3"/>
<literal name ="mobileOther" value="4"/>
<literal name ="iotTag" value="5"/>
<literal name ="iotComm" value="6"/>
<literal name ="iotStatic" value="7"/>
<literal name ="iotOther" value="8"/>
<literal name ="autoTrack" value="9"/>
<literal name ="autoNav" value="10"/>
<literal name ="autoOther" value="11"/>
</enum>
<struct name="ProbeRecord">
<comment>
A record capturing RF and otherinformation at a specified location. Probe records are captured
as part of probe data collected by probe devices.
</comment>
<elem name="state" multiplicity="1" type="StateInfo">
<comment>
Required device position and other state information. At least one of
observations or state is required, otherwise there is insufficient data to process.
</comment>
</elem>
<elem name="floor" multiplicity="1" type ="int8" default="0">
<comment>The floor number of this scan</comment>
</elem>
<elem name="obsset" multiplicity="1" type="ObservationSet" >
<comment>
Set of observation data containing the probe measurements.
</comment>
</elem>
<elem name="name" multiplicity ="0..1" type="string">
<comment>Optional Name of this probe location.</comment>
</elem>
<elem name="description" multiplicity ="0..1" type="string">
<comment>Optional human readable description.</comment>
</elem>
<elem name="address" multiplicity ="0..1" type="AddressInfo" >
<comment>Optional address information.</comment>
</elem>
<elem name="contact" multiplicity ="0..1" type="ContactInfo" >
<comment>
Optional contact information. These are for probes locations typically associated with
a business or public entity that has associated contact information.
</comment>
</elem>
<elem name="data" multiplicity ="0..1" type="Tensor.json">
<comment>Optional other information describing this probe location in json format.</comment>
</elem>
</struct>
<struct name ="ProbeSourceInfo">
<comment>
Structure contains information about the probe data source.
</comment>
<elem name="classDevice" multiplicity="1" type="DeviceClass" >
<comment>Required field specifies the class of device used to collect the probe data.</comment>
</elem>
<elem name="modelDevice" multiplicity ="1" type="Tensor.string">
<comment>String defining a device</comment>
</elem>
<elem name="mfgDevice" multiplicity ="1" type="Tensor.string">
<comment>Optional device manufacturer information.</comment>
</elem>
<elem name="osNameVer" multiplicity ="1" type="Tensor.uri">
<comment>Operating system name use the format [os: e.g. windows, android, iphone, custom]/[version: information]/[language]/[etc].</comment>
</elem>
<elem name="appNameVer" multiplicity ="1" type="Tensor.string">
<comment>Specifies the application/library name with version information with the following format.[app name]/[ver].</comment>
</elem>
<elem name="idUser" multiplicity ="0..1" type="Tensor.string">
<comment>Optional user identifier.</comment>
</elem>
<elem name="keySource" multiplicity="0..1" type="Tensor.string">
<comment>Optional source key identifier, provides public key value to assist in authentication of probe information.</comment>
</elem>
</struct>
<!--
*******************************************************
Probe Submission API
*******************************************************
-->
<interface name="Probe">
<comment>Interface for submitting RF probe data.</comment>
<operation name="Submit">
<comment>
Interaction submits probe data and outputs responds with operation result.
</comment>
<input name="input" type="Tensor.InputBase" sid="0x1032">
<elem name="captureDate" type="datetime" multiplicity="1">
<comment>General date and time probe data was captured.</comment>
</elem>
<elem name="encoding" multiplicity="0..1" type="EncodingFormat" default="0" >
<comment>
Probe data and source information encoding format. Probe records may be passed to the service in
an encoding format different than that outer wire format. This can protect sensitive data.
By default wire protocol native format is assumed.
</comment>
</elem>
<elem name="sourceInfo" type="ProbeSourceInfo" multiplicity="0..1" encoding ="encoding">
<comment>
Optional source information. If not provided, probe data will ultimately have a low veracity score. If at all possible
probe data should have source information. The system correlates source data with other known sources to calculate veracity.
</comment>
</elem>
<elem name="probes" multiplicity ="0..*" type="ProbeRecord" encoding ="encoding">
<comment>Zero or more probe records encoded in the specified format.</comment>
</elem>
</input>
</operation>
</interface>
</namespace>
</specification>
# SLAM XIDs #
SLAM XIDs do not encode their ordinals (i.e. tags and offets). XIDData.prop is required to maintain backward compatibility.
## Generate / Verify XIDData.prop ##
~~~sh
$ java -Xnoclassgc -jar $XIDSDK/bin/xidcg.jar \
-v \
-prop https://xid.location.studio/Tensor/V1.0.0/XIDData.prop \
-prop https://xid.location.studio/HPE/V1.2/XIDData.prop \
-prop https://xid.location.studio/ILP/SLAM/V1.0.0_alpha/XIDData.prop \
https://xid.location.studio/ILP/SLAM/V1.0.0_alpha/CommonDefs.xid.xml \
https://xid.location.studio/ILP/SLAM/V1.0.0_alpha/ReferenceData.xid.xml \
https://xid.location.studio/ILP/SLAM/V1.0.0_alpha/TileDefinitions.xid.xml \
https://xid.location.studio/ILP/SLAM/V1.0.0_alpha/SurveyApi.xid.xml \
https://xid.location.studio/ILP/SLAM/V1.0.0_alpha/ProbeApi.xid.xml \
https://xid.location.studio/ILP/SLAM/V1.0.0_alpha/TileManagementApi.xid.xml \
https://xid.location.studio/ILP/SLAM/V1.0.0_alpha/TileServiceApi.xid.xml
OR
$ java -Xnoclassgc -jar $XIDSDK/bin/xidcg.jar \
-v \
-prop ../../Tensor/V1.0.0/XIDData.prop \
-prop ../../HPE/V1.2/XIDData.prop \
-prop XIDData.prop \
CommonDefs.xid.xml \
ReferenceData.xid.xml \
TileDefinitions.xid.xml \
SurveyApi.xid.xml \
ProbeApi.xid.xml \
TileManagementApi.xid.xml \
TileServiceApi.xid.xml
~~~
If xidcg reports:
~~~
Generating: xidout/meta/XID/XIDData.prop
~~~
Then something has changed and XIDData.prop needs to get updated.
<?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="ReferenceData.xid.xml">
<title>SLAM Tile reference data</title>
<comment>This file defines the SLAM tile refeence definitions and related data types.</comment>
<!-- Include all known definitions -->
<import ref="https://xid.location.studio/HPE/V1.2/HpeGnss.xid.xml" local="HpeGnss.xid.xml" />
<import ref="https://xid.location.studio/HPE/V1.2/HpeCellular.xid.xml" local="HpeCellular.xid.xml" />
<import ref="https://xid.location.studio/HPE/V1.2/HpeWiFi.xid.xml" local="HpeWiFi.xid.xml" />
<import ref="https://xid.location.studio/ILP/SLAM/V1.0.0_alpha/CommonDefs.xid.xml" local="SLAM/Commondefs.xid.xml" />
<namespace name="SLAM">
<using namespace="HPE"/>
<using namespace="Tensor"/>
<using namespace="HPE.WiFi"/>
<using namespace="HPE.Cellular"/>
<enum name="RefPointSyncStatus" type="Tensor.int8" default ="sync_required">
<comment>synchronization status of the reference point</comment>
<literal name="sync_required" value="0"/>
<literal name="in_sync" value="1"/>
</enum>
<enum name="RefPointUseStatus" type="Tensor.int8" default ="unknown">
<comment>use status of the reference point</comment>
<literal name="unknown" value="0"/>
<literal name="outdated" value="1"/>
<literal name="valid" value="2"/>
<literal name="quarantined" value="3"/>
<literal name="invalid" value="4"/>
<literal name="deprecated" value="5"/>
<literal name="discardable" value="6"/>
</enum>
<enum name="RefPointType" type="Tensor.int8" default="undefined">
<comment>Specifies the format of the Reference data.</comment>
<literal name="undefined" value="0"/>
<literal name="RF" value="1"/>
<literal name="Cellular" value="2"/>
<literal name="Wifi" value="3"/>
<literal name="Bluetooth" value="4"/>
<literal name="GenericRF" value="5"/>
</enum>
<struct name="RefPoint" >
<comment>defines the base structure of a reference point</comment>
<elem name="type" type="RefPointType" multiplicity="1" rttd="true">
<comment>Identifies the format/type of the reference data.</comment>
</elem>
<elem name="id" multiplicity="1" type="HashKey" >
<comment>a unique hash of the reference data format and reference point identifier, which is different, depending on the type of the Reference point</comment>
</elem>
<elem name="position" multiplicity="0..1" type="Spheroid" >
<comment>the estimated position of the access point</comment>
</elem>
<elem name ="veracity" multiplicity="1" type="Tensor.float32">
<comment>The veracity of the reference point, 1= 100% trusted and validated, 0% not trusted at all.</comment>
</elem>
<elem name="usestatus" multiplicity="1" type="RefPointUseStatus">
<comment>status of the reference point</comment>
</elem>
<elem name="validbegin" type="datetime" multiplicity="1">
<comment>time stamp of the begining of the valid period</comment>
</elem>
<elem name="validend" type="datetime" multiplicity="1">
<comment>time stamp of the ending of the valid period</comment>
</elem>
<elem name ="data" type="Tensor.json" multiplicity="0..1">
<comment>json formatted data specific to the device</comment>
</elem>
<elem name="floor" multiplicity ="0..1" type="int8" >
<comment>Optional floor identifier, default is zero meaning the ground floor</comment>
</elem>
</struct>
<!-- ReferencePoint -->
<struct name="RFRefPoint" type="RefPoint" rttkey="SLAM.RefPointType.RF">
<comment>structure defines a reference Point.</comment>
<elem name="txpwr" type="Tensor.float32" multiplicity="1">
<comment>transmission power</comment>
</elem>
<elem name="attenuation" type="Tensor.float32" multiplicity="1">
<comment> attenuation exponent</comment>
</elem>
<elem name="freq" type="Tensor.float32" multiplicity="1">
<comment> radio frequency of the reference in Hz</comment>
</elem>
</struct>
<struct name="WifiRefPoint" type="RFRefPoint" rttkey="SLAM.RefPointType.Wifi">
<elem name="ssid" type="HPE.WiFi.SSID" multiplicity="1">
<comment>ssid of the access point</comment>
</elem>
<elem name ="macaddr" type="mac48" multiplicity="1">
<comment>the mac address of the access point</comment>
</elem>
</struct>
<struct name="BluetoothRefPoint" type="RFRefPoint" rttkey="SLAM.RefPointType.Bluetooth">
<elem name="ssid" type="Tensor.string" multiplicity="1">
<comment>ssid of the access point</comment>
</elem>
<elem name ="macaddr" type="Tensor.string" multiplicity="1">
<comment>the mac address of the access point</comment>
</elem>
</struct>
<struct name="CellularRefPoint" type="RFRefPoint" rttkey="SLAM.RefPointType.Cellular">
<elem name ="cid" type="CellId" multiplicity="1"/>
<elem name ="antenna" type="AntennaSpec" multiplicity="1"/>
</struct>
<struct name="GenericRFRefPoint" type="RFRefPoint" rttkey="SLAM.RefPointType.GenericRF">
<elem name="uri" type="Tensor.uri" multiplicity="1">
<comment>identifier that determines the genericRF type and unique identifier. encoded into the hash key</comment>
</elem>
</struct>
<struct name="RefPointSet">
<comment>a set of reference points</comment>
<elem name="refpoints" type="RefPoint" multiplicity="0..*" polymorphic="true"/>
</struct>
</namespace>
</specification>
<?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="SurveyApi.xid.xml">
<title>SLAM Survey API Specifications</title>
<comment>
This file defines the SLAM survey API. The survey API is used to bulk load high-definition survey
data from one or more probe data sets.
</comment>
<!-- Include all known definitions -->
<import ref="https://xid.location.studio/HPE/V1.2/HpeGnss.xid.xml" local="HpeGnss.xid.xml" />
<import ref="https://xid.location.studio/HPE/V1.2/HpeCellular.xid.xml" local="HpeCellular.xid.xml" />
<import ref="https://xid.location.studio/HPE/V1.2/HpeWiFi.xid.xml" local="HpeWiFi.xid.xml" />
<import ref="https://xid.location.studio/Tensor/V1.0.0/ApiBase.xid.xml" local="piBase.xid.xml" />
<import ref="https://xid.location.studio/ILP/SLAM/V1.0.0_alpha/TileDefinitions.xid.xml" local="SLAM/TileDefinitions.xid.xml" />
<namespace name="SLAM">
<using namespace="HPE"/>
<using namespace="Tensor"/>
<!--
*******************************************************
Survey Submission API
*******************************************************
-->
<interface name="Survey">
<comment>Interface for submitting SLAM compliant survey data.</comment>
<operation name="Submit">
<comment>
Interaction submits survey data and outputs submission result and UUID.
</comment>
<input name="input" type="Tensor.InputBase" sid="0x1030">
<elem name="survey" multiplicity="1" type="SurveyData"></elem>
</input>
<output name="output" type="Tensor.OutputBase" sid="0x1031">
<comment>Survey submission output returns status and UUID of the submitted survey.</comment>
<elem name="id" multiplicity="1" type="Tensor.UUID"/>
</output>
</operation>
<operation name="Download">
<comment>Downloads survey data given id.</comment>
<input name="input" type="Tensor.InputBase" sid="0x1032">
<elem name="id" multiplicity="1" type="Tensor.UUID">
<comment>UUID of Survey set.</comment>
</elem>
<elem name="part" multiplicity="1" type="Tensor.int32" default="-1">
<comment>Survey part id of interest. Default value is -1, which will return </comment>
</elem>
</input>
<output name="output" type="Tensor.OutputBase" sid="0x1033">
<comment>Survey download output data structure contains a zero or more surveys.</comment>
<elem name="surveys" multiplicity="0..*" type="SurveyData"></elem>
</output>
</operation>
</interface>
</namespace>
</specification>
<?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="TileDefinitions.xid.xml">
<title>SLAM Tile Definitions</title>
<comment>This file defines the SLAM tile definitions and related data types.</comment>
<!-- Include all known definitions -->
<import ref="https://xid.location.studio/ILP/SLAM/V1.0.0_alpha/CommonDefs.xid.xml" local="SLAM/CommonDefs.xid.xml" />
<namespace name="SLAM">
<using namespace="HPE"/>
<using namespace="Tensor"/>
<!--
*************************************
* Enumerations
*************************************
-->
<enum name="TileType" type="Tensor.int8" default="Unknown">
<comment>Tile data processing status.</comment>
<literal name="Unknown" value="0"/>
<literal name="SparseMeasurementTile" value="1"/>
<literal name="GridModelTile" value="2"/>
<literal name="AggregateTile" value="3"/>
</enum>
<enum name="TileStatus" type="Tensor.int8" default="Unknown">
<comment>Tile data processing status.</comment>
<literal name="Unknown" value="0"/>
<literal name="Unprocessed" value="1"/>
<literal name="Processed" value="2"/>
</enum>
<enum name="ComputationalMethod" type="Tensor.int8" default="Unknown">
<comment>Data computational method associated with data contained within the tile.</comment>
<literal name="Unknown" value="0"/>
<literal name="GridSmoothing" value="1"/>
<literal name="GaussianProcess" value="2"/>
</enum>
<!--
*************************************
* Tile definition.
*************************************
-->
<struct name="Tile" >
<comment>defines the base structure of a tile</comment>
<elem name="type" type="TileType" multiplicity="1" rttd="true">
<comment>identify the type of the tile</comment>
</elem>
<elem name ="tileid" type="Tensor.UUID" multiplicity="1" >
<comment>Identifies the unique id of the tile</comment>
</elem>
<elem name="createdate" type="datetime" multiplicity="1">
<comment>time stamp of tile creation</comment>
</elem>
<elem name="lastmodified" type="datetime" multiplicity="1">
<comment>time stamp of last modification</comment>
</elem>
<elem name="bounding" multiplicity="1" type="BoundingBox" >
<comment> Bounding of the tile</comment>
</elem>
<elem name="floormin" type="int8" multiplicity="1" >
<comment>Identifies the minimum floor number</comment>
</elem>
<elem name="floormax" type="int8" multiplicity="1" >
<comment>Identifies the maximum floor number</comment>
</elem>
<elem name="revision" type="Tensor.uint32" multiplicity="1">
<comment>revision number</comment>
</elem>
<elem name="datatype" multiplicity="1" type="ObservationType" >
<comment>The type of the observation data within the tile .</comment>
</elem>
<elem name="status" type="TileStatus" multiplicity="1" >
<comment>Identifies the data processing status within the tile</comment>
</elem>
<elem name="method" type="ComputationalMethod" multiplicity="1" >
<comment>Identifies the data processing method within the tile</comment>
</elem>
<elem name="source" type="Tensor.uri" multiplicity="1">
<comment>URI identifies the source of the information provided.</comment>
</elem>
<elem name="label" type="Tensor.string" multiplicity="0..1" >
<comment>label of the tile</comment>
</elem>
<elem name="validbegin" type="datetime" multiplicity="1">
<comment>time stamp of tile creation</comment>
</elem>
<elem name="validend" type="datetime" multiplicity="1">
<comment>time stamp of tile creation</comment>
</elem>
</struct>
<!--
*************************************
* SparseMeasurementTile definition.
*************************************
-->
<struct name="SparseMeasurementTile" type="Tile" rttkey="SLAM.TileType.SparseMeasurementTile">
<comment>The tile is the unit of management for RF reference data, which can overlap, intersect, or be disjoint with other tiles</comment>
<!-- Contained Type Definitions -->
<struct name="RfData" pack="true">
<comment>Each RF data value is an observed/estimated value of a particular RF signal reference and at a particular position.</comment>
<elem name="idxPos" type ="Tensor.uint16" multiplicity="1">
<comment>index of the Position element.</comment>
</elem>
<elem name="value" type="Tensor.byte" multiplicity="1">
<comment>The RF signal strengh value in scaled units where unscaled scaled value = (value + dataOffset)/dataScale.</comment>
</elem>
<elem name="reserved" type="Tensor.byte" multiplicity="1">
<comment>Reserved storage space.</comment>
</elem>
</struct>
<struct name="Position" pack="true">
<comment>Each position element represents the physical location of one or more measurements</comment>
<elem name="x" type="Tensor.int24" multiplicity="1">
<comment>x component of the location of the tile data record</comment>
</elem>
<elem name="y" type="Tensor.int24" multiplicity="1">
<comment>y component of the location of the tile data record</comment>
</elem>
<elem name="z" type="Tensor.int24" multiplicity="1">
<comment>z component of the location of the tile data record</comment>
</elem>
<elem name="ux" type="Tensor.uint8" multiplicity="1">
<comment>uncertainty of x component of the locations</comment>
</elem>
<elem name="uy" type="Tensor.uint8" multiplicity="1">
<comment>uncertainty of y component of the locations</comment>
</elem>
<elem name="uz" type="Tensor.uint8" multiplicity="1">
<comment>uncertainty of z component of the locations</comment>
</elem>
<elem name="floor" type="Tensor.int8" multiplicity="1" default="0">
<comment> the floor number of the measurement record</comment>
</elem>
</struct>
<struct name="RfReference" pack="true">
<comment>Each RfRerence element identifies a specific RF Reference Point</comment>
<elem name="idRef" type="HashKey" multiplicity="1">
<comment>UUID of the reference point</comment>
</elem>
<elem name="start" type="Tensor.uint16" multiplicity="1">
<comment>start index in the RfData array</comment>
</elem>
<elem name="end" type="Tensor.uint16" multiplicity="1">
<comment>end index in the RFData array.</comment>
</elem>
</struct>
<array name="RfReferenceArray" type="RfReference"/>
<array name="RfDataArray" type="RfData"/>
<array name="PositionArray" type="Position"/>
<!-- Structure Element Definitions -->
<elem name="reframe" type="CoordRefFrameType" multiplicity="1">
<comment>The type of coordinate frame of the relative locations in the records.</comment>
</elem>
<elem name="posRef" type="Point3D" multiplicity="1">
<comment>
The reference position of the tile. In the specified coordinate system. Typically
WGS84.
</comment>
</elem>
<elem name="posUncertScale" type="Tensor.float32" multiplicity="1" default="1">
<comment>The scale of the location uncertainty in Position data.</comment>
</elem>
<elem name="dataScale" type="Tensor.float32" multiplicity="1" default="1">
<comment>The scale of the measurement in measurement record.</comment>
</elem>
<elem name="dataOffset" type="Tensor.float32" multiplicity="1" default="0">
<comment>The unscaled offset of the unscaled RfData value.</comment>
</elem>
<elem name="references" type="RfReferenceArray" multiplicity="1"/>
<elem name="rfdata" type="RfDataArray" multiplicity="1"/>
<elem name="positions" type="PositionArray" multiplicity="1"/>
</struct>
<!--
*************************************
* TileSet definition.
*************************************
-->
<struct name="TileSet">
<comment>A set of tiles in an unpacked list.</comment>
<elem name="tiles" type="Tile" multiplicity="0..*" polymorphic="true"/>
</struct>
<!--
*************************************
* SpatialIndex definition.
*************************************
-->
<struct name="SpatialIndex" >
<comment> </comment>
<elem name="sourceuri" multiplicity="1" type="Tensor.uri" >
<comment> </comment>
</elem>
<elem name="tileid" multiplicity="1" type="Tensor.UUID" >
<comment>The UUID of the tile </comment>
</elem>
<elem name="bounding" multiplicity="1" type="BoundingBox" >
<comment> Bounding of the tile</comment>
</elem>
<elem name="floormin" type="int8" multiplicity="1" >
<comment>Identifies the minimum floor number</comment>
</elem>
<elem name="floormax" type="int8" multiplicity="1" >
<comment>Identifies the maximum floor number</comment>
</elem>
<elem name="datatype" multiplicity="1" type="ObservationType" >
<comment>The type of the observation data within the tile .</comment>
</elem>
<elem name="createdate" type="datetime" multiplicity="1">
<comment>time stamp of tile creation</comment>
</elem>
<elem name="lastmodified" type="datetime" multiplicity="1">
<comment>time stamp of last modification</comment>
</elem>
<elem name="validbegin" type="datetime" multiplicity="1">
<comment>time stamp of tile creation</comment>
</elem>
<elem name="validend" type="datetime" multiplicity="1">
<comment>time stamp of tile creation</comment>
</elem>
</struct>
<!--
*************************************
* ElementIndex Definition.
*************************************
-->
<struct name="RefPointIndex" >
<comment> </comment>
<elem name="id" multiplicity="1" type="HashKey" >
<comment> </comment>
</elem>
<elem name="sourceUri" multiplicity="1" type="Tensor.uri" >
<comment> </comment>
</elem>
<elem name="type" multiplicity="1" type="RefPointType" >
<comment> </comment>
</elem>
<elem name="position" multiplicity="1" type="Spheroid">
<comment> coarse location of the tile</comment>
</elem>
<elem name="floor" type="int8" multiplicity="1" >
<comment>Identifies the floor number</comment>
</elem>
<elem name="useStatus" type="RefPointUseStatus" multiplicity="1" >
<comment>Identifies the status of the validity</comment>
</elem>
<elem name="createdate" type="datetime" multiplicity="1">
<comment>time stamp of tile creation</comment>
</elem>
<elem name="lastmodified" type="datetime" multiplicity="1">
<comment>time stamp of last modification</comment>
</elem>
</struct>
</namespace>
</specification>
<?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="TileManagementApi.xid.xml">
<title>SLAM Tile Management API Specifications</title>
<comment>This file defines the SLAM tile management API.</comment>
<!-- Include all known definitions -->
<import ref="https://xid.location.studio/Tensor/V1.0.0/ApiBase.xid.xml" local="ApiBase.xid.xml" />
<import ref="https://xid.location.studio/ILP/SLAM/V1.0.0_alpha/ReferenceData.xid.xml" local="SLAM/ReferenceData.xid.xml" />
<import ref="https://xid.location.studio/ILP/SLAM/V1.0.0_alpha/TileDefinitions.xid.xml" local="SLAM/TileDefinitions.xid.xml" />
<namespace name="SLAM">
<using namespace="HPE"/>
<using namespace="Tensor"/>
<!--
*******************************************************
Tile Management API
*******************************************************
-->
<interface name="TileManagement">
<comment>Interface for submitting a new tile to the DB. </comment>
<operation name="DeleteTile">
<comment>
Interaction to delete a tile.
</comment>
<input name="input" type="Tensor.InputBase" sid="0x101b">
<comment>defines the input data for DeleteTile operation</comment>
<elem name="tileid" type="Tensor.UUID" multiplicity="1" >
<comment>element specifies UUID of the the tile</comment>
</elem>
</input>
</operation>
<operation name="UploadTile">
<comment>interation to upload a tile</comment>
<input name="input" type="Tensor.InputBase" sid="0x102b">
<comment>defines the input data structure for UploadTile operation</comment>
<elem name="tile" type="Tile" multiplicity="1">
<comment>the tile structure</comment>
</elem>
</input>
</operation>
<operation name="UpdateTile">
<comment>interation to update a tile</comment>
<input name="input" type="Tensor.InputBase" sid="0x103b">
<comment>defines the input data structure for UpdateTile operation</comment>
<elem name="tile" type="Tile" multiplicity="1">
<comment>the tile structure</comment>
</elem>
</input>
</operation>
</interface>
</namespace>
</specification>
<?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="TileServiceApi.xid.xml">
<title>Tile Services API Specifications</title>
<comment>This file defines the SLAM tile services API.</comment>
<!-- Include all known definitions -->
<import ref="https://xid.location.studio/HPE/V1.2/HpeGnss.xid.xml" local="HpeGnss.xid.xml" />
<import ref="https://xid.location.studio/HPE/V1.2/HpeCellular.xid.xml" local="HpeCellular.xid.xml" />
<import ref="https://xid.location.studio/HPE/V1.2/HpeWiFi.xid.xml" local="HpeWiFi.xid.xml" />
<import ref="https://xid.location.studio/Tensor/V1.0.0/ApiBase.xid.xml" local="ApiBase.xid.xml" />
<import ref="https://xid.location.studio/ILP/SLAM/V1.0.0_alpha/TileDefinitions.xid.xml" local="SLAM/TileDefinitions.xid.xml" />
<namespace name="SLAM">
<using namespace="HPE"/>
<using namespace="Tensor"/>
<interface name="TileService">
<comment>Interface for tile service. </comment>
<!-- DownloadTile operation-->
<operation name="DownloadTile">
<comment>Interaction download a tile</comment>
<input name="input" type="Tensor.InputBase" sid="0x101a">
<comment>defines the input data structure for DownloadTile operation </comment>
<elem name="tileid" type="Tensor.UUID" multiplicity="1" >
<comment>element specifies UUID of the the tile</comment>
</elem>
</input>
<output name="output" type="Tensor.OutputBase" sid="0x102a">
<comment>defines the output data for DownloadTile operation</comment>
<elem name="tile" type="Tile" multiplicity="0..1" >
<comment>element defines the downloaded tile</comment>
</elem>
</output>
</operation>
<!-- FindTilesByBoundingbox operation -->
<operation name="FindTilesByBoundingbox">
<comment>find tiles</comment>
<input name="input" type="Tensor.InputBase" sid="0x103a">
<comment>defines the input data for FindTilesByBoundingbox operation </comment>
<elem name="bounding" type="BoundingBox" multiplicity="1">
<comment>the bounding box that intersect with tiles</comment>
</elem>
<elem name="floor" type="Tensor.int16" multiplicity="0..1">
<comment>optional floor number for more precise search</comment>
</elem>
</input>
<output name="output" type="Tensor.OutputBase" sid="0x104a">
<comment>defines the output data for FindTilesByBoundingbox operation</comment>
<elem name="tiles" type="TileSet" multiplicity="0..1">
<comment>a set of tiles as the result of the FindTilesByPos operation</comment>
</elem>
</output>
</operation>
<!-- FindTilesByRefId operation -->
<operation name="FindTilesByRefId">
<comment>find tiles</comment>
<input name="input" type="Tensor.InputBase" sid="0x103a">
<comment>defines the input data for FindTilesByRefId operation </comment>
<elem name="refids" type="Tensor.string" multiplicity="1..*">
<comment>the bounding box that intersect with tiles</comment>
</elem>
<elem name="floor" type="Tensor.int16" multiplicity="0..1">
<comment>optional floor number for more precise search</comment>
</elem>
<elem name="signaltype" type="ObservationType" multiplicity="1">
<comment>the radio type of the reference points</comment>
</elem>
</input>
<output name="output" type="Tensor.OutputBase" sid="0x104a">
<comment>defines the output data for FindTilesByRefId operation</comment>
<elem name="tiles" type="TileSet" multiplicity="0..1">
<comment>a set of tiles as the result of the FindTilesByPos operation</comment>
</elem>
</output>
</operation>
<!-- EstimatePosition operation -->
<operation name="EstimatePosition">
<comment> estimate posiion from a set of Wifi rssi observations</comment>
<input name="input" type="Tensor.InputBase" sid="0x106a">
<comment>input for EstimatePosition operation</comment>
<elem name="observations" type="ObservationSet" multiplicity="1">
<comment>a set of observed rssi values</comment>
</elem>
</input>
<output name="output" type="Tensor.OutputBase" sid="0x107a">
<comment>output for EstimatePosition operation</comment>
<elem name="pos" type="Shape" multiplicity="0..*" polymorphic="true">
<comment>approximate position of the tile</comment>
</elem>
</output>
</operation>
</interface>
</namespace>
</specification>
Idx.HPE.Arc.direction=3
Idx.HPE.Arc.inner=2
Idx.HPE.Arc.opening=4
Idx.HPE.Arc.outer=1
Idx.HPE.Arc3D.direction=4
Idx.HPE.Arc3D.height=1
Idx.HPE.Arc3D.inner=3
Idx.HPE.Arc3D.opening=5
Idx.HPE.Arc3D.outer=2
Idx.HPE.ArcBand.direction=6
Idx.HPE.ArcBand.major_inner=2
Idx.HPE.ArcBand.major_outer=1
Idx.HPE.ArcBand.minor_inner=4
Idx.HPE.ArcBand.minor_outer=3
Idx.HPE.ArcBand.opening=7
Idx.HPE.ArcBand.orient=5
Idx.HPE.ArcBand3D.direction=2
Idx.HPE.ArcBand3D.height=1
Idx.HPE.ArcBand3D.opening=4
Idx.HPE.ArcBand3D.radius=6
Idx.HPE.ArcBand3D.tilt=3
Idx.HPE.ArcBand3D.vopening=5
Idx.HPE.BLE.BLERss.mac=1
Idx.HPE.BLE.BLERss.rss=2
Idx.HPE.BLE.BLERssExt.Tx=1
Idx.HPE.BLE.BLERssExt.channel=2
Idx.HPE.Cellular.AntennaSpec.RTTCalib=10
Idx.HPE.Cellular.AntennaSpec.RTTCalibUncert=11
Idx.HPE.Cellular.AntennaSpec.TxPower=8
Idx.HPE.Cellular.AntennaSpec.direction=3
Idx.HPE.Cellular.AntennaSpec.frequency=9
Idx.HPE.Cellular.AntennaSpec.height=2
Idx.HPE.Cellular.AntennaSpec.opening=5
Idx.HPE.Cellular.AntennaSpec.radius=7
Idx.HPE.Cellular.AntennaSpec.sectorid=1
Idx.HPE.Cellular.AntennaSpec.tilt=4
Idx.HPE.Cellular.AntennaSpec.vopening=6
Idx.HPE.Cellular.CellAntReferenceData.antenna=2
Idx.HPE.Cellular.CellAntReferenceData.cid=1
Idx.HPE.Cellular.CellAntReferenceData.location=3
Idx.HPE.Cellular.CellId.cid=6
Idx.HPE.Cellular.CellId.lac=5
Idx.HPE.Cellular.CellId.mcc=3
Idx.HPE.Cellular.CellId.mnc=4
Idx.HPE.Cellular.CellId.mncLength=2
Idx.HPE.Cellular.CellId.rtype=1
Idx.HPE.Cellular.CellLocInfo.alt=3
Idx.HPE.Cellular.CellLocInfo.lat=1
Idx.HPE.Cellular.CellLocInfo.lon=2
Idx.HPE.Cellular.CellLocInfo.radius=4
Idx.HPE.Cellular.CellLocInfo.vert=5
Idx.HPE.Cellular.CellularObservation.cid=1
Idx.HPE.Cellular.GenericInfo.rss=1
Idx.HPE.Cellular.GenericInfo.rssUncert=2
Idx.HPE.Cellular.GenericInfo.service=6
Idx.HPE.Cellular.GenericInfo.taHighPart=4
Idx.HPE.Cellular.GenericInfo.taLowPart=3
Idx.HPE.Cellular.GenericInfo.taUncert=5
Idx.HPE.Cellular.LteRssInfo.nprb=3
Idx.HPE.Cellular.LteRssInfo.rsrp=1
Idx.HPE.Cellular.LteRssInfo.rsrq=2
Idx.HPE.Cellular.LteTimeAdvanceInfo.aoa=3
Idx.HPE.Cellular.LteTimeAdvanceInfo.ta=2
Idx.HPE.Cellular.LteTimeAdvanceInfo.tamode=1
Idx.HPE.Cellular.LteTimeAdvanceInfo.uerxtx=4
Idx.HPE.Cellular.MSISDNObservation.cc=1
Idx.HPE.Cellular.MSISDNObservation.nsn=2
Idx.HPE.Cellular.MeasuredResultInfo.cpichEcNO=3
Idx.HPE.Cellular.MeasuredResultInfo.cpichRSCP=2
Idx.HPE.Cellular.MeasuredResultInfo.deltaRSCP=5
Idx.HPE.Cellular.MeasuredResultInfo.dupmode=1
Idx.HPE.Cellular.MeasuredResultInfo.pathloss=4
Idx.HPE.Cellular.NMRInfo.arfcn=1
Idx.HPE.Cellular.NMRInfo.bsic=2
Idx.HPE.Cellular.NMRInfo.rxlevel=3
Idx.HPE.Cellular.RttInfo.exrtt=5
Idx.HPE.Cellular.RttInfo.quality=3
Idx.HPE.Cellular.RttInfo.rtt=4
Idx.HPE.Cellular.RttInfo.rxtxtime=2
Idx.HPE.Cellular.RttInfo.tamode=1
Idx.HPE.Cellular.TimeAdvance.ta=1
Idx.HPE.Circle.radius=1
Idx.HPE.Covariance.covariance=2
Idx.HPE.Covariance.referenceframe=3
Idx.HPE.Covariance.state=1
Idx.HPE.Ellipse.major=1
Idx.HPE.Ellipse.minor=2
Idx.HPE.Ellipse.orient=3
Idx.HPE.Ellipsoid.major=1
Idx.HPE.Ellipsoid.minor=2
Idx.HPE.Ellipsoid.orient=3
Idx.HPE.Ellipsoid.vert=4
Idx.HPE.Gnss.AcqAssistElem.CodeCount=5
Idx.HPE.Gnss.AcqAssistElem.azimuth=7
Idx.HPE.Gnss.AcqAssistElem.codephase=4
Idx.HPE.Gnss.AcqAssistElem.doppler0=2
Idx.HPE.Gnss.AcqAssistElem.doppler1=3
Idx.HPE.Gnss.AcqAssistElem.elevation=8
Idx.HPE.Gnss.AcqAssistElem.id=1
Idx.HPE.Gnss.AcqAssistElem.searchWindow=6
Idx.HPE.Gnss.Almanac.M0=11
Idx.HPE.Gnss.Almanac.Omega0=9
Idx.HPE.Gnss.Almanac.OmegaDot=4
Idx.HPE.Gnss.Almanac.SvHealth=12
Idx.HPE.Gnss.Almanac.af0=5
Idx.HPE.Gnss.Almanac.af1=6
Idx.HPE.Gnss.Almanac.deltai0=3
Idx.HPE.Gnss.Almanac.eccentricity=7
Idx.HPE.Gnss.Almanac.id=1
Idx.HPE.Gnss.Almanac.omega=10
Idx.HPE.Gnss.Almanac.sqrtA=8
Idx.HPE.Gnss.Almanac.toa=2
Idx.HPE.Gnss.CodephaseMeasurement.mpathIndicator=1
Idx.HPE.Gnss.CodephaseMeasurement.rmsErr=2
Idx.HPE.Gnss.CodephaseMeasurementMin.cn0=2
Idx.HPE.Gnss.CodephaseMeasurementMin.codephase=4
Idx.HPE.Gnss.CodephaseMeasurementMin.doppler=3
Idx.HPE.Gnss.CodephaseMeasurementMin.id=1
Idx.HPE.Gnss.Ephemeris.Cic=14
Idx.HPE.Gnss.Ephemeris.Cis=13
Idx.HPE.Gnss.Ephemeris.Crc=16
Idx.HPE.Gnss.Ephemeris.Crs=15
Idx.HPE.Gnss.Ephemeris.Cuc=18
Idx.HPE.Gnss.Ephemeris.Cus=17
Idx.HPE.Gnss.Ephemeris.M0=10
Idx.HPE.Gnss.Ephemeris.Omega0=8
Idx.HPE.Gnss.Ephemeris.OmegaDot=6
Idx.HPE.Gnss.Ephemeris.SvHealth=25
Idx.HPE.Gnss.Ephemeris.TGD=24
Idx.HPE.Gnss.Ephemeris.af0=21
Idx.HPE.Gnss.Ephemeris.af1=22
Idx.HPE.Gnss.Ephemeris.af2=23
Idx.HPE.Gnss.Ephemeris.deltan=11
Idx.HPE.Gnss.Ephemeris.eccentricity=4
Idx.HPE.Gnss.Ephemeris.i0=5
Idx.HPE.Gnss.Ephemeris.id=1
Idx.HPE.Gnss.Ephemeris.idot=12
Idx.HPE.Gnss.Ephemeris.iodc=20
Idx.HPE.Gnss.Ephemeris.iode=3
Idx.HPE.Gnss.Ephemeris.omega=9
Idx.HPE.Gnss.Ephemeris.sqrtA=7
Idx.HPE.Gnss.Ephemeris.toc=19
Idx.HPE.Gnss.Ephemeris.toe=2
Idx.HPE.Gnss.GpsCodePhaseObs8.measurements=1
Idx.HPE.Gnss.GpsCodePhaseObsMin6.measurements=1
Idx.HPE.Gnss.GpsCodePhaseObsMin8.measurements=1
Idx.HPE.Gnss.IonosphericCorrection.a0=1
Idx.HPE.Gnss.IonosphericCorrection.a1=2
Idx.HPE.Gnss.IonosphericCorrection.a2=3
Idx.HPE.Gnss.IonosphericCorrection.a3=4
Idx.HPE.Gnss.IonosphericCorrection.b0=5
Idx.HPE.Gnss.IonosphericCorrection.b1=6
Idx.HPE.Gnss.IonosphericCorrection.b2=7
Idx.HPE.Gnss.IonosphericCorrection.b3=8
Idx.HPE.Gnss.PseudorangeObservation.cn0=6
Idx.HPE.Gnss.PseudorangeObservation.id=1
Idx.HPE.Gnss.PseudorangeObservation.mpathIndicator=7
Idx.HPE.Gnss.PseudorangeObservation.pr=3
Idx.HPE.Gnss.PseudorangeObservation.prUncert=5
Idx.HPE.Gnss.PseudorangeObservation.prr=2
Idx.HPE.Gnss.PseudorangeObservation.prrUncert=4
Idx.HPE.Gnss.SatelliteId.constellation=1
Idx.HPE.Gnss.SatelliteId.id=2
Idx.HPE.Gnss.UtcParameters.DN=7
Idx.HPE.Gnss.UtcParameters.DeltaTls=3
Idx.HPE.Gnss.UtcParameters.DeltaTlsf=8
Idx.HPE.Gnss.UtcParameters.WNlsf=6
Idx.HPE.Gnss.UtcParameters.WNt=5
Idx.HPE.Gnss.UtcParameters.a0=1
Idx.HPE.Gnss.UtcParameters.a1=2
Idx.HPE.Gnss.UtcParameters.tot=4
Idx.HPE.Observation.type=1
Idx.HPE.ObservationEpoch.epoch=1
Idx.HPE.Point2D.lat=1
Idx.HPE.Point2D.lon=2
Idx.HPE.Point3D.alt=1
Idx.HPE.ReferenceData.format=1
Idx.HPE.Shape.type=1
Idx.HPE.Spheroid.radius=1
Idx.HPE.Spheroid.vert=2
Idx.HPE.WiFi.WiFiRss.macaddr=2
Idx.HPE.WiFi.WiFiRss.rss=1
Idx.HPE.WiFi.WiFiRssExt.freq=2
Idx.HPE.WiFi.WiFiRssExt.ssid=1
Idx.HPE.WiFi.WiFiRssExt.uncert=3
Idx.SLAM.BoundingBox.altmax=6
Idx.SLAM.BoundingBox.altmin=5
Idx.SLAM.BoundingBox.latmax=2
Idx.SLAM.BoundingBox.latmin=1
Idx.SLAM.BoundingBox.lonmax=4
Idx.SLAM.BoundingBox.lonmin=3
Idx.SLAM.SparseMeasurementTile.Position.floor=7
Idx.SLAM.SparseMeasurementTile.Position.ux=4
Idx.SLAM.SparseMeasurementTile.Position.uy=5
Idx.SLAM.SparseMeasurementTile.Position.uz=6
Idx.SLAM.SparseMeasurementTile.Position.x=1
Idx.SLAM.SparseMeasurementTile.Position.y=2
Idx.SLAM.SparseMeasurementTile.Position.z=3
Idx.SLAM.SparseMeasurementTile.RfData.idxPos=1
Idx.SLAM.SparseMeasurementTile.RfData.reserved=3
Idx.SLAM.SparseMeasurementTile.RfData.value=2
Idx.SLAM.SparseMeasurementTile.RfReference.end=3
Idx.SLAM.SparseMeasurementTile.RfReference.idRef=1
Idx.SLAM.SparseMeasurementTile.RfReference.start=2
Off.HPE.Arc.direction=25
Off.HPE.Arc.inner=21
Off.HPE.Arc.opening=29
Off.HPE.Arc.outer=17
Off.HPE.Arc3D.direction=37
Off.HPE.Arc3D.height=25
Off.HPE.Arc3D.inner=33
Off.HPE.Arc3D.opening=41
Off.HPE.Arc3D.outer=29
Off.HPE.ArcBand.direction=37
Off.HPE.ArcBand.major_inner=21
Off.HPE.ArcBand.major_outer=17
Off.HPE.ArcBand.minor_inner=29
Off.HPE.ArcBand.minor_outer=25
Off.HPE.ArcBand.opening=41
Off.HPE.ArcBand.orient=33
Off.HPE.ArcBand3D.direction=29
Off.HPE.ArcBand3D.height=25
Off.HPE.ArcBand3D.opening=37
Off.HPE.ArcBand3D.radius=45
Off.HPE.ArcBand3D.tilt=33
Off.HPE.ArcBand3D.vopening=41
Off.HPE.BLE.BLERss.mac=9
Off.HPE.BLE.BLERss.rss=15
Off.HPE.BLE.BLERssExt.Tx=16
Off.HPE.BLE.BLERssExt.channel=17
Off.HPE.Cellular.AntennaSpec.RTTCalib=42
Off.HPE.Cellular.AntennaSpec.RTTCalibUncert=46
Off.HPE.Cellular.AntennaSpec.TxPower=26
Off.HPE.Cellular.AntennaSpec.direction=6
Off.HPE.Cellular.AntennaSpec.frequency=34
Off.HPE.Cellular.AntennaSpec.height=2
Off.HPE.Cellular.AntennaSpec.opening=14
Off.HPE.Cellular.AntennaSpec.radius=22
Off.HPE.Cellular.AntennaSpec.sectorid=0
Off.HPE.Cellular.AntennaSpec.tilt=10
Off.HPE.Cellular.AntennaSpec.vopening=18
Off.HPE.Cellular.CellAntReferenceData.antenna=13
Off.HPE.Cellular.CellAntReferenceData.cid=1
Off.HPE.Cellular.CellAntReferenceData.location=63
Off.HPE.Cellular.CellId.cid=8
Off.HPE.Cellular.CellId.lac=6
Off.HPE.Cellular.CellId.mcc=2
Off.HPE.Cellular.CellId.mnc=4
Off.HPE.Cellular.CellId.mncLength=1
Off.HPE.Cellular.CellId.rtype=0
Off.HPE.Cellular.CellLocInfo.alt=16
Off.HPE.Cellular.CellLocInfo.lat=0
Off.HPE.Cellular.CellLocInfo.lon=8
Off.HPE.Cellular.CellLocInfo.radius=24
Off.HPE.Cellular.CellLocInfo.vert=28
Off.HPE.Cellular.CellularObservation.cid=9
Off.HPE.Cellular.GenericInfo.rss=21
Off.HPE.Cellular.GenericInfo.rssUncert=25
Off.HPE.Cellular.GenericInfo.service=31
Off.HPE.Cellular.GenericInfo.taHighPart=28
Off.HPE.Cellular.GenericInfo.taLowPart=26
Off.HPE.Cellular.GenericInfo.taUncert=29
Off.HPE.Cellular.LteRssInfo.nprb=23
Off.HPE.Cellular.LteRssInfo.rsrp=21
Off.HPE.Cellular.LteRssInfo.rsrq=22
Off.HPE.Cellular.LteTimeAdvanceInfo.aoa=24
Off.HPE.Cellular.LteTimeAdvanceInfo.ta=22
Off.HPE.Cellular.LteTimeAdvanceInfo.tamode=21
Off.HPE.Cellular.LteTimeAdvanceInfo.uerxtx=26
Off.HPE.Cellular.MSISDNObservation.cc=1
Off.HPE.Cellular.MSISDNObservation.nsn=3
Off.HPE.Cellular.MeasuredResultInfo.cpichEcNO=23
Off.HPE.Cellular.MeasuredResultInfo.cpichRSCP=22
Off.HPE.Cellular.MeasuredResultInfo.deltaRSCP=25
Off.HPE.Cellular.MeasuredResultInfo.dupmode=21
Off.HPE.Cellular.MeasuredResultInfo.pathloss=24
Off.HPE.Cellular.NMRInfo.arfcn=21
Off.HPE.Cellular.NMRInfo.bsic=23
Off.HPE.Cellular.NMRInfo.rxlevel=25
Off.HPE.Cellular.RttInfo.exrtt=27
Off.HPE.Cellular.RttInfo.quality=24
Off.HPE.Cellular.RttInfo.rtt=25
Off.HPE.Cellular.RttInfo.rxtxtime=22
Off.HPE.Cellular.RttInfo.tamode=21
Off.HPE.Cellular.TimeAdvance.ta=21
Off.HPE.Circle.radius=17
Off.HPE.Covariance.covariance=65
Off.HPE.Covariance.referenceframe=577
Off.HPE.Covariance.state=1
Off.HPE.Ellipse.major=17
Off.HPE.Ellipse.minor=21
Off.HPE.Ellipse.orient=25
Off.HPE.Ellipsoid.major=25
Off.HPE.Ellipsoid.minor=29
Off.HPE.Ellipsoid.orient=33
Off.HPE.Ellipsoid.vert=37
Off.HPE.Gnss.AcqAssistElem.CodeCount=8
Off.HPE.Gnss.AcqAssistElem.azimuth=11
Off.HPE.Gnss.AcqAssistElem.codephase=6
Off.HPE.Gnss.AcqAssistElem.doppler0=2
Off.HPE.Gnss.AcqAssistElem.doppler1=4
Off.HPE.Gnss.AcqAssistElem.elevation=12
Off.HPE.Gnss.AcqAssistElem.id=0
Off.HPE.Gnss.AcqAssistElem.searchWindow=10
Off.HPE.Gnss.Almanac.M0=21
Off.HPE.Gnss.Almanac.Omega0=15
Off.HPE.Gnss.Almanac.OmegaDot=4
Off.HPE.Gnss.Almanac.SvHealth=24
Off.HPE.Gnss.Almanac.af0=6
Off.HPE.Gnss.Almanac.af1=8
Off.HPE.Gnss.Almanac.deltai0=2
Off.HPE.Gnss.Almanac.eccentricity=10
Off.HPE.Gnss.Almanac.id=0
Off.HPE.Gnss.Almanac.omega=18
Off.HPE.Gnss.Almanac.sqrtA=12
Off.HPE.Gnss.Almanac.toa=1
Off.HPE.Gnss.CodephaseMeasurement.mpathIndicator=7
Off.HPE.Gnss.CodephaseMeasurement.rmsErr=8
Off.HPE.Gnss.CodephaseMeasurementMin.cn0=1
Off.HPE.Gnss.CodephaseMeasurementMin.codephase=4
Off.HPE.Gnss.CodephaseMeasurementMin.doppler=2
Off.HPE.Gnss.CodephaseMeasurementMin.id=0
Off.HPE.Gnss.Ephemeris.Cic=37
Off.HPE.Gnss.Ephemeris.Cis=35
Off.HPE.Gnss.Ephemeris.Crc=41
Off.HPE.Gnss.Ephemeris.Crs=39
Off.HPE.Gnss.Ephemeris.Cuc=45
Off.HPE.Gnss.Ephemeris.Cus=43
Off.HPE.Gnss.Ephemeris.M0=27
Off.HPE.Gnss.Ephemeris.Omega0=19
Off.HPE.Gnss.Ephemeris.OmegaDot=12
Off.HPE.Gnss.Ephemeris.SvHealth=58
Off.HPE.Gnss.Ephemeris.TGD=57
Off.HPE.Gnss.Ephemeris.af0=51
Off.HPE.Gnss.Ephemeris.af1=54
Off.HPE.Gnss.Ephemeris.af2=56
Off.HPE.Gnss.Ephemeris.deltan=31
Off.HPE.Gnss.Ephemeris.eccentricity=4
Off.HPE.Gnss.Ephemeris.i0=8
Off.HPE.Gnss.Ephemeris.id=0
Off.HPE.Gnss.Ephemeris.idot=33
Off.HPE.Gnss.Ephemeris.iodc=49
Off.HPE.Gnss.Ephemeris.iode=3
Off.HPE.Gnss.Ephemeris.omega=23
Off.HPE.Gnss.Ephemeris.sqrtA=15
Off.HPE.Gnss.Ephemeris.toc=47
Off.HPE.Gnss.Ephemeris.toe=1
Off.HPE.Gnss.GpsCodePhaseObs8.measurements=9
Off.HPE.Gnss.GpsCodePhaseObsMin6.measurements=9
Off.HPE.Gnss.GpsCodePhaseObsMin8.measurements=9
Off.HPE.Gnss.IonosphericCorrection.a0=0
Off.HPE.Gnss.IonosphericCorrection.a1=1
Off.HPE.Gnss.IonosphericCorrection.a2=2
Off.HPE.Gnss.IonosphericCorrection.a3=3
Off.HPE.Gnss.IonosphericCorrection.b0=4
Off.HPE.Gnss.IonosphericCorrection.b1=5
Off.HPE.Gnss.IonosphericCorrection.b2=6
Off.HPE.Gnss.IonosphericCorrection.b3=7
Off.HPE.Gnss.PseudorangeObservation.cn0=35
Off.HPE.Gnss.PseudorangeObservation.id=9
Off.HPE.Gnss.PseudorangeObservation.mpathIndicator=36
Off.HPE.Gnss.PseudorangeObservation.pr=19
Off.HPE.Gnss.PseudorangeObservation.prUncert=31
Off.HPE.Gnss.PseudorangeObservation.prr=11
Off.HPE.Gnss.PseudorangeObservation.prrUncert=27
Off.HPE.Gnss.SatelliteId.constellation=0
Off.HPE.Gnss.SatelliteId.id=1
Off.HPE.Gnss.UtcParameters.DN=11
Off.HPE.Gnss.UtcParameters.DeltaTls=7
Off.HPE.Gnss.UtcParameters.DeltaTlsf=12
Off.HPE.Gnss.UtcParameters.WNlsf=10
Off.HPE.Gnss.UtcParameters.WNt=9
Off.HPE.Gnss.UtcParameters.a0=0
Off.HPE.Gnss.UtcParameters.a1=4
Off.HPE.Gnss.UtcParameters.tot=8
Off.HPE.Observation.type=0
Off.HPE.ObservationEpoch.epoch=1
Off.HPE.Point2D.lat=1
Off.HPE.Point2D.lon=9
Off.HPE.Point3D.alt=17
Off.HPE.ReferenceData.format=0
Off.HPE.Shape.type=0
Off.HPE.Spheroid.radius=25
Off.HPE.Spheroid.vert=29
Off.HPE.WiFi.WiFiRss.macaddr=10
Off.HPE.WiFi.WiFiRss.rss=9
Off.HPE.WiFi.WiFiRssExt.freq=49
Off.HPE.WiFi.WiFiRssExt.ssid=16
Off.HPE.WiFi.WiFiRssExt.uncert=53
Off.SLAM.BoundingBox.altmax=40
Off.SLAM.BoundingBox.altmin=32
Off.SLAM.BoundingBox.latmax=8
Off.SLAM.BoundingBox.latmin=0
Off.SLAM.BoundingBox.lonmax=24
Off.SLAM.BoundingBox.lonmin=16
Off.SLAM.SparseMeasurementTile.Position.floor=12
Off.SLAM.SparseMeasurementTile.Position.ux=9
Off.SLAM.SparseMeasurementTile.Position.uy=10
Off.SLAM.SparseMeasurementTile.Position.uz=11
Off.SLAM.SparseMeasurementTile.Position.x=0
Off.SLAM.SparseMeasurementTile.Position.y=3
Off.SLAM.SparseMeasurementTile.Position.z=6
Off.SLAM.SparseMeasurementTile.RfData.idxPos=0
Off.SLAM.SparseMeasurementTile.RfData.reserved=3
Off.SLAM.SparseMeasurementTile.RfData.value=2
Off.SLAM.SparseMeasurementTile.RfReference.end=14
Off.SLAM.SparseMeasurementTile.RfReference.idRef=0
Off.SLAM.SparseMeasurementTile.RfReference.start=12
Ord.HPE.Estimate.confidence=69
Ord.HPE.Estimate.epoch=68
Ord.HPE.Estimate.obstype=66
Ord.HPE.Estimate.result=64
Ord.HPE.Estimate.shape=70
Ord.HPE.Estimate.source=65
Ord.HPE.Estimate.tic=67
Ord.HPE.Estimate.veracity=71
Ord.HPE.Gnss.AcqAssistSet.data=64
Ord.HPE.Gnss.ConstellationData.almanacs=66
Ord.HPE.Gnss.ConstellationData.constellation=64
Ord.HPE.Gnss.ConstellationData.ephemeris=67
Ord.HPE.Gnss.ConstellationData.iono=69
Ord.HPE.Gnss.ConstellationData.utc=68
Ord.HPE.Gnss.ConstellationData.week=65
Ord.HPE.Gnss.ConstellationSet.constellationData=64
Ord.HPE.InitializationReport.state=112
Ord.HPE.ObservationReport.directive=114
Ord.HPE.ObservationReport.observations=112
Ord.HPE.ObservationReport.refdata=113
Ord.HPE.ObservationSet.observations=64
Ord.HPE.PositionReport.azimuth=114
Ord.HPE.PositionReport.calctype=117
Ord.HPE.PositionReport.confidence=116
Ord.HPE.PositionReport.obstype=118
Ord.HPE.PositionReport.position=112
Ord.HPE.PositionReport.speed=113
Ord.HPE.PositionReport.veracity=115
Ord.HPE.ReferenceDataSet.id=64
Ord.HPE.ReferenceDataSet.records=65
Ord.HPE.StateInfo.azimuth=68
Ord.HPE.StateInfo.confidence=65
Ord.HPE.StateInfo.epoch=64
Ord.HPE.StateInfo.shape=66
Ord.HPE.StateInfo.source=69
Ord.HPE.StateInfo.speed=67
Ord.HPE.TaskReport.status=128
Ord.Logging.ActionMsg.category=98
Ord.Logging.ActionMsg.id=96
Ord.Logging.ActionMsg.iid=99
Ord.Logging.ActionMsg.severity=97
Ord.Logging.AppMetrics.currentCount=81
Ord.Logging.AppMetrics.failureCount=86
Ord.Logging.AppMetrics.peakCount=82
Ord.Logging.AppMetrics.peakTime=84
Ord.Logging.AppMetrics.successCount=85
Ord.Logging.AppMetrics.totalCount=80
Ord.Logging.AppMetrics.totalTime=83
Ord.Logging.DebugInfo.file=64
Ord.Logging.DebugInfo.line=65
Ord.Logging.DebugInfo.thid=66
Ord.Logging.MessageBase.data=68
Ord.Logging.MessageBase.date=65
Ord.Logging.MessageBase.debug=69
Ord.Logging.MessageBase.info=67
Ord.Logging.MessageBase.source=66
Ord.Logging.MessageBase.type=64
Ord.Logging.Metric.metricType=64
Ord.Logging.Metric.name=65
Ord.Logging.MetricMsg.duration=81
Ord.Logging.MetricMsg.metrics=82
Ord.Logging.MetricMsg.start=80
Ord.Logging.PegCount.value=80
Ord.Logging.TaskReport.duration=114
Ord.Logging.TaskReport.result=115
Ord.Logging.TaskReport.start=113
Ord.Logging.TaskReport.taskid=112
Ord.Logging.TraceMsg.level=96
Ord.Logging.TransactionMsg.acctid=82
Ord.Logging.TransactionMsg.appid=84
Ord.Logging.TransactionMsg.devid=83
Ord.Logging.TransactionMsg.etid=81
Ord.Logging.TransactionMsg.tid=80
Ord.Logging.UsageMsg.uri=96
Ord.SLAM.AddressInfo.City=66
Ord.SLAM.AddressInfo.Country=69
Ord.SLAM.AddressInfo.PostalCode=68
Ord.SLAM.AddressInfo.StateRegion=67
Ord.SLAM.AddressInfo.address1=64
Ord.SLAM.AddressInfo.address2=65
Ord.SLAM.BluetoothRefPoint.macaddr=97
Ord.SLAM.BluetoothRefPoint.ssid=96
Ord.SLAM.CellularRefPoint.antenna=97
Ord.SLAM.CellularRefPoint.cid=96
Ord.SLAM.ContactInfo.email=66
Ord.SLAM.ContactInfo.givenname=64
Ord.SLAM.ContactInfo.phone=67
Ord.SLAM.ContactInfo.surname=65
Ord.SLAM.GenericRFRefPoint.uri=96
Ord.SLAM.PointOfInterest.address=69
Ord.SLAM.PointOfInterest.confidence=68
Ord.SLAM.PointOfInterest.contact=70
Ord.SLAM.PointOfInterest.description=66
Ord.SLAM.PointOfInterest.floor=65
Ord.SLAM.PointOfInterest.location=67
Ord.SLAM.PointOfInterest.name=64
Ord.SLAM.Probe.Submit.Input.captureDate=80
Ord.SLAM.Probe.Submit.Input.encoding=81
Ord.SLAM.Probe.Submit.Input.probes=83
Ord.SLAM.Probe.Submit.Input.sourceInfo=82
Ord.SLAM.ProbeRecord.address=69
Ord.SLAM.ProbeRecord.contact=70
Ord.SLAM.ProbeRecord.data=71
Ord.SLAM.ProbeRecord.description=68
Ord.SLAM.ProbeRecord.floor=65
Ord.SLAM.ProbeRecord.name=67
Ord.SLAM.ProbeRecord.obsset=66
Ord.SLAM.ProbeRecord.state=64
Ord.SLAM.ProbeSourceInfo.appNameVer=68
Ord.SLAM.ProbeSourceInfo.classDevice=64
Ord.SLAM.ProbeSourceInfo.idUser=69
Ord.SLAM.ProbeSourceInfo.keySource=70
Ord.SLAM.ProbeSourceInfo.mfgDevice=66
Ord.SLAM.ProbeSourceInfo.modelDevice=65
Ord.SLAM.ProbeSourceInfo.osNameVer=67
Ord.SLAM.RFRefPoint.attenuation=81
Ord.SLAM.RFRefPoint.freq=82
Ord.SLAM.RFRefPoint.txpwr=80
Ord.SLAM.RefPoint.data=71
Ord.SLAM.RefPoint.floor=72
Ord.SLAM.RefPoint.id=65
Ord.SLAM.RefPoint.position=66
Ord.SLAM.RefPoint.type=64
Ord.SLAM.RefPoint.usestatus=68
Ord.SLAM.RefPoint.validbegin=69
Ord.SLAM.RefPoint.validend=70
Ord.SLAM.RefPoint.veracity=67
Ord.SLAM.RefPointIndex.createdate=70
Ord.SLAM.RefPointIndex.floor=68
Ord.SLAM.RefPointIndex.id=64
Ord.SLAM.RefPointIndex.lastmodified=71
Ord.SLAM.RefPointIndex.position=67
Ord.SLAM.RefPointIndex.sourceUri=65
Ord.SLAM.RefPointIndex.type=66
Ord.SLAM.RefPointIndex.useStatus=69
Ord.SLAM.RefPointSet.refpoints=64
Ord.SLAM.SparseMeasurementTile.dataOffset=84
Ord.SLAM.SparseMeasurementTile.dataScale=83
Ord.SLAM.SparseMeasurementTile.posRef=81
Ord.SLAM.SparseMeasurementTile.posUncertScale=82
Ord.SLAM.SparseMeasurementTile.positions=87
Ord.SLAM.SparseMeasurementTile.references=85
Ord.SLAM.SparseMeasurementTile.reframe=80
Ord.SLAM.SparseMeasurementTile.rfdata=86
Ord.SLAM.SpatialIndex.bounding=66
Ord.SLAM.SpatialIndex.createdate=70
Ord.SLAM.SpatialIndex.datatype=69
Ord.SLAM.SpatialIndex.floormax=68
Ord.SLAM.SpatialIndex.floormin=67
Ord.SLAM.SpatialIndex.lastmodified=71
Ord.SLAM.SpatialIndex.sourceuri=64
Ord.SLAM.SpatialIndex.tileid=65
Ord.SLAM.SpatialIndex.validbegin=72
Ord.SLAM.SpatialIndex.validend=73
Ord.SLAM.Survey.Download.Input.id=80
Ord.SLAM.Survey.Download.Input.part=81
Ord.SLAM.Survey.Download.Output.surveys=80
Ord.SLAM.Survey.Submit.Input.survey=80
Ord.SLAM.Survey.Submit.Output.id=80
Ord.SLAM.SurveyData.info=69
Ord.SLAM.SurveyData.part=65
Ord.SLAM.SurveyData.pois=71
Ord.SLAM.SurveyData.records=70
Ord.SLAM.SurveyData.source=67
Ord.SLAM.SurveyData.surveyid=64
Ord.SLAM.SurveyData.type=66
Ord.SLAM.SurveyData.veracity=68
Ord.SLAM.SurveyInfo.address=71
Ord.SLAM.SurveyInfo.appid=67
Ord.SLAM.SurveyInfo.appver=68
Ord.SLAM.SurveyInfo.contact=70
Ord.SLAM.SurveyInfo.createdate=69
Ord.SLAM.SurveyInfo.dateend=73
Ord.SLAM.SurveyInfo.datestart=72
Ord.SLAM.SurveyInfo.flrmax=65
Ord.SLAM.SurveyInfo.flrmin=66
Ord.SLAM.SurveyInfo.name=64
Ord.SLAM.SurveyRecord.floor=65
Ord.SLAM.SurveyRecord.observations=66
Ord.SLAM.SurveyRecord.state=64
Ord.SLAM.Tile.bounding=68
Ord.SLAM.Tile.createdate=66
Ord.SLAM.Tile.datatype=72
Ord.SLAM.Tile.floormax=70
Ord.SLAM.Tile.floormin=69
Ord.SLAM.Tile.label=76
Ord.SLAM.Tile.lastmodified=67
Ord.SLAM.Tile.method=74
Ord.SLAM.Tile.revision=71
Ord.SLAM.Tile.source=75
Ord.SLAM.Tile.status=73
Ord.SLAM.Tile.tileid=65
Ord.SLAM.Tile.type=64
Ord.SLAM.Tile.validbegin=77
Ord.SLAM.Tile.validend=78
Ord.SLAM.TileManagement.DeleteTile.Input.tileid=80
Ord.SLAM.TileManagement.UpdateTile.Input.tile=80
Ord.SLAM.TileManagement.UploadTile.Input.tile=80
Ord.SLAM.TileService.DownloadTile.Input.tileid=80
Ord.SLAM.TileService.DownloadTile.Output.tile=80
Ord.SLAM.TileService.EstimatePosition.Input.observations=80
Ord.SLAM.TileService.EstimatePosition.Output.pos=80
Ord.SLAM.TileService.FindTilesByBoundingbox.Input.bounding=80
Ord.SLAM.TileService.FindTilesByBoundingbox.Input.floor=81
Ord.SLAM.TileService.FindTilesByBoundingbox.Output.tiles=80
Ord.SLAM.TileService.FindTilesByRefId.Input.floor=81
Ord.SLAM.TileService.FindTilesByRefId.Input.refids=80
Ord.SLAM.TileService.FindTilesByRefId.Input.signaltype=82
Ord.SLAM.TileService.FindTilesByRefId.Output.tiles=80
Ord.SLAM.TileSet.tiles=64
Ord.SLAM.WifiRefPoint.macaddr=97
Ord.SLAM.WifiRefPoint.ssid=96
Ord.Tensor.Command.argument=66
Ord.Tensor.Command.etid=65
Ord.Tensor.Command.name=64
Ord.Tensor.CommandApi.Execute.Input.commands=64
Ord.Tensor.CommandApi.Execute.Input.wantresponses=65
Ord.Tensor.CommandApi.Execute.Output.lastcommand=64
Ord.Tensor.CommandApi.Execute.Output.lastresult=65
Ord.Tensor.CommandApi.Execute.Output.responses=66
Ord.Tensor.CommandResponse.etid=65
Ord.Tensor.CommandResponse.name=64
Ord.Tensor.CommandResponse.output=67
Ord.Tensor.CommandResponse.result=66
Ord.Tensor.InputBase.devid=64
Ord.Tensor.InputBase.directive=66
Ord.Tensor.InputBase.etid=65
Ord.Tensor.NameValue.name=64
Ord.Tensor.NameValue.value=65
Ord.Tensor.OutputBase.devid=64
Ord.Tensor.OutputBase.errinfo=67
Ord.Tensor.OutputBase.etid=65
Ord.Tensor.OutputBase.resultcode=66
Ord.Tensor.VoidType.reserved=64
SID.SLAM.Probe.Submit.Input=4146
SID.SLAM.Survey.Download.Input=4146
SID.SLAM.Survey.Download.Output=4147
SID.SLAM.Survey.Submit.Input=4144
SID.SLAM.Survey.Submit.Output=4145
SID.SLAM.TileManagement.DeleteTile.Input=4123
SID.SLAM.TileManagement.UpdateTile.Input=4155
SID.SLAM.TileManagement.UploadTile.Input=4139
SID.SLAM.TileService.DownloadTile.Input=4122
SID.SLAM.TileService.DownloadTile.Output=4138
SID.SLAM.TileService.EstimatePosition.Input=4202
SID.SLAM.TileService.EstimatePosition.Output=4218
SID.SLAM.TileService.FindTilesByBoundingbox.Input=4154
SID.SLAM.TileService.FindTilesByBoundingbox.Output=4170
SID.SLAM.TileService.FindTilesByRefId.Input=4154
SID.SLAM.TileService.FindTilesByRefId.Output=4170
SID.Tensor.CommandApi.Execute.Input=256
SID.Tensor.CommandApi.Execute.Output=257
Size.HPE.Arc3D=45
Size.HPE.Arc=33
Size.HPE.ArcBand3D=49
Size.HPE.ArcBand=45
Size.HPE.BLE.BLERss=16
Size.HPE.BLE.BLERssExt=18
Size.HPE.Cellular.AntennaSpec=50
Size.HPE.Cellular.CellAntReferenceData=95
Size.HPE.Cellular.CellId=12
Size.HPE.Cellular.CellLocInfo=32
Size.HPE.Cellular.CellularObservation=21
Size.HPE.Cellular.GenericInfo=32
Size.HPE.Cellular.LteRssInfo=24
Size.HPE.Cellular.LteTimeAdvanceInfo=28
Size.HPE.Cellular.MSISDNObservation=11
Size.HPE.Cellular.MeasuredResultInfo=26
Size.HPE.Cellular.NMRInfo=27
Size.HPE.Cellular.RttInfo=31
Size.HPE.Cellular.TimeAdvance=23
Size.HPE.Circle=21
Size.HPE.Covariance=578
Size.HPE.Ellipse=29
Size.HPE.Ellipsoid=41
Size.HPE.Estimate=-1
Size.HPE.Gnss.AcqAssistElem=13
Size.HPE.Gnss.AcqAssistSet=-1
Size.HPE.Gnss.Almanac=25
Size.HPE.Gnss.CodephaseMeasurement=9
Size.HPE.Gnss.CodephaseMeasurementMin=7
Size.HPE.Gnss.ConstellationData=-1
Size.HPE.Gnss.ConstellationSet=-1
Size.HPE.Gnss.Ephemeris=59
Size.HPE.Gnss.GpsCodePhaseObs8=81
Size.HPE.Gnss.GpsCodePhaseObsMin6=51
Size.HPE.Gnss.GpsCodePhaseObsMin8=65
Size.HPE.Gnss.IonosphericCorrection=8
Size.HPE.Gnss.PseudorangeObservation=37
Size.HPE.Gnss.SatelliteId=2
Size.HPE.Gnss.UtcParameters=13
Size.HPE.InitializationReport=-1
Size.HPE.Observation=1
Size.HPE.ObservationEpoch=9
Size.HPE.ObservationReport=-1
Size.HPE.ObservationSet=-1
Size.HPE.Point2D=17
Size.HPE.Point3D=25
Size.HPE.PositionReport=-1
Size.HPE.ReferenceData=1
Size.HPE.ReferenceDataSet=-1
Size.HPE.Shape=1
Size.HPE.Spheroid=33
Size.HPE.StateInfo=-1
Size.HPE.TaskReport=-1
Size.HPE.WiFi.WiFiRss=16
Size.HPE.WiFi.WiFiRssExt=57
Size.Logging.ActionMsg=-1
Size.Logging.AppMetrics=-1
Size.Logging.DebugInfo=-1
Size.Logging.MessageBase=-1
Size.Logging.Metric=-1
Size.Logging.MetricMsg=-1
Size.Logging.PegCount=-1
Size.Logging.TaskReport=-1
Size.Logging.TraceMsg=-1
Size.Logging.TransactionMsg=-1
Size.Logging.UsageMsg=-1
Size.SLAM.AddressInfo=-1
Size.SLAM.BluetoothRefPoint=-1
Size.SLAM.BoundingBox=48
Size.SLAM.CellularRefPoint=-1
Size.SLAM.ContactInfo=-1
Size.SLAM.GenericRFRefPoint=-1
Size.SLAM.PointOfInterest=-1
Size.SLAM.Probe.Submit.Input=-1
Size.SLAM.ProbeRecord=-1
Size.SLAM.ProbeSourceInfo=-1
Size.SLAM.RFRefPoint=-1
Size.SLAM.RefPoint=-1
Size.SLAM.RefPointIndex=-1
Size.SLAM.RefPointSet=-1
Size.SLAM.SparseMeasurementTile.Position=13
Size.SLAM.SparseMeasurementTile.RfData=4
Size.SLAM.SparseMeasurementTile.RfReference=16
Size.SLAM.SparseMeasurementTile=-1
Size.SLAM.SpatialIndex=-1
Size.SLAM.Survey.Download.Input=-1
Size.SLAM.Survey.Download.Output=-1
Size.SLAM.Survey.Submit.Input=-1
Size.SLAM.Survey.Submit.Output=-1
Size.SLAM.SurveyData=-1
Size.SLAM.SurveyInfo=-1
Size.SLAM.SurveyRecord=-1
Size.SLAM.Tile=-1
Size.SLAM.TileManagement.DeleteTile.Input=-1
Size.SLAM.TileManagement.UpdateTile.Input=-1
Size.SLAM.TileManagement.UploadTile.Input=-1
Size.SLAM.TileService.DownloadTile.Input=-1
Size.SLAM.TileService.DownloadTile.Output=-1
Size.SLAM.TileService.EstimatePosition.Input=-1
Size.SLAM.TileService.EstimatePosition.Output=-1
Size.SLAM.TileService.FindTilesByBoundingbox.Input=-1
Size.SLAM.TileService.FindTilesByBoundingbox.Output=-1
Size.SLAM.TileService.FindTilesByRefId.Input=-1
Size.SLAM.TileService.FindTilesByRefId.Output=-1
Size.SLAM.TileSet=-1
Size.SLAM.WifiRefPoint=-1
Size.Tensor.Command=-1
Size.Tensor.CommandApi.Execute.Input=-1
Size.Tensor.CommandApi.Execute.Output=-1
Size.Tensor.CommandResponse=-1
Size.Tensor.InputBase=-1
Size.Tensor.NameValue=-1
Size.Tensor.OutputBase=-1
Size.Tensor.VoidType=-1
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!