This repository has been archived by the owner on Apr 16, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 62
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update docu with SMT-attribute-set extensions (#683)
* Delete src/AasxCore.Samm2_2_0/docs directory Directory will be renamed to "documentation" * Create folder "documentation" file temp.txt will be removed later * Extend Documentation with SMT-attribute-Extensions Documentation updated, common parts extracted. SAMM and SMT-attribute extensions described * Delete src/AasxCore.Samm2_2_0/documentation/temp.txt was only created for creating a folder * Create temp.txt * Createfolder examples * Delete src/AasxCore.Samm2_2_0/documentation/src/temp.txt was for creating folder only * Add examples aasx and ttl Examples added that are used in documentation * Delete src/AasxCore.Samm2_2_0/documentation/examples/temp.txt was created to create folder only * Create folder src * Upload figures Figures for documentation added * fix table format in Annex Annex SMT Attributes Sets: fix table * Fix table of content Table of content did not match with chapter structure.
- Loading branch information
1 parent
99a3894
commit 2b5b062
Showing
62 changed files
with
1,023 additions
and
1,949 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
839 changes: 0 additions & 839 deletions
839
...asxCore.Samm2_2_0/docs/gen/Aspect_BatteryPass_bamm generated by aasx package explorer.ttl
This file was deleted.
Oops, something went wrong.
14 changes: 0 additions & 14 deletions
14
src/AasxCore.Samm2_2_0/docs/gen/Aspect_Movement generated by aasx package explorer.ttl
This file was deleted.
Oops, something went wrong.
Binary file not shown.
Binary file removed
BIN
-44.4 KB
src/AasxCore.Samm2_2_0/docs/src/aasx-package-explorer_guidedSM-bySAMM.png
Binary file not shown.
Binary file removed
BIN
-49.9 KB
...asxCore.Samm2_2_0/docs/src/aasx_package_explorer_AddSMEguidedBySMT_position.png
Binary file not shown.
Binary file removed
BIN
-289 KB
src/AasxCore.Samm2_2_0/docs/src/aasx_package_explorer_SAMMExtension.png
Binary file not shown.
Large diffs are not rendered by default.
Oops, something went wrong.
Binary file added
BIN
+3.39 KB
...AasxCore.Samm2_2_0/documentation/examples/ExampleAASX_CD_Movement_BatteryPass_Guided.aasx
Binary file not shown.
186 changes: 93 additions & 93 deletions
186
...amm2_2_0/docs/examples/Movement_2.0.0.ttl → ...documentation/examples/Movement_2.0.0.ttl
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,93 +1,93 @@ | ||
@prefix samm: <urn:samm:org.eclipse.esmf.samm:meta-model:2.0.0#> . | ||
@prefix samm-c: <urn:samm:org.eclipse.esmf.samm:characteristic:2.0.0#> . | ||
@prefix samm-e: <urn:samm:org.eclipse.esmf.samm:entity:2.0.0#> . | ||
@prefix unit: <urn:samm:org.eclipse.esmf.samm:unit:2.0.0#> . | ||
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> . | ||
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> . | ||
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> . | ||
@prefix : <urn:samm:org.eclipse.examples:1.0.0#> . | ||
|
||
:Movement a samm:Aspect ; | ||
samm:preferredName "movement"@en ; | ||
samm:description "Aspect for movement information"@en ; | ||
samm:properties ( :isMoving :position :speed :speedLimitWarning ) ; | ||
samm:operations ( ) ; | ||
samm:events ( ) . | ||
|
||
:isMoving a samm:Property ; | ||
samm:preferredName "is moving"@en ; | ||
samm:description "Flag indicating whether the asset is currently moving"@en ; | ||
samm:characteristic samm-c:Boolean . | ||
|
||
:position a samm:Property ; | ||
samm:preferredName "position"@en ; | ||
samm:description "Indicates a position"@en ; | ||
samm:characteristic :SpatialPositionCharacteristic . | ||
|
||
:speed a samm:Property ; | ||
samm:preferredName "speed"@en ; | ||
samm:description "speed of vehicle"@en ; | ||
samm:characteristic :Speed . | ||
|
||
:speedLimitWarning a samm:Property ; | ||
samm:preferredName "speed limit warning"@en ; | ||
samm:description "Indicates if the speed limit is adhered to."@en ; | ||
samm:characteristic :TrafficLight . | ||
|
||
:SpatialPositionCharacteristic a samm-c:SingleEntity ; | ||
samm:preferredName "spatial position characteristic"@en ; | ||
samm:description "Represents a single position in space with optional z coordinate."@en ; | ||
samm:dataType :SpatialPosition . | ||
|
||
:Speed a samm-c:Measurement ; | ||
samm:preferredName "speed"@en ; | ||
samm:description "Scalar representation of speed of an object in kilometers per hour."@en ; | ||
samm:dataType xsd:float ; | ||
samm-c:unit unit:kilometrePerHour . | ||
|
||
:TrafficLight a samm-c:Enumeration ; | ||
samm:preferredName "warning level"@en ; | ||
samm:description "Represents if speed of position change is within specification (green), within tolerance (yellow), or outside specification (red)."@en ; | ||
samm:dataType xsd:string ; | ||
samm-c:values ( "green" "yellow" "red" ) . | ||
|
||
:SpatialPosition a samm:Entity ; | ||
samm:preferredName "spatial position"@en ; | ||
samm:description "Represents latitude, longitude and altitude information in the WGS84 geodetic reference datum"@en ; | ||
samm:see <https://www.w3.org/2003/01/geo/> ; | ||
samm:properties ( :latitude :longitude [ samm:property :altitude; samm:optional true ] ) . | ||
|
||
:latitude a samm:Property ; | ||
samm:preferredName "latitude"@en ; | ||
samm:description "latitude coordinate in space (WGS84)"@en ; | ||
samm:see <http://www.w3.org/2003/01/geo/wgs84_pos#lat> ; | ||
samm:characteristic :Coordinate ; | ||
samm:exampleValue "9.1781"^^xsd:decimal . | ||
|
||
:longitude a samm:Property ; | ||
samm:preferredName "longitude"@en ; | ||
samm:description "longitude coordinate in space (WGS84)"@en ; | ||
samm:see <http://www.w3.org/2003/01/geo/wgs84_pos#long> ; | ||
samm:characteristic :Coordinate ; | ||
samm:exampleValue "48.80835"^^xsd:decimal . | ||
|
||
:altitude a samm:Property ; | ||
samm:preferredName "altitude"@en ; | ||
samm:description "Elevation above sea level zero"@en ; | ||
samm:see <http://www.w3.org/2003/01/geo/wgs84_pos#alt> ; | ||
samm:characteristic :MetresAboveMeanSeaLevel ; | ||
samm:exampleValue "153"^^xsd:float . | ||
|
||
:Coordinate a samm-c:Measurement ; | ||
samm:preferredName "coordinate"@en ; | ||
samm:description "Representing the geographical coordinate"@en ; | ||
samm:dataType xsd:decimal ; | ||
samm-c:unit unit:degreeUnitOfAngle . | ||
|
||
:MetresAboveMeanSeaLevel a samm-c:Measurement ; | ||
samm:preferredName "metres above mean sea level"@en ; | ||
samm:description "Signifies the vertical distance in reference to a historic mean sea level as a vertical datum"@en ; | ||
samm:see <https://en.wikipedia.org/wiki/Height_above_sea_level> ; | ||
samm:dataType xsd:float ; | ||
samm-c:unit unit:metre . | ||
|
||
@prefix samm: <urn:samm:org.eclipse.esmf.samm:meta-model:2.0.0#> . | ||
@prefix samm-c: <urn:samm:org.eclipse.esmf.samm:characteristic:2.0.0#> . | ||
@prefix samm-e: <urn:samm:org.eclipse.esmf.samm:entity:2.0.0#> . | ||
@prefix unit: <urn:samm:org.eclipse.esmf.samm:unit:2.0.0#> . | ||
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> . | ||
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> . | ||
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> . | ||
@prefix : <urn:samm:org.eclipse.examples:1.0.0#> . | ||
|
||
:Movement a samm:Aspect ; | ||
samm:preferredName "movement"@en ; | ||
samm:description "Aspect for movement information"@en ; | ||
samm:properties ( :isMoving :position :speed :speedLimitWarning ) ; | ||
samm:operations ( ) ; | ||
samm:events ( ) . | ||
|
||
:isMoving a samm:Property ; | ||
samm:preferredName "is moving"@en ; | ||
samm:description "Flag indicating whether the asset is currently moving"@en ; | ||
samm:characteristic samm-c:Boolean . | ||
|
||
:position a samm:Property ; | ||
samm:preferredName "position"@en ; | ||
samm:description "Indicates a position"@en ; | ||
samm:characteristic :SpatialPositionCharacteristic . | ||
|
||
:speed a samm:Property ; | ||
samm:preferredName "speed"@en ; | ||
samm:description "speed of vehicle"@en ; | ||
samm:characteristic :Speed . | ||
|
||
:speedLimitWarning a samm:Property ; | ||
samm:preferredName "speed limit warning"@en ; | ||
samm:description "Indicates if the speed limit is adhered to."@en ; | ||
samm:characteristic :TrafficLight . | ||
|
||
:SpatialPositionCharacteristic a samm-c:SingleEntity ; | ||
samm:preferredName "spatial position characteristic"@en ; | ||
samm:description "Represents a single position in space with optional z coordinate."@en ; | ||
samm:dataType :SpatialPosition . | ||
|
||
:Speed a samm-c:Measurement ; | ||
samm:preferredName "speed"@en ; | ||
samm:description "Scalar representation of speed of an object in kilometers per hour."@en ; | ||
samm:dataType xsd:float ; | ||
samm-c:unit unit:kilometrePerHour . | ||
|
||
:TrafficLight a samm-c:Enumeration ; | ||
samm:preferredName "warning level"@en ; | ||
samm:description "Represents if speed of position change is within specification (green), within tolerance (yellow), or outside specification (red)."@en ; | ||
samm:dataType xsd:string ; | ||
samm-c:values ( "green" "yellow" "red" ) . | ||
|
||
:SpatialPosition a samm:Entity ; | ||
samm:preferredName "spatial position"@en ; | ||
samm:description "Represents latitude, longitude and altitude information in the WGS84 geodetic reference datum"@en ; | ||
samm:see <https://www.w3.org/2003/01/geo/> ; | ||
samm:properties ( :latitude :longitude [ samm:property :altitude; samm:optional true ] ) . | ||
|
||
:latitude a samm:Property ; | ||
samm:preferredName "latitude"@en ; | ||
samm:description "latitude coordinate in space (WGS84)"@en ; | ||
samm:see <http://www.w3.org/2003/01/geo/wgs84_pos#lat> ; | ||
samm:characteristic :Coordinate ; | ||
samm:exampleValue "9.1781"^^xsd:decimal . | ||
|
||
:longitude a samm:Property ; | ||
samm:preferredName "longitude"@en ; | ||
samm:description "longitude coordinate in space (WGS84)"@en ; | ||
samm:see <http://www.w3.org/2003/01/geo/wgs84_pos#long> ; | ||
samm:characteristic :Coordinate ; | ||
samm:exampleValue "48.80835"^^xsd:decimal . | ||
|
||
:altitude a samm:Property ; | ||
samm:preferredName "altitude"@en ; | ||
samm:description "Elevation above sea level zero"@en ; | ||
samm:see <http://www.w3.org/2003/01/geo/wgs84_pos#alt> ; | ||
samm:characteristic :MetresAboveMeanSeaLevel ; | ||
samm:exampleValue "153"^^xsd:float . | ||
|
||
:Coordinate a samm-c:Measurement ; | ||
samm:preferredName "coordinate"@en ; | ||
samm:description "Representing the geographical coordinate"@en ; | ||
samm:dataType xsd:decimal ; | ||
samm-c:unit unit:degreeUnitOfAngle . | ||
|
||
:MetresAboveMeanSeaLevel a samm-c:Measurement ; | ||
samm:preferredName "metres above mean sea level"@en ; | ||
samm:description "Signifies the vertical distance in reference to a historic mean sea level as a vertical datum"@en ; | ||
samm:see <https://en.wikipedia.org/wiki/Height_above_sea_level> ; | ||
samm:dataType xsd:float ; | ||
samm-c:unit unit:metre . | ||
|
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
File renamed without changes
Binary file added
BIN
+45.3 KB
....Samm2_2_0/documentation/src/ESMF_aspect-meta-model_characteristicInstances.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+43.5 KB
...AasxCore.Samm2_2_0/documentation/src/ESMF_aspect-meta-model_characteristics.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
File renamed without changes
Binary file added
BIN
+197 KB
...n/src/aasx-package-explorer_ConceptDescriptions_SubmodelConceptDescriptions.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+186 KB
src/AasxCore.Samm2_2_0/documentation/src/aasx-package-explorer_CreateGuidedSMT.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+187 KB
src/AasxCore.Samm2_2_0/documentation/src/aasx-package-explorer_DynamicOrder.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+382 KB
...re.Samm2_2_0/documentation/src/aasx-package-explorer_DynamicOrder_ListIndex.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+187 KB
...e.Samm2_2_0/documentation/src/aasx-package-explorer_DynamicOrder_Structured.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+199 KB
...m2_2_0/documentation/src/aasx-package-explorer_DynamicOrder_UnstructuredCDs.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+325 KB
...0/documentation/src/aasx-package-explorer_KnownExtensions-SMT-attribute-set.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+54 KB
..._2_0/documentation/src/aasx-package-explorer_KnownExtensions-SMT-attributes.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+42.9 KB
src/AasxCore.Samm2_2_0/documentation/src/aasx-package-explorer_KnownExtensions.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
File renamed without changes
Binary file added
BIN
+106 KB
...0/documentation/src/aasx-package-explorer_SAMMExtension_ReferableAttributes.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
File renamed without changes
File renamed without changes
Binary file added
BIN
+320 KB
...ocumentation/src/aasx-package-explorer_SMT-attribute-set-Extension_Submodel.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+108 KB
...entation/src/aasx-package-explorer_SMT-attribute-set-SubmodelElementsSelect.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+107 KB
...cumentation/src/aasx-package-explorer_SMT-attribute-set_ReferableAttributes.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+47.2 KB
.../documentation/src/aasx-package-explorer_SMT-attribute-set_SubmodelElements.png
Oops, something went wrong.
Binary file added
BIN
+2.98 KB
...m2_2_0/documentation/src/aasx-package-explorer_SMT-attribute-set_isSubmodel.png
Oops, something went wrong.
Binary file added
BIN
+41.2 KB
...mm2_2_0/documentation/src/aasx-package-explorer_SMT-attribute-set_organizes.png
Oops, something went wrong.
Binary file added
BIN
+119 KB
src/AasxCore.Samm2_2_0/documentation/src/aasx-package-explorer_Select-SMT-SAMM.png
Oops, something went wrong.
Binary file added
BIN
+179 KB
...e.Samm2_2_0/documentation/src/aasx-package-explorer_SelectSMTConceptsAsRoot.png
Oops, something went wrong.
Binary file added
BIN
+154 KB
src/AasxCore.Samm2_2_0/documentation/src/aasx-package-explorer_guidedSM-bySAMM.png
Oops, something went wrong.
File renamed without changes
File renamed without changes
Binary file added
BIN
+38.9 KB
...amm2_2_0/documentation/src/aasx_package_explorer_AddSMEguidedBySMT_position.png
Oops, something went wrong.
File renamed without changes
File renamed without changes
File renamed without changes
Binary file added
BIN
+391 KB
src/AasxCore.Samm2_2_0/documentation/src/aasx_package_explorer_SAMMExtension.png
Oops, something went wrong.
File renamed without changes
Binary file added
BIN
+138 KB
...0/documentation/src/aasx_package_explorer_SAMMExtension_AddOtherConstraints.png
Oops, something went wrong.
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
|