Component

Component describes a collection of objects and their spatial information at a given point of time.
Each component must be separated by time (e.g. time frame); therefore it must contain the time element.
It also has a unique identifier, componentID.
A prevID can be used optionally to define a reference or connectivity with another component from a previous time.
Each component requires at least one measurement to describe spatial information of objects.

Complex Type Information

Model

Attributes

QName Type Fixed Default Use Inheritable Annotation
metaid xsd:ID optional

Used By

Element Data/component

Source

<xsd:complexType name="Component">
  <xsd:annotation>
    <xsd:documentation>Component describes a collection of objects and their spatial information at a given point of time. Each component must be separated by time (e.g. time frame); therefore it must contain the time element. It also has a unique identifier, componentID. A prevID can be used optionally to define a reference or connectivity with another component from a previous time. Each component requires at least one measurement to describe spatial information of objects.</xsd:documentation>
  </xsd:annotation>
  <xsd:complexContent>
    <xsd:extension base="BDBase">
      <xsd:sequence>
        <xsd:element name="componentID" type="xsd:string"/>
        <xsd:element name="componentName" minOccurs="0" type="xsd:string"/>
        <xsd:element name="time" type="xsd:double"/>
        <xsd:element name="prevID" minOccurs="0" maxOccurs="unbounded" type="xsd:string"/>
        <xsd:element name="measurement" minOccurs="1" maxOccurs="unbounded" type="Measurement"/>
      </xsd:sequence>
    </xsd:extension>
  </xsd:complexContent>
</xsd:complexType>