-
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
32 additions
and
0 deletions.
There are no files selected for viewing
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,32 @@ | ||
INTERLIS 2.3; | ||
|
||
MODEL MultiGeom (en) | ||
AT "http://modelbaker.ch" | ||
VERSION "2024-06-22" = | ||
|
||
IMPORTS GeometryCHLV95_V1; | ||
|
||
DOMAIN | ||
Line = POLYLINE WITH (STRAIGHTS) VERTEX GeometryCHLV95_V1.Coord2; | ||
Surface = SURFACE WITH (STRAIGHTS) VERTEX GeometryCHLV95_V1.Coord2 WITHOUT OVERLAPS > 0.005; | ||
|
||
TOPIC Spots = | ||
|
||
CLASS POI = | ||
Name: TEXT; | ||
Point: GeometryCHLV95_V1.Coord2; | ||
END POI; | ||
|
||
CLASS GOI = | ||
Name: TEXT; | ||
Point: GeometryCHLV95_V1.Coord2; | ||
Line: Line; | ||
Surface: Surface; | ||
END GOI; | ||
|
||
CLASS NoGeomClass = | ||
Name: TEXT; | ||
END NoGeomClass; | ||
END Spots; | ||
|
||
END MultiGeom. |