Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit b448fdf

Browse files
authoredFeb 15, 2024
Merge pull request eclipse-esmf#28 from bci-oss/rbs-13551_resolve-elements-from-other-files
Add a test to check element resolving
2 parents 6dcfb9d + 1e559df commit b448fdf

File tree

72 files changed

+315
-161
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

72 files changed

+315
-161
lines changed
 

‎core/esmf-aspect-meta-model-python/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,14 @@ An Aspect of the Meta Model can be created as follows using the provided `Aspect
1313

1414
```
1515
aspect_loader = AspectLoader()
16-
aspect = aspect_loader.load_aspect_model("path/to/turtle.ttl");
16+
aspect = aspect_loader.load_aspect_model("absolute/path/to/turtle.ttl");
1717
```
1818

1919
or
2020

2121
```
2222
aspect_loader = AspectLoader()
23-
aspect = aspect_loader.load_aspect_model_from_multiple_files(["list/of/paths/to/turtles.ttl"], "aspect_urn");
23+
aspect = aspect_loader.load_aspect_model_from_multiple_files(["list/of/absolute/paths/to/turtles.ttl"], "aspect_urn");
2424
```
2525

2626
## Automatic Deployment

‎core/esmf-aspect-meta-model-python/esmf_aspect_meta_model_python/base/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,9 @@ HasUrn
2727
│ ├── SingleEntity
2828
│ ├── StructuredValue
2929
│ ├── Quantifiable
30-
│ │ ├── Duration
31-
│ │ └── Measurement
32-
│ └── Trait
30+
│ │ ├── Duration
31+
│ │ └── Measurement
32+
│ └── Trait
3333
├── Constraint
3434
│ ├── EncodingConstraint
3535
│ ├── FixedPointConstraint
@@ -38,7 +38,7 @@ HasUrn
3838
│ ├── LocaleConstraint
3939
│ ├── RangeConstraint
4040
│ └── RegularExpressionConstraint
41-
├── Event
41+
├── Event
4242
├── Operation
4343
├── Property
4444
├── QuantityKind

0 commit comments

Comments
 (0)
Please sign in to comment.