CustomAreaAttribute¶
Overview¶
Class
A custom attribute with Value type NullableArea.
Supertypes
Attributes (data)
| Name | Multiplicity | Type | 
|---|---|---|
| 1 | 
Implementation in Proteus Schema
CustomAreaAttribute is implemented as a custom generic attribute for physical quantities.
Example
As CustomAttributeOwner is abstract, we consider Truck as an arbitrary concrete subclass.
The Truck truck1 has a CustomAreaAttribute with AttributeName “LowerLimitCargoArea” and an (arbitrary) AttributeURI “http://www.example.org/9926bcaf834762”. The Value is 32 m2.
Implementation in Proteus Schema
<Equipment
    ID="truck1"
    ComponentClass="Truck"
    ComponentClassURI="http://data.posccaesar.org/rdl/RDS11524112" ...>
  ...
  <GenericAttributes Set="DexpiCustomAttributes" ...>
    <GenericAttribute
      Name="LowerLimitCargoArea"
      AttributeURI="http://www.example.org/9926bcaf834762"
      Format="double"
      Type="Area"
      TypeURI="http://data.posccaesar.org/rdl/RDS349874"
      Value="32"
      Units="MetreSquared"
      UnitsURI="http://data.posccaesar.org/rdl/RDS1358009" />
    ...
  </GenericAttributes>
  ...
</Equipment>
Value¶
Attribute (data)
The value of the CustomAreaAttribute.
Implementation in Proteus Schema
See implementation of CustomAreaAttribute.
Example
See the example for CustomAreaAttribute.