INTERLIS 2.3; /** !!------------------------------------------------------------------------------ * !! Version | wer | Aenderung * !!------------------------------------------------------------------------------ * !! 2021-02-02 | STP | Initialversion Publikationsdatenmodell kantonale Ausnahmetransportrouten (ExceptionalLoadsRoute ASTRA) */ !!@ technicalContact="mailto:geoinformation@gl.ch" MODEL GL_ExceptionalLoadsRoute_Publikation_V1 (de) AT "https://www.gl.ch" VERSION "2021-02-02" = IMPORTS Units,GeometryCHLV95_V1,CHAdminCodes_V1; TOPIC ExceptionalLoad = OID AS INTERLIS.UUIDOID; /** Kantonale Ausnahmetransportrouten (GeoIV ID 184): Hindernisse */ CLASS Obstacle = /** Bezeichnung/Beschreibung */ Description: MANDATORY TEXT*100; /** Einschränkung Fahrnbahnbreite */ RestrictionWidth: 0.00..100.00 [INTERLIS.m]; /** Einschränkung lichte Höhe */ RestrictionClearance: 0.00..100.00 [INTERLIS.m]; /** Einschränkung Gesamtgewicht */ RestrictionTotalWeight: 0..1000 [Units.t]; /** Einschränkung Achslast */ RestrictionAxisLoad: 0..1000 [Units.t]; /** Hindernis gehört zu Route (-> ExceptionalLoad.Route.Identifier) */ On_Route: TEXT*50; /** Geometrie: PointZ */ The_Geom: MANDATORY GeometryCHLV95_V1.Coord3; END Obstacle; /** Kantonale Ausnahmetransportrouten (GeoIV ID 184): Routen */ CLASS Route = /** Identifikationsschlüssel des zuständigen Kantons */ Identifier: MANDATORY TEXT*50; /** Kürzel des zuständigen Kantons ("GL") */ Canton: MANDATORY CHAdminCodes_V1.CHCantonCode; /** Routentyp */ Route_Type: MANDATORY TEXT*10; /** Routentyp: Fahrbahnbreite */ RoadWidth: 0.00..100.00 [INTERLIS.m]; /** Routentyp: lichte Höhe */ RoadClearance: 0.00..100.00 [INTERLIS.m]; /** Routentyp: Gesamtgewicht */ TotalWeight: 0..1000 [Units.t]; /** Routentyp: Achslast */ AxisLoad: 0..1000 [Units.t]; /** Geometrie: LineStringZ */ Geometry: MANDATORY GeometryCHLV95_V1.LineWithAltitude; END Route; END ExceptionalLoad; END GL_ExceptionalLoadsRoute_Publikation_V1.