Skip to content

Commit

Permalink
test model
Browse files Browse the repository at this point in the history
  • Loading branch information
signedav committed Oct 21, 2024
1 parent ee2fdb9 commit 9b449e0
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions tests/testdata/ilimodels/MultiGeom.ili
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.

0 comments on commit 9b449e0

Please sign in to comment.