@golemio/ndic 1.5.1-dev.1757476064 → 1.5.1-dev.2059793292
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/integration-engine/helpers/OsmPathService.d.ts +1 -0
- package/dist/integration-engine/helpers/OsmPathService.js +42 -14
- package/dist/integration-engine/helpers/OsmPathService.js.map +1 -1
- package/dist/integration-engine/ioc/Di.js.map +1 -1
- package/dist/integration-engine/transformations/TrafficRestrictionsInterface.d.ts +10 -0
- package/dist/integration-engine/transformations/TrafficRestrictionsInterface.js.map +1 -1
- package/dist/integration-engine/transformations/TrafficRestrictionsTransformation.d.ts +1 -0
- package/dist/integration-engine/transformations/TrafficRestrictionsTransformation.js +16 -2
- package/dist/integration-engine/transformations/TrafficRestrictionsTransformation.js.map +1 -1
- package/dist/output-gateway/transformations/OutputTrafficRestrictionsTransformation.js +1 -23
- package/dist/output-gateway/transformations/OutputTrafficRestrictionsTransformation.js.map +1 -1
- package/dist/schema-definitions/index.d.ts +101 -0
- package/dist/schema-definitions/schemas/traffic_info_datasource_schema.d.ts +101 -0
- package/dist/schema-definitions/schemas/traffic_info_datasource_schema.js +91 -0
- package/dist/schema-definitions/schemas/traffic_info_datasource_schema.js.map +1 -1
- package/docs/openapi-input.yaml +94 -9
- package/package.json +2 -2
|
@@ -9,6 +9,7 @@ export declare class OsmPathService {
|
|
|
9
9
|
constructor(globalNetworkMappingRepository: GlobalNetworkMappingRepository, rsdTmcOsmMappingRepository: RsdTmcOsmMappingRepository, logger: ILogger);
|
|
10
10
|
addOsmPath(transformedData: ITrafficRestrictionsModel[]): Promise<ITrafficRestrictionsModel[]>;
|
|
11
11
|
private getOsmPathGlobalNetworkMethod;
|
|
12
|
+
private createKeyForDirection;
|
|
12
13
|
private getOsmPathAlertCLinearMethod;
|
|
13
14
|
private getGlobalNetworkSectionIds;
|
|
14
15
|
}
|
|
@@ -14,6 +14,16 @@ const GlobalNetworkMappingRepository_1 = require("../repository/GlobalNetworkMap
|
|
|
14
14
|
const golemio_errors_1 = require("@golemio/core/dist/shared/golemio-errors");
|
|
15
15
|
const tsyringe_1 = require("@golemio/core/dist/shared/tsyringe");
|
|
16
16
|
const RsdTmcOsmMappingRepository_1 = require("@golemio/traffic-common/dist/integration-engine/repositories/RsdTmcOsmMappingRepository");
|
|
17
|
+
var Direction;
|
|
18
|
+
(function (Direction) {
|
|
19
|
+
Direction["POSITIVE"] = "positive";
|
|
20
|
+
Direction["NEGATIVE"] = "negative";
|
|
21
|
+
})(Direction || (Direction = {}));
|
|
22
|
+
var RelativeDirection;
|
|
23
|
+
(function (RelativeDirection) {
|
|
24
|
+
RelativeDirection["ALIGNED"] = "aligned";
|
|
25
|
+
RelativeDirection["OPPOSITE"] = "opposite";
|
|
26
|
+
})(RelativeDirection || (RelativeDirection = {}));
|
|
17
27
|
let OsmPathService = exports.OsmPathService = class OsmPathService {
|
|
18
28
|
constructor(globalNetworkMappingRepository, rsdTmcOsmMappingRepository, logger) {
|
|
19
29
|
this.globalNetworkMappingRepository = globalNetworkMappingRepository;
|
|
@@ -25,7 +35,7 @@ let OsmPathService = exports.OsmPathService = class OsmPathService {
|
|
|
25
35
|
const record = transformedData[index];
|
|
26
36
|
try {
|
|
27
37
|
record.osm_path = await this.getOsmPathGlobalNetworkMethod(record);
|
|
28
|
-
if (!record.osm_path) {
|
|
38
|
+
if (!record?.osm_path || record.osm_path.length === 0) {
|
|
29
39
|
record.osm_path = await this.getOsmPathAlertCLinearMethod(record);
|
|
30
40
|
}
|
|
31
41
|
}
|
|
@@ -34,9 +44,8 @@ let OsmPathService = exports.OsmPathService = class OsmPathService {
|
|
|
34
44
|
this.logger.warn(error);
|
|
35
45
|
}
|
|
36
46
|
else {
|
|
37
|
-
this.logger.warn(new golemio_errors_1.GeneralError(
|
|
38
|
-
|
|
39
|
-
`Error while adding OSM path to the record ${record.situation_record_id} ${record.situation_version_time}`, this.constructor.name, error));
|
|
47
|
+
this.logger.warn(new golemio_errors_1.GeneralError(`Error while adding OSM path to the record
|
|
48
|
+
${record.situation_record_id} ${record.situation_version_time}`, this.constructor.name, error));
|
|
40
49
|
}
|
|
41
50
|
}
|
|
42
51
|
}
|
|
@@ -44,16 +53,27 @@ let OsmPathService = exports.OsmPathService = class OsmPathService {
|
|
|
44
53
|
}
|
|
45
54
|
async getOsmPathGlobalNetworkMethod(record) {
|
|
46
55
|
if (record.global_network_linear) {
|
|
47
|
-
const
|
|
48
|
-
|
|
56
|
+
const requestedSections = this.getGlobalNetworkSectionIds(record);
|
|
57
|
+
const roadIds = requestedSections.map((section) => section.sectionId);
|
|
49
58
|
const result = await this.globalNetworkMappingRepository.findAll(roadIds);
|
|
50
|
-
const
|
|
51
|
-
|
|
52
|
-
|
|
59
|
+
const rowIndex = new Map();
|
|
60
|
+
for (const row of result) {
|
|
61
|
+
rowIndex.set(this.createKeyForDirection(row.road_id, row.direction), row);
|
|
62
|
+
}
|
|
63
|
+
const osmPathsPerSection = requestedSections
|
|
64
|
+
.map(({ sectionId, direction }) => rowIndex.get(this.createKeyForDirection(sectionId, direction)))
|
|
65
|
+
.filter((row) => !!row)
|
|
66
|
+
.map((row) => row.osm_path.split(",").map((token) => Number(token.trim())))
|
|
67
|
+
.filter((ids) => ids.length > 0);
|
|
68
|
+
if (osmPathsPerSection.length) {
|
|
69
|
+
return osmPathsPerSection;
|
|
53
70
|
}
|
|
54
71
|
}
|
|
55
72
|
return undefined;
|
|
56
73
|
}
|
|
74
|
+
createKeyForDirection(id, dir) {
|
|
75
|
+
return `${id}::${dir}`;
|
|
76
|
+
}
|
|
57
77
|
async getOsmPathAlertCLinearMethod(record) {
|
|
58
78
|
if (record.alert_c_linear) {
|
|
59
79
|
let ltStart = record.alert_c_linear?.alertCMethod2SecondaryPointLocation.alertCLocation.specificLocation || null;
|
|
@@ -75,12 +95,20 @@ let OsmPathService = exports.OsmPathService = class OsmPathService {
|
|
|
75
95
|
return undefined;
|
|
76
96
|
}
|
|
77
97
|
getGlobalNetworkSectionIds(record) {
|
|
78
|
-
|
|
79
|
-
if (
|
|
80
|
-
return
|
|
98
|
+
const globalNetworkLinear = record.global_network_linear;
|
|
99
|
+
if (!globalNetworkLinear) {
|
|
100
|
+
return [];
|
|
81
101
|
}
|
|
82
|
-
|
|
83
|
-
|
|
102
|
+
const firstDirRaw = globalNetworkLinear.firstDirection?.linearWithinLinearGNElement;
|
|
103
|
+
const oppositeDirRaw = globalNetworkLinear.oppositeDirection?.linearWithinLinearGNElement;
|
|
104
|
+
const firstDirectionElements = Array.isArray(firstDirRaw) ? firstDirRaw : firstDirRaw ? [firstDirRaw] : [];
|
|
105
|
+
const oppositeDirectionElements = Array.isArray(oppositeDirRaw) ? oppositeDirRaw : oppositeDirRaw ? [oppositeDirRaw] : [];
|
|
106
|
+
const allElements = [...firstDirectionElements, ...oppositeDirectionElements];
|
|
107
|
+
const results = allElements.map((element) => {
|
|
108
|
+
const direction = element.directionRelativeOnLinearSection === RelativeDirection.ALIGNED ? Direction.POSITIVE : Direction.NEGATIVE;
|
|
109
|
+
return { sectionId: element.sectionId, direction };
|
|
110
|
+
});
|
|
111
|
+
return results;
|
|
84
112
|
}
|
|
85
113
|
};
|
|
86
114
|
exports.OsmPathService = OsmPathService = __decorate([
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"OsmPathService.js","sourceRoot":"","sources":["../../../src/integration-engine/helpers/OsmPathService.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,iGAA+F;AAG/F,6EAA8F;AAC9F,iEAAgE;AAChE,wIAAqI;
|
|
1
|
+
{"version":3,"file":"OsmPathService.js","sourceRoot":"","sources":["../../../src/integration-engine/helpers/OsmPathService.ts"],"names":[],"mappings":"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"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Di.js","sourceRoot":"","sources":["../../../src/integration-engine/ioc/Di.ts"],"names":[],"mappings":";;;AAAA,gGAA8F;AAC9F,8DAA4D;AAC5D,mEAAiE;AACjE,iGAA+F;
|
|
1
|
+
{"version":3,"file":"Di.js","sourceRoot":"","sources":["../../../src/integration-engine/ioc/Di.ts"],"names":[],"mappings":";;;AAAA,gGAA8F;AAC9F,8DAA4D;AAC5D,mEAAiE;AACjE,iGAA+F;AAE/F,wEAAqE;AACrE,qEAA0F;AAC1F,iEAA4G;AAC5G,wIAAqI;AACrI,qDAAwD;AAExD,wBAAwB;AACxB,MAAM,aAAa,GAAwB,+BAA0B,CAAC,oBAAoB,EAAE,CAAC;AAkCpF,sCAAa;AAjCtB,YAAY;AAEZ,oBAAoB;AACpB,aAAa,CAAC,QAAQ,CAAC,qCAAoB,CAAC,6BAA6B,EAAE,6DAA6B,EAAE;IACtG,SAAS,EAAE,oBAAS,CAAC,SAAS;CACjC,CAAC,CAAC;AACH,YAAY;AAEZ,wBAAwB;AACxB,YAAY;AAEZ,sBAAsB;AACtB,aAAa,CAAC,QAAQ,CAAC,qCAAoB,CAAC,sBAAsB,EAAE,qCAAiB,EAAE,EAAE,SAAS,EAAE,oBAAS,CAAC,SAAS,EAAE,CAAC,CAAC;AAC3H,aAAa,CAAC,QAAQ,CAAC,qCAAoB,CAAC,8BAA8B,EAAE,+DAA8B,EAAE;IACxG,SAAS,EAAE,oBAAS,CAAC,SAAS;CACjC,CAAC,CAAC;AACH,YAAY;AAEZ,kBAAkB;AAClB,aAAa,CAAC,QAAQ,CAAC,qCAAoB,CAAC,cAAc,EAAE;IACxD,UAAU,EAAE,IAAA,iCAAsB,EAAC,CAAC,CAAC,EAAE,EAAE;QACrC,OAAO,IAAI,+BAAc,CACrB,CAAC,CAAC,OAAO,CAAC,qCAAoB,CAAC,8BAA8B,CAAC,EAC9D,IAAI,uDAA0B,CAAC,CAAC,CAAC,OAAO,CAAC,qBAAS,CAAC,iBAAiB,CAAC,EAAE,CAAC,CAAC,OAAO,CAAU,qBAAS,CAAC,MAAM,CAAC,CAAC,EAC5G,CAAC,CAAC,OAAO,CAAU,qBAAS,CAAC,MAAM,CAAC,CACvC,CAAC;IACN,CAAC,CAAC;CACL,CAAC,CAAC"}
|
|
@@ -67,6 +67,16 @@ export interface IGlobalNetworkLinear {
|
|
|
67
67
|
startPoint?: IPointByMultiCoordinates;
|
|
68
68
|
endPoint?: IPointByMultiCoordinates;
|
|
69
69
|
linearWithinLinearGNElement: Record<string, any> | Array<Record<string, any>>;
|
|
70
|
+
firstDirection?: {
|
|
71
|
+
linearWithinLinearGNElement?: Array<{
|
|
72
|
+
sectionId: string;
|
|
73
|
+
}>;
|
|
74
|
+
};
|
|
75
|
+
secondDirection?: {
|
|
76
|
+
linearWithinLinearGNElement?: Array<{
|
|
77
|
+
sectionId: string;
|
|
78
|
+
}>;
|
|
79
|
+
};
|
|
70
80
|
}
|
|
71
81
|
interface ILatLonCoordinate {
|
|
72
82
|
latitude: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"TrafficRestrictionsInterface.js","sourceRoot":"","sources":["../../../src/integration-engine/transformations/TrafficRestrictionsInterface.ts"],"names":[],"mappings":";;;
|
|
1
|
+
{"version":3,"file":"TrafficRestrictionsInterface.js","sourceRoot":"","sources":["../../../src/integration-engine/transformations/TrafficRestrictionsInterface.ts"],"names":[],"mappings":";;;AAwJA,IAAY,4BAKX;AALD,WAAY,4BAA4B;IACpC,wEAAwC,CAAA;IACxC,0EAA0C,CAAA;IAC1C,sEAAsC,CAAA;IACtC,6GAA6E,CAAA;AACjF,CAAC,EALW,4BAA4B,4CAA5B,4BAA4B,QAKvC"}
|
|
@@ -125,13 +125,14 @@ class TrafficRestrictionsTransformation extends integration_engine_1.BaseTransfo
|
|
|
125
125
|
supplementary_positional_description: situationRecord.groupOfLocations.supplementaryPositionalDescription,
|
|
126
126
|
alert_c_linear: situationRecord.groupOfLocations.alertCLinear,
|
|
127
127
|
linear_within_linear_element: situationRecord.groupOfLocations.linearWithinLinearElement,
|
|
128
|
-
global_network_linear: situationRecord.groupOfLocations
|
|
128
|
+
global_network_linear: this.buildGlobalNetworkLinear(situationRecord.groupOfLocations),
|
|
129
129
|
linear_extension: situationRecord.groupOfLocations.linearExtension,
|
|
130
130
|
destination: situationRecord.groupOfLocations.destination,
|
|
131
131
|
// Geom
|
|
132
132
|
alert_c_direction: this.parseAlertCDirection(situationRecord.groupOfLocations.alertCLinear),
|
|
133
133
|
geom_openlr_line: this.parseGeomOpenlrLine(situationRecord.groupOfLocations.linearExtension),
|
|
134
|
-
geom_gn_line: this.parseGeomGnLine(situationRecord.groupOfLocations.globalNetworkLinear)
|
|
134
|
+
geom_gn_line: this.parseGeomGnLine(situationRecord.groupOfLocations.globalNetworkLinear) ??
|
|
135
|
+
this.parseGeomOpenlrLine(situationRecord.groupOfLocations.linearExtension),
|
|
135
136
|
// SR extension
|
|
136
137
|
situation_record_extension: situationRecord.situationRecordExtension,
|
|
137
138
|
// Situation record specific type params
|
|
@@ -184,6 +185,19 @@ class TrafficRestrictionsTransformation extends integration_engine_1.BaseTransfo
|
|
|
184
185
|
};
|
|
185
186
|
this.name = _sch_1.Ndic.traffic_restrictions.name;
|
|
186
187
|
}
|
|
188
|
+
buildGlobalNetworkLinear(groupOfLocations) {
|
|
189
|
+
const globalNetworkLinearTop = groupOfLocations.globalNetworkLinear;
|
|
190
|
+
const globalNetworkLinearInside = groupOfLocations.linearExtension?.globalNetworkLinear;
|
|
191
|
+
if (globalNetworkLinearTop)
|
|
192
|
+
return globalNetworkLinearTop;
|
|
193
|
+
if (globalNetworkLinearInside)
|
|
194
|
+
return globalNetworkLinearInside;
|
|
195
|
+
const linearExtension = groupOfLocations.linearExtension;
|
|
196
|
+
if (linearExtension && "openlrExtendedLinear" in linearExtension && linearExtension.openlrExtendedLinear) {
|
|
197
|
+
return { source: "openlr", ...linearExtension.openlrExtendedLinear };
|
|
198
|
+
}
|
|
199
|
+
return { source: "linearExtension", ...(linearExtension ?? {}) };
|
|
200
|
+
}
|
|
187
201
|
}
|
|
188
202
|
exports.TrafficRestrictionsTransformation = TrafficRestrictionsTransformation;
|
|
189
203
|
//# sourceMappingURL=TrafficRestrictionsTransformation.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"TrafficRestrictionsTransformation.js","sourceRoot":"","sources":["../../../src/integration-engine/transformations/TrafficRestrictionsTransformation.ts"],"names":[],"mappings":"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
|
|
1
|
+
{"version":3,"file":"TrafficRestrictionsTransformation.js","sourceRoot":"","sources":["../../../src/integration-engine/transformations/TrafficRestrictionsTransformation.ts"],"names":[],"mappings":"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"}
|
|
@@ -103,29 +103,7 @@ class OutputTrafficRestrictionsTransformation {
|
|
|
103
103
|
},
|
|
104
104
|
forVehiclesWithCharacteristicsOf: record.for_vehicles_with_characteristics_of || undefined,
|
|
105
105
|
};
|
|
106
|
-
if (record.
|
|
107
|
-
newLine.alertCLinear = {
|
|
108
|
-
type: record.alert_c_linear?.$["xsi:type"] || null,
|
|
109
|
-
alertCLocationCountryCode: record.alert_c_linear?.alertCLocationCountryCode || null,
|
|
110
|
-
alertCLocationTableNumber: record.alert_c_linear?.alertCLocationTableNumber || null,
|
|
111
|
-
alertCLocationTableVersion: record.alert_c_linear?.alertCLocationTableVersion || null,
|
|
112
|
-
alertCDirection: {
|
|
113
|
-
alertCDirectionCoded: record.alert_c_linear?.alertCDirection.alertCDirectionCoded.toUpperCase() || null,
|
|
114
|
-
},
|
|
115
|
-
alertCMethod2PrimaryPointLocation: {
|
|
116
|
-
alertCLocation: {
|
|
117
|
-
specificLocation: ltEnd,
|
|
118
|
-
},
|
|
119
|
-
},
|
|
120
|
-
alertCMethod2SecondaryPointLocation: {
|
|
121
|
-
alertCLocation: {
|
|
122
|
-
specificLocation: ltStart,
|
|
123
|
-
},
|
|
124
|
-
},
|
|
125
|
-
};
|
|
126
|
-
newLine.osmPath = record.osm_path;
|
|
127
|
-
}
|
|
128
|
-
else if (record.global_network_linear) {
|
|
106
|
+
if (record.osm_path) {
|
|
129
107
|
newLine.osmPath = record.osm_path;
|
|
130
108
|
}
|
|
131
109
|
resultRecordsArr.push(newLine);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"OutputTrafficRestrictionsTransformation.js","sourceRoot":"","sources":["../../../src/output-gateway/transformations/OutputTrafficRestrictionsTransformation.ts"],"names":[],"mappings":";;;AAAA,wFAA+D;AAC/D,wHAM0D;AAC1D,mDAA4B;AAC5B,wDAAsD;AAGtD,MAAa,uCAAuC;IAIhD,YAAY,0BAAsD;QAK3D,cAAS,GAAG,KAAK,EAAE,IAAiC,EAAE,EAAE;YAC3D,iEAAiE;YACjE,MAAM,eAAe,GAAS,IAAI,CAAC,MAAM,CAAC,CAAC,GAAG,EAAE,IAAI,EAAE,EAAE,CAAC,CAAC,GAAG,CAAC,gBAAgB,GAAG,IAAI,CAAC,gBAAgB,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC;iBAChH,gBAAmC,CAAC;YAEzC,MAAM,MAAM,GAA2B;gBACnC,gBAAgB,EAAE,GAAG;gBACrB,yBAAyB,EAAE;oBACvB,IAAI,EAAE,IAAI;oBACV,eAAe,EAAE,IAAA,kBAAQ,EAAC,eAAe,CAAC,CAAC,WAAW,CAAC,eAAe,CAAC,CAAC,WAAW,EAAE;oBACrF,kBAAkB,EAAE;wBAChB,OAAO,EAAE,IAAI;wBACb,kBAAkB,EAAE,MAAM;qBAC7B;oBACD,SAAS,EAAE,MAAM,IAAI,CAAC,sBAAsB,CAAC,IAAI,CAAC;iBACrD;aACJ,CAAC;YAEF,OAAO,MAAM,CAAC;QAClB,CAAC,CAAC;
|
|
1
|
+
{"version":3,"file":"OutputTrafficRestrictionsTransformation.js","sourceRoot":"","sources":["../../../src/output-gateway/transformations/OutputTrafficRestrictionsTransformation.ts"],"names":[],"mappings":"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"}
|
|
@@ -216,6 +216,20 @@ declare const forExport: {
|
|
|
216
216
|
};
|
|
217
217
|
additionalProperties: boolean;
|
|
218
218
|
};
|
|
219
|
+
DirectionBranch: {
|
|
220
|
+
type: string;
|
|
221
|
+
additionalProperties: boolean;
|
|
222
|
+
required: string[];
|
|
223
|
+
properties: {
|
|
224
|
+
linearWithinLinearGNElement: {
|
|
225
|
+
type: string;
|
|
226
|
+
minItems: number;
|
|
227
|
+
items: {
|
|
228
|
+
$ref: string;
|
|
229
|
+
};
|
|
230
|
+
};
|
|
231
|
+
};
|
|
232
|
+
};
|
|
219
233
|
DisturbanceActivity: {
|
|
220
234
|
type: string;
|
|
221
235
|
properties: {
|
|
@@ -487,14 +501,85 @@ declare const forExport: {
|
|
|
487
501
|
};
|
|
488
502
|
globalNetworkLinear: {
|
|
489
503
|
type: string;
|
|
504
|
+
properties: {
|
|
505
|
+
linearGeometryType: {
|
|
506
|
+
type: string;
|
|
507
|
+
enum: string[];
|
|
508
|
+
};
|
|
509
|
+
directionality: {
|
|
510
|
+
type: string;
|
|
511
|
+
enum: string[];
|
|
512
|
+
};
|
|
513
|
+
globalNetworkLinearExtension: {
|
|
514
|
+
$ref: string;
|
|
515
|
+
};
|
|
516
|
+
networkVersion: {
|
|
517
|
+
type: string;
|
|
518
|
+
};
|
|
519
|
+
startPoint: {
|
|
520
|
+
type: string;
|
|
521
|
+
};
|
|
522
|
+
endPoint: {
|
|
523
|
+
type: string;
|
|
524
|
+
};
|
|
525
|
+
firstDirection: {
|
|
526
|
+
$ref: string;
|
|
527
|
+
};
|
|
528
|
+
oppositeDirection: {
|
|
529
|
+
$ref: string;
|
|
530
|
+
};
|
|
531
|
+
};
|
|
532
|
+
allOf: {
|
|
533
|
+
if: {
|
|
534
|
+
properties: {
|
|
535
|
+
directionality: {
|
|
536
|
+
enum: string[];
|
|
537
|
+
};
|
|
538
|
+
};
|
|
539
|
+
required: string[];
|
|
540
|
+
};
|
|
541
|
+
then: {
|
|
542
|
+
required: string[];
|
|
543
|
+
};
|
|
544
|
+
}[];
|
|
490
545
|
};
|
|
491
546
|
linearExtension: {
|
|
492
547
|
type: string;
|
|
548
|
+
properties: {
|
|
549
|
+
globalNetworkLinear: {
|
|
550
|
+
type: string;
|
|
551
|
+
};
|
|
552
|
+
};
|
|
493
553
|
};
|
|
494
554
|
};
|
|
495
555
|
$ref?: undefined;
|
|
496
556
|
})[];
|
|
497
557
|
};
|
|
558
|
+
LinearWithinLinearGNElement: {
|
|
559
|
+
type: string;
|
|
560
|
+
additionalProperties: boolean;
|
|
561
|
+
required: string[];
|
|
562
|
+
properties: {
|
|
563
|
+
sectionId: {
|
|
564
|
+
type: string;
|
|
565
|
+
minimum: number;
|
|
566
|
+
};
|
|
567
|
+
directionRelativeOnLinearSection: {
|
|
568
|
+
type: string;
|
|
569
|
+
enum: string[];
|
|
570
|
+
};
|
|
571
|
+
orderOfSection: {
|
|
572
|
+
type: string;
|
|
573
|
+
minimum: number;
|
|
574
|
+
};
|
|
575
|
+
fromPoint: {
|
|
576
|
+
$ref: string;
|
|
577
|
+
};
|
|
578
|
+
toPoint: {
|
|
579
|
+
$ref: string;
|
|
580
|
+
};
|
|
581
|
+
};
|
|
582
|
+
};
|
|
498
583
|
MaintenanceWorks: {
|
|
499
584
|
allOf: ({
|
|
500
585
|
$ref: string;
|
|
@@ -683,6 +768,22 @@ declare const forExport: {
|
|
|
683
768
|
required: string[];
|
|
684
769
|
additionalProperties: boolean;
|
|
685
770
|
};
|
|
771
|
+
PercentageDistancePoint: {
|
|
772
|
+
type: string;
|
|
773
|
+
additionalProperties: boolean;
|
|
774
|
+
required: string[];
|
|
775
|
+
properties: {
|
|
776
|
+
"xsi:type": {
|
|
777
|
+
type: string;
|
|
778
|
+
enum: string[];
|
|
779
|
+
};
|
|
780
|
+
percentageDistanceAlong: {
|
|
781
|
+
type: string;
|
|
782
|
+
minimum: number;
|
|
783
|
+
maximum: number;
|
|
784
|
+
};
|
|
785
|
+
};
|
|
786
|
+
};
|
|
686
787
|
PoorEnvironmentConditions: {
|
|
687
788
|
allOf: ({
|
|
688
789
|
$ref: string;
|
|
@@ -210,6 +210,20 @@ export declare const datasourceTrafficInfoSchema: {
|
|
|
210
210
|
};
|
|
211
211
|
additionalProperties: boolean;
|
|
212
212
|
};
|
|
213
|
+
DirectionBranch: {
|
|
214
|
+
type: string;
|
|
215
|
+
additionalProperties: boolean;
|
|
216
|
+
required: string[];
|
|
217
|
+
properties: {
|
|
218
|
+
linearWithinLinearGNElement: {
|
|
219
|
+
type: string;
|
|
220
|
+
minItems: number;
|
|
221
|
+
items: {
|
|
222
|
+
$ref: string;
|
|
223
|
+
};
|
|
224
|
+
};
|
|
225
|
+
};
|
|
226
|
+
};
|
|
213
227
|
DisturbanceActivity: {
|
|
214
228
|
type: string;
|
|
215
229
|
properties: {
|
|
@@ -481,14 +495,85 @@ export declare const datasourceTrafficInfoSchema: {
|
|
|
481
495
|
};
|
|
482
496
|
globalNetworkLinear: {
|
|
483
497
|
type: string;
|
|
498
|
+
properties: {
|
|
499
|
+
linearGeometryType: {
|
|
500
|
+
type: string;
|
|
501
|
+
enum: string[];
|
|
502
|
+
};
|
|
503
|
+
directionality: {
|
|
504
|
+
type: string;
|
|
505
|
+
enum: string[];
|
|
506
|
+
};
|
|
507
|
+
globalNetworkLinearExtension: {
|
|
508
|
+
$ref: string;
|
|
509
|
+
};
|
|
510
|
+
networkVersion: {
|
|
511
|
+
type: string;
|
|
512
|
+
};
|
|
513
|
+
startPoint: {
|
|
514
|
+
type: string;
|
|
515
|
+
};
|
|
516
|
+
endPoint: {
|
|
517
|
+
type: string;
|
|
518
|
+
};
|
|
519
|
+
firstDirection: {
|
|
520
|
+
$ref: string;
|
|
521
|
+
};
|
|
522
|
+
oppositeDirection: {
|
|
523
|
+
$ref: string;
|
|
524
|
+
};
|
|
525
|
+
};
|
|
526
|
+
allOf: {
|
|
527
|
+
if: {
|
|
528
|
+
properties: {
|
|
529
|
+
directionality: {
|
|
530
|
+
enum: string[];
|
|
531
|
+
};
|
|
532
|
+
};
|
|
533
|
+
required: string[];
|
|
534
|
+
};
|
|
535
|
+
then: {
|
|
536
|
+
required: string[];
|
|
537
|
+
};
|
|
538
|
+
}[];
|
|
484
539
|
};
|
|
485
540
|
linearExtension: {
|
|
486
541
|
type: string;
|
|
542
|
+
properties: {
|
|
543
|
+
globalNetworkLinear: {
|
|
544
|
+
type: string;
|
|
545
|
+
};
|
|
546
|
+
};
|
|
487
547
|
};
|
|
488
548
|
};
|
|
489
549
|
$ref?: undefined;
|
|
490
550
|
})[];
|
|
491
551
|
};
|
|
552
|
+
LinearWithinLinearGNElement: {
|
|
553
|
+
type: string;
|
|
554
|
+
additionalProperties: boolean;
|
|
555
|
+
required: string[];
|
|
556
|
+
properties: {
|
|
557
|
+
sectionId: {
|
|
558
|
+
type: string;
|
|
559
|
+
minimum: number;
|
|
560
|
+
};
|
|
561
|
+
directionRelativeOnLinearSection: {
|
|
562
|
+
type: string;
|
|
563
|
+
enum: string[];
|
|
564
|
+
};
|
|
565
|
+
orderOfSection: {
|
|
566
|
+
type: string;
|
|
567
|
+
minimum: number;
|
|
568
|
+
};
|
|
569
|
+
fromPoint: {
|
|
570
|
+
$ref: string;
|
|
571
|
+
};
|
|
572
|
+
toPoint: {
|
|
573
|
+
$ref: string;
|
|
574
|
+
};
|
|
575
|
+
};
|
|
576
|
+
};
|
|
492
577
|
MaintenanceWorks: {
|
|
493
578
|
allOf: ({
|
|
494
579
|
$ref: string;
|
|
@@ -677,6 +762,22 @@ export declare const datasourceTrafficInfoSchema: {
|
|
|
677
762
|
required: string[];
|
|
678
763
|
additionalProperties: boolean;
|
|
679
764
|
};
|
|
765
|
+
PercentageDistancePoint: {
|
|
766
|
+
type: string;
|
|
767
|
+
additionalProperties: boolean;
|
|
768
|
+
required: string[];
|
|
769
|
+
properties: {
|
|
770
|
+
"xsi:type": {
|
|
771
|
+
type: string;
|
|
772
|
+
enum: string[];
|
|
773
|
+
};
|
|
774
|
+
percentageDistanceAlong: {
|
|
775
|
+
type: string;
|
|
776
|
+
minimum: number;
|
|
777
|
+
maximum: number;
|
|
778
|
+
};
|
|
779
|
+
};
|
|
780
|
+
};
|
|
680
781
|
PoorEnvironmentConditions: {
|
|
681
782
|
allOf: ({
|
|
682
783
|
$ref: string;
|
|
@@ -222,6 +222,20 @@ exports.datasourceTrafficInfoSchema = {
|
|
|
222
222
|
},
|
|
223
223
|
additionalProperties: false,
|
|
224
224
|
},
|
|
225
|
+
DirectionBranch: {
|
|
226
|
+
type: "object",
|
|
227
|
+
additionalProperties: false,
|
|
228
|
+
required: ["linearWithinLinearGNElement"],
|
|
229
|
+
properties: {
|
|
230
|
+
linearWithinLinearGNElement: {
|
|
231
|
+
type: "array",
|
|
232
|
+
minItems: 1,
|
|
233
|
+
items: {
|
|
234
|
+
$ref: "#/definitions/LinearWithinLinearGNElement",
|
|
235
|
+
},
|
|
236
|
+
},
|
|
237
|
+
},
|
|
238
|
+
},
|
|
225
239
|
DisturbanceActivity: {
|
|
226
240
|
type: "object",
|
|
227
241
|
properties: {
|
|
@@ -494,14 +508,75 @@ exports.datasourceTrafficInfoSchema = {
|
|
|
494
508
|
},
|
|
495
509
|
globalNetworkLinear: {
|
|
496
510
|
type: "object",
|
|
511
|
+
properties: {
|
|
512
|
+
linearGeometryType: {
|
|
513
|
+
type: "string",
|
|
514
|
+
enum: ["continuous", "segmented", "unknown"],
|
|
515
|
+
},
|
|
516
|
+
directionality: {
|
|
517
|
+
type: "string",
|
|
518
|
+
enum: ["oneDirection ", "bothDirection"],
|
|
519
|
+
},
|
|
520
|
+
globalNetworkLinearExtension: {
|
|
521
|
+
$ref: "#/definitions/_ExtensionType",
|
|
522
|
+
},
|
|
523
|
+
networkVersion: { type: "object" },
|
|
524
|
+
startPoint: { type: "object" },
|
|
525
|
+
endPoint: { type: "object" },
|
|
526
|
+
firstDirection: { $ref: "#/definitions/DirectionBranch" },
|
|
527
|
+
oppositeDirection: { $ref: "#/definitions/DirectionBranch" },
|
|
528
|
+
},
|
|
529
|
+
allOf: [
|
|
530
|
+
{
|
|
531
|
+
if: {
|
|
532
|
+
properties: {
|
|
533
|
+
directionality: {
|
|
534
|
+
enum: ["bothDirection"],
|
|
535
|
+
},
|
|
536
|
+
},
|
|
537
|
+
required: ["directionality"],
|
|
538
|
+
},
|
|
539
|
+
then: {
|
|
540
|
+
required: ["oppositeDirection"],
|
|
541
|
+
},
|
|
542
|
+
},
|
|
543
|
+
],
|
|
497
544
|
},
|
|
498
545
|
linearExtension: {
|
|
499
546
|
type: "object",
|
|
547
|
+
properties: {
|
|
548
|
+
globalNetworkLinear: { type: "object" },
|
|
549
|
+
},
|
|
500
550
|
},
|
|
501
551
|
},
|
|
502
552
|
},
|
|
503
553
|
],
|
|
504
554
|
},
|
|
555
|
+
LinearWithinLinearGNElement: {
|
|
556
|
+
type: "object",
|
|
557
|
+
additionalProperties: false,
|
|
558
|
+
required: ["sectionId", "directionRelativeOnLinearSection", "orderOfSection", "fromPoint", "toPoint"],
|
|
559
|
+
properties: {
|
|
560
|
+
sectionId: {
|
|
561
|
+
type: "integer",
|
|
562
|
+
minimum: 0,
|
|
563
|
+
},
|
|
564
|
+
directionRelativeOnLinearSection: {
|
|
565
|
+
type: "string",
|
|
566
|
+
enum: ["aligned", "opposite"],
|
|
567
|
+
},
|
|
568
|
+
orderOfSection: {
|
|
569
|
+
type: "integer",
|
|
570
|
+
minimum: 0,
|
|
571
|
+
},
|
|
572
|
+
fromPoint: {
|
|
573
|
+
$ref: "#/definitions/PercentageDistancePoint",
|
|
574
|
+
},
|
|
575
|
+
toPoint: {
|
|
576
|
+
$ref: "#/definitions/PercentageDistancePoint",
|
|
577
|
+
},
|
|
578
|
+
},
|
|
579
|
+
},
|
|
505
580
|
MaintenanceWorks: {
|
|
506
581
|
allOf: [
|
|
507
582
|
{
|
|
@@ -700,6 +775,22 @@ exports.datasourceTrafficInfoSchema = {
|
|
|
700
775
|
required: ["$", "publicationTime", "publicationCreator", "situation"],
|
|
701
776
|
additionalProperties: false,
|
|
702
777
|
},
|
|
778
|
+
PercentageDistancePoint: {
|
|
779
|
+
type: "object",
|
|
780
|
+
additionalProperties: false,
|
|
781
|
+
required: ["percentageDistanceAlong"],
|
|
782
|
+
properties: {
|
|
783
|
+
"xsi:type": {
|
|
784
|
+
type: "string",
|
|
785
|
+
enum: ["PercentageDistanceAlongLinearElement"],
|
|
786
|
+
},
|
|
787
|
+
percentageDistanceAlong: {
|
|
788
|
+
type: "number",
|
|
789
|
+
minimum: 0,
|
|
790
|
+
maximum: 1,
|
|
791
|
+
},
|
|
792
|
+
},
|
|
793
|
+
},
|
|
703
794
|
PoorEnvironmentConditions: {
|
|
704
795
|
allOf: [
|
|
705
796
|
{
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"traffic_info_datasource_schema.js","sourceRoot":"","sources":["../../../src/schema-definitions/schemas/traffic_info_datasource_schema.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"traffic_info_datasource_schema.js","sourceRoot":"","sources":["../../../src/schema-definitions/schemas/traffic_info_datasource_schema.ts"],"names":[],"mappings":"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"}
|
package/docs/openapi-input.yaml
CHANGED
|
@@ -78,9 +78,7 @@ paths:
|
|
|
78
78
|
examples:
|
|
79
79
|
xml:
|
|
80
80
|
summary: Sample response
|
|
81
|
-
value: '<?xml version="1.0" encoding="utf-8"?><d2LogicalModel modelBaseVersion="2"
|
|
82
|
-
xmlns="http://datex2.eu/schema/2/2_0"
|
|
83
|
-
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><exchange><supplierIdentification><country>cz</country><nationalIdentifier>DIC</nationalIdentifier></supplierIdentification></exchange><payloadPublication xsi:type="SituationPublication" lang="cs"><publicationTime>2021-06-08T05:59:51+02:00</publicationTime><publicationCreator><country>cz</country><nationalIdentifier>NDIC</nationalIdentifier></publicationCreator><situation id="9053a16c-87e1-4141-964e-39b607a168f8" version="5"><situationVersionTime>2021-06-08T05:59:45+02:00</situationVersionTime><headerInformation><confidentiality>noRestriction</confidentiality><informationStatus>real</informationStatus><urgency>urgent</urgency></headerInformation><situationRecord version="5" xsi:type="RoadOrCarriagewayOrLaneManagement" id="9053a16c-87e1-4141-964e-39b607a168f8_RoadOrCarriagewayOrLaneManagement"><situationRecordCreationTime>2021-06-08T05:59:45+02:00</situationRecordCreationTime><situationRecordVersionTime>2021-06-08T05:59:45+02:00</situationRecordVersionTime><probabilityOfOccurrence>certain</probabilityOfOccurrence><source><sourceIdentification>SSU</sourceIdentification><sourceName><values><value lang="cs" /></values></sourceName></source><validity><validityStatus>definedByValidityTimeSpec</validityStatus><validityTimeSpecification><overallStartTime>2021-06-08T09:00:00+02:00</overallStartTime><overallEndTime>2021-06-08T13:00:00+02:00</overallEndTime></validityTimeSpecification></validity><impact><numberOfOperationalLanes>2</numberOfOperationalLanes><originalNumberOfLanes>2</originalNumberOfLanes></impact><generalPublicComment><comment><values><value lang="cs">D1 ve směru Praha, mezi 81.1 a 52.3 km, v termínu od 08. 06. 2021 09:00 do 08. 06. 2021 13:00, údržba a opravy telematiky, rozsah: zpevněná krajnice (1),přídatný pruh (2) - pro pomalá vozidla, připojovací, odbočovací, počet průjezdných pruhů: 2</value></values></comment></generalPublicComment><groupOfLocations xsi:type="Linear"><alertCLinear xsi:type="AlertCMethod2Linear"><alertCLocationCountryCode>CZ</alertCLocationCountryCode><alertCLocationTableNumber>25</alertCLocationTableNumber><alertCLocationTableVersion>8.0</alertCLocationTableVersion><alertCDirection><alertCDirectionCoded>negative</alertCDirectionCoded></alertCDirection><alertCMethod2PrimaryPointLocation><alertCLocation><specificLocation>25546</specificLocation></alertCLocation></alertCMethod2PrimaryPointLocation><alertCMethod2SecondaryPointLocation><alertCLocation><specificLocation>25546</specificLocation></alertCLocation></alertCMethod2SecondaryPointLocation></alertCLinear><linearWithinLinearElement><directionRelativeOnLinearSection>opposite</directionRelativeOnLinearSection><linearElement><roadNumber>D1</roadNumber></linearElement><fromPoint xsi:type="DistanceFromLinearElementStart"><distanceAlong>81099</distanceAlong></fromPoint><toPoint xsi:type="DistanceFromLinearElementStart"><distanceAlong>52300</distanceAlong></toPoint></linearWithinLinearElement><globalNetworkLinear><networkVersion><values><value lang="cs">20.12</value></values></networkVersion><linearGeometryType>continuous</linearGeometryType><startPoint><sjtskPointCoordinates><sjtskX>-690296</sjtskX><sjtskY>-1106582</sjtskY></sjtskPointCoordinates></startPoint><endPoint><sjtskPointCoordinates><sjtskX>-705078</sjtskX><sjtskY>-1085568</sjtskY></sjtskPointCoordinates></endPoint><linearWithinLinearGNElement><sectionId>3656649</sectionId><directionRelativeOnLinearSection>aligned</directionRelativeOnLinearSection><orderOfSection>0</orderOfSection><fromPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>0.0271247739603447</percentageDistanceAlong></fromPoint><toPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>1</percentageDistanceAlong></toPoint></linearWithinLinearGNElement><linearWithinLinearGNElement><sectionId>3721423</sectionId><directionRelativeOnLinearSection>aligned</directionRelativeOnLinearSection><orderOfSection>1</orderOfSection><fromPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>0</percentageDistanceAlong></fromPoint><toPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>1</percentageDistanceAlong></toPoint></linearWithinLinearGNElement><linearWithinLinearGNElement><sectionId>3721422</sectionId><directionRelativeOnLinearSection>aligned</directionRelativeOnLinearSection><orderOfSection>2</orderOfSection><fromPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>0</percentageDistanceAlong></fromPoint><toPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>1</percentageDistanceAlong></toPoint></linearWithinLinearGNElement><linearWithinLinearGNElement><sectionId>1362974</sectionId><directionRelativeOnLinearSection>aligned</directionRelativeOnLinearSection><orderOfSection>3</orderOfSection><fromPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>0</percentageDistanceAlong></fromPoint><toPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>1</percentageDistanceAlong></toPoint></linearWithinLinearGNElement><linearWithinLinearGNElement><sectionId>1657166</sectionId><directionRelativeOnLinearSection>aligned</directionRelativeOnLinearSection><orderOfSection>4</orderOfSection><fromPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>0</percentageDistanceAlong></fromPoint><toPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>1</percentageDistanceAlong></toPoint></linearWithinLinearGNElement><linearWithinLinearGNElement><sectionId>1657167</sectionId><directionRelativeOnLinearSection>aligned</directionRelativeOnLinearSection><orderOfSection>5</orderOfSection><fromPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>0</percentageDistanceAlong></fromPoint><toPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>1</percentageDistanceAlong></toPoint></linearWithinLinearGNElement><linearWithinLinearGNElement><sectionId>3070107</sectionId><directionRelativeOnLinearSection>aligned</directionRelativeOnLinearSection><orderOfSection>6</orderOfSection><fromPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>0</percentageDistanceAlong></fromPoint><toPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>1</percentageDistanceAlong></toPoint></linearWithinLinearGNElement><linearWithinLinearGNElement><sectionId>3070109</sectionId><directionRelativeOnLinearSection>aligned</directionRelativeOnLinearSection><orderOfSection>7</orderOfSection><fromPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>0</percentageDistanceAlong></fromPoint><toPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>1</percentageDistanceAlong></toPoint></linearWithinLinearGNElement><linearWithinLinearGNElement><sectionId>2586318</sectionId><directionRelativeOnLinearSection>aligned</directionRelativeOnLinearSection><orderOfSection>8</orderOfSection><fromPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>0</percentageDistanceAlong></fromPoint><toPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>1</percentageDistanceAlong></toPoint></linearWithinLinearGNElement><linearWithinLinearGNElement><sectionId>716936</sectionId><directionRelativeOnLinearSection>aligned</directionRelativeOnLinearSection><orderOfSection>9</orderOfSection><fromPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>0</percentageDistanceAlong></fromPoint><toPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>1</percentageDistanceAlong></toPoint></linearWithinLinearGNElement><linearWithinLinearGNElement><sectionId>716919</sectionId><directionRelativeOnLinearSection>aligned</directionRelativeOnLinearSection><orderOfSection>10</orderOfSection><fromPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>0</percentageDistanceAlong></fromPoint><toPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>1</percentageDistanceAlong></toPoint></linearWithinLinearGNElement><linearWithinLinearGNElement><sectionId>716925</sectionId><directionRelativeOnLinearSection>aligned</directionRelativeOnLinearSection><orderOfSection>11</orderOfSection><fromPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>0</percentageDistanceAlong></fromPoint><toPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>1</percentageDistanceAlong></toPoint></linearWithinLinearGNElement><linearWithinLinearGNElement><sectionId>1362919</sectionId><directionRelativeOnLinearSection>aligned</directionRelativeOnLinearSection><orderOfSection>12</orderOfSection><fromPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>0</percentageDistanceAlong></fromPoint><toPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>1</percentageDistanceAlong></toPoint></linearWithinLinearGNElement><linearWithinLinearGNElement><sectionId>1362916</sectionId><directionRelativeOnLinearSection>aligned</directionRelativeOnLinearSection><orderOfSection>13</orderOfSection><fromPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>0</percentageDistanceAlong></fromPoint><toPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>1</percentageDistanceAlong></toPoint></linearWithinLinearGNElement><linearWithinLinearGNElement><sectionId>716920</sectionId><directionRelativeOnLinearSection>aligned</directionRelativeOnLinearSection><orderOfSection>14</orderOfSection><fromPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>0</percentageDistanceAlong></fromPoint><toPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>1</percentageDistanceAlong></toPoint></linearWithinLinearGNElement><linearWithinLinearGNElement><sectionId>3512137</sectionId><directionRelativeOnLinearSection>aligned</directionRelativeOnLinearSection><orderOfSection>15</orderOfSection><fromPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>0</percentageDistanceAlong></fromPoint><toPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>1</percentageDistanceAlong></toPoint></linearWithinLinearGNElement><linearWithinLinearGNElement><sectionId>3530265</sectionId><directionRelativeOnLinearSection>aligned</directionRelativeOnLinearSection><orderOfSection>16</orderOfSection><fromPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>0</percentageDistanceAlong></fromPoint><toPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>1</percentageDistanceAlong></toPoint></linearWithinLinearGNElement><linearWithinLinearGNElement><sectionId>1362911</sectionId><directionRelativeOnLinearSection>aligned</directionRelativeOnLinearSection><orderOfSection>17</orderOfSection><fromPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>0</percentageDistanceAlong></fromPoint><toPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>1</percentageDistanceAlong></toPoint></linearWithinLinearGNElement><linearWithinLinearGNElement><sectionId>1362884</sectionId><directionRelativeOnLinearSection>aligned</directionRelativeOnLinearSection><orderOfSection>18</orderOfSection><fromPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>0</percentageDistanceAlong></fromPoint><toPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>1</percentageDistanceAlong></toPoint></linearWithinLinearGNElement><linearWithinLinearGNElement><sectionId>3661066</sectionId><directionRelativeOnLinearSection>aligned</directionRelativeOnLinearSection><orderOfSection>19</orderOfSection><fromPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>0</percentageDistanceAlong></fromPoint><toPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>1</percentageDistanceAlong></toPoint></linearWithinLinearGNElement><linearWithinLinearGNElement><sectionId>3721442</sectionId><directionRelativeOnLinearSection>aligned</directionRelativeOnLinearSection><orderOfSection>20</orderOfSection><fromPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>0</percentageDistanceAlong></fromPoint><toPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>1</percentageDistanceAlong></toPoint></linearWithinLinearGNElement><linearWithinLinearGNElement><sectionId>3571819</sectionId><directionRelativeOnLinearSection>aligned</directionRelativeOnLinearSection><orderOfSection>21</orderOfSection><fromPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>0</percentageDistanceAlong></fromPoint><toPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>1</percentageDistanceAlong></toPoint></linearWithinLinearGNElement><linearWithinLinearGNElement><sectionId>1419782</sectionId><directionRelativeOnLinearSection>aligned</directionRelativeOnLinearSection><orderOfSection>22</orderOfSection><fromPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>0</percentageDistanceAlong></fromPoint><toPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>1</percentageDistanceAlong></toPoint></linearWithinLinearGNElement><linearWithinLinearGNElement><sectionId>3532142</sectionId><directionRelativeOnLinearSection>aligned</directionRelativeOnLinearSection><orderOfSection>23</orderOfSection><fromPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>0</percentageDistanceAlong></fromPoint><toPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>1</percentageDistanceAlong></toPoint></linearWithinLinearGNElement><linearWithinLinearGNElement><sectionId>3532140</sectionId><directionRelativeOnLinearSection>aligned</directionRelativeOnLinearSection><orderOfSection>24</orderOfSection><fromPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>0</percentageDistanceAlong></fromPoint><toPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>1</percentageDistanceAlong></toPoint></linearWithinLinearGNElement><linearWithinLinearGNElement><sectionId>3532143</sectionId><directionRelativeOnLinearSection>aligned</directionRelativeOnLinearSection><orderOfSection>25</orderOfSection><fromPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>0</percentageDistanceAlong></fromPoint><toPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>1</percentageDistanceAlong></toPoint></linearWithinLinearGNElement><linearWithinLinearGNElement><sectionId>3707315</sectionId><directionRelativeOnLinearSection>aligned</directionRelativeOnLinearSection><orderOfSection>26</orderOfSection><fromPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>0</percentageDistanceAlong></fromPoint><toPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>1</percentageDistanceAlong></toPoint></linearWithinLinearGNElement><linearWithinLinearGNElement><sectionId>3707316</sectionId><directionRelativeOnLinearSection>aligned</directionRelativeOnLinearSection><orderOfSection>27</orderOfSection><fromPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>0</percentageDistanceAlong></fromPoint><toPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>1</percentageDistanceAlong></toPoint></linearWithinLinearGNElement><linearWithinLinearGNElement><sectionId>3661017</sectionId><directionRelativeOnLinearSection>aligned</directionRelativeOnLinearSection><orderOfSection>28</orderOfSection><fromPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>0</percentageDistanceAlong></fromPoint><toPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>1</percentageDistanceAlong></toPoint></linearWithinLinearGNElement><linearWithinLinearGNElement><sectionId>3102875</sectionId><directionRelativeOnLinearSection>aligned</directionRelativeOnLinearSection><orderOfSection>29</orderOfSection><fromPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>0</percentageDistanceAlong></fromPoint><toPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>1</percentageDistanceAlong></toPoint></linearWithinLinearGNElement><linearWithinLinearGNElement><sectionId>3512428</sectionId><directionRelativeOnLinearSection>aligned</directionRelativeOnLinearSection><orderOfSection>30</orderOfSection><fromPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>0</percentageDistanceAlong></fromPoint><toPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>1</percentageDistanceAlong></toPoint></linearWithinLinearGNElement><linearWithinLinearGNElement><sectionId>3530262</sectionId><directionRelativeOnLinearSection>aligned</directionRelativeOnLinearSection><orderOfSection>31</orderOfSection><fromPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>0</percentageDistanceAlong></fromPoint><toPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>1</percentageDistanceAlong></toPoint></linearWithinLinearGNElement><linearWithinLinearGNElement><sectionId>3530261</sectionId><directionRelativeOnLinearSection>aligned</directionRelativeOnLinearSection><orderOfSection>32</orderOfSection><fromPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>0</percentageDistanceAlong></fromPoint><toPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>1</percentageDistanceAlong></toPoint></linearWithinLinearGNElement><linearWithinLinearGNElement><sectionId>1482787</sectionId><directionRelativeOnLinearSection>aligned</directionRelativeOnLinearSection><orderOfSection>33</orderOfSection><fromPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>0</percentageDistanceAlong></fromPoint><toPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>1</percentageDistanceAlong></toPoint></linearWithinLinearGNElement><linearWithinLinearGNElement><sectionId>1482785</sectionId><directionRelativeOnLinearSection>aligned</directionRelativeOnLinearSection><orderOfSection>34</orderOfSection><fromPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>0</percentageDistanceAlong></fromPoint><toPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>1</percentageDistanceAlong></toPoint></linearWithinLinearGNElement><linearWithinLinearGNElement><sectionId>3513643</sectionId><directionRelativeOnLinearSection>aligned</directionRelativeOnLinearSection><orderOfSection>35</orderOfSection><fromPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>0</percentageDistanceAlong></fromPoint><toPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>1</percentageDistanceAlong></toPoint></linearWithinLinearGNElement><linearWithinLinearGNElement><sectionId>3530258</sectionId><directionRelativeOnLinearSection>aligned</directionRelativeOnLinearSection><orderOfSection>36</orderOfSection><fromPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>0</percentageDistanceAlong></fromPoint><toPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>1</percentageDistanceAlong></toPoint></linearWithinLinearGNElement><linearWithinLinearGNElement><sectionId>3512427</sectionId><directionRelativeOnLinearSection>aligned</directionRelativeOnLinearSection><orderOfSection>37</orderOfSection><fromPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>0</percentageDistanceAlong></fromPoint><toPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>1</percentageDistanceAlong></toPoint></linearWithinLinearGNElement><linearWithinLinearGNElement><sectionId>3530259</sectionId><directionRelativeOnLinearSection>aligned</directionRelativeOnLinearSection><orderOfSection>38</orderOfSection><fromPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>0</percentageDistanceAlong></fromPoint><toPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>1</percentageDistanceAlong></toPoint></linearWithinLinearGNElement><linearWithinLinearGNElement><sectionId>3503886</sectionId><directionRelativeOnLinearSection>aligned</directionRelativeOnLinearSection><orderOfSection>39</orderOfSection><fromPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>0</percentageDistanceAlong></fromPoint><toPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>1</percentageDistanceAlong></toPoint></linearWithinLinearGNElement><linearWithinLinearGNElement><sectionId>3503888</sectionId><directionRelativeOnLinearSection>aligned</directionRelativeOnLinearSection><orderOfSection>40</orderOfSection><fromPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>0</percentageDistanceAlong></fromPoint><toPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>1</percentageDistanceAlong></toPoint></linearWithinLinearGNElement><linearWithinLinearGNElement><sectionId>716762</sectionId><directionRelativeOnLinearSection>aligned</directionRelativeOnLinearSection><orderOfSection>41</orderOfSection><fromPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>0</percentageDistanceAlong></fromPoint><toPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>1</percentageDistanceAlong></toPoint></linearWithinLinearGNElement><linearWithinLinearGNElement><sectionId>3530260</sectionId><directionRelativeOnLinearSection>aligned</directionRelativeOnLinearSection><orderOfSection>42</orderOfSection><fromPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>0</percentageDistanceAlong></fromPoint><toPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>1</percentageDistanceAlong></toPoint></linearWithinLinearGNElement><linearWithinLinearGNElement><sectionId>3512429</sectionId><directionRelativeOnLinearSection>aligned</directionRelativeOnLinearSection><orderOfSection>43</orderOfSection><fromPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>0</percentageDistanceAlong></fromPoint><toPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>1</percentageDistanceAlong></toPoint></linearWithinLinearGNElement><linearWithinLinearGNElement><sectionId>3720895</sectionId><directionRelativeOnLinearSection>aligned</directionRelativeOnLinearSection><orderOfSection>44</orderOfSection><fromPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>0</percentageDistanceAlong></fromPoint><toPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>1</percentageDistanceAlong></toPoint></linearWithinLinearGNElement><linearWithinLinearGNElement><sectionId>3720896</sectionId><directionRelativeOnLinearSection>aligned</directionRelativeOnLinearSection><orderOfSection>45</orderOfSection><fromPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>0</percentageDistanceAlong></fromPoint><toPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>1</percentageDistanceAlong></toPoint></linearWithinLinearGNElement><linearWithinLinearGNElement><sectionId>3668308</sectionId><directionRelativeOnLinearSection>aligned</directionRelativeOnLinearSection><orderOfSection>46</orderOfSection><fromPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>0</percentageDistanceAlong></fromPoint><toPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>1</percentageDistanceAlong></toPoint></linearWithinLinearGNElement><linearWithinLinearGNElement><sectionId>3503890</sectionId><directionRelativeOnLinearSection>aligned</directionRelativeOnLinearSection><orderOfSection>47</orderOfSection><fromPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>0</percentageDistanceAlong></fromPoint><toPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>1</percentageDistanceAlong></toPoint></linearWithinLinearGNElement><linearWithinLinearGNElement><sectionId>3668307</sectionId><directionRelativeOnLinearSection>aligned</directionRelativeOnLinearSection><orderOfSection>48</orderOfSection><fromPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>0</percentageDistanceAlong></fromPoint><toPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>1</percentageDistanceAlong></toPoint></linearWithinLinearGNElement><linearWithinLinearGNElement><sectionId>3720835</sectionId><directionRelativeOnLinearSection>aligned</directionRelativeOnLinearSection><orderOfSection>49</orderOfSection><fromPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>0</percentageDistanceAlong></fromPoint><toPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>1</percentageDistanceAlong></toPoint></linearWithinLinearGNElement><linearWithinLinearGNElement><sectionId>3720834</sectionId><directionRelativeOnLinearSection>aligned</directionRelativeOnLinearSection><orderOfSection>50</orderOfSection><fromPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>0</percentageDistanceAlong></fromPoint><toPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>1</percentageDistanceAlong></toPoint></linearWithinLinearGNElement><linearWithinLinearGNElement><sectionId>3709900</sectionId><directionRelativeOnLinearSection>aligned</directionRelativeOnLinearSection><orderOfSection>51</orderOfSection><fromPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>0</percentageDistanceAlong></fromPoint><toPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>1</percentageDistanceAlong></toPoint></linearWithinLinearGNElement><linearWithinLinearGNElement><sectionId>3709901</sectionId><directionRelativeOnLinearSection>aligned</directionRelativeOnLinearSection><orderOfSection>52</orderOfSection><fromPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>0</percentageDistanceAlong></fromPoint><toPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>1</percentageDistanceAlong></toPoint></linearWithinLinearGNElement><linearWithinLinearGNElement><sectionId>3667995</sectionId><directionRelativeOnLinearSection>aligned</directionRelativeOnLinearSection><orderOfSection>53</orderOfSection><fromPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>0</percentageDistanceAlong></fromPoint><toPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>1</percentageDistanceAlong></toPoint></linearWithinLinearGNElement><linearWithinLinearGNElement><sectionId>3068859</sectionId><directionRelativeOnLinearSection>aligned</directionRelativeOnLinearSection><orderOfSection>54</orderOfSection><fromPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>0</percentageDistanceAlong></fromPoint><toPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>1</percentageDistanceAlong></toPoint></linearWithinLinearGNElement><linearWithinLinearGNElement><sectionId>2015268</sectionId><directionRelativeOnLinearSection>aligned</directionRelativeOnLinearSection><orderOfSection>55</orderOfSection><fromPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>0</percentageDistanceAlong></fromPoint><toPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>1</percentageDistanceAlong></toPoint></linearWithinLinearGNElement><linearWithinLinearGNElement><sectionId>3720829</sectionId><directionRelativeOnLinearSection>aligned</directionRelativeOnLinearSection><orderOfSection>56</orderOfSection><fromPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>0</percentageDistanceAlong></fromPoint><toPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>1</percentageDistanceAlong></toPoint></linearWithinLinearGNElement><linearWithinLinearGNElement><sectionId>3720831</sectionId><directionRelativeOnLinearSection>aligned</directionRelativeOnLinearSection><orderOfSection>57</orderOfSection><fromPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>0</percentageDistanceAlong></fromPoint><toPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>1</percentageDistanceAlong></toPoint></linearWithinLinearGNElement><linearWithinLinearGNElement><sectionId>3668462</sectionId><directionRelativeOnLinearSection>aligned</directionRelativeOnLinearSection><orderOfSection>58</orderOfSection><fromPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>0</percentageDistanceAlong></fromPoint><toPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>1</percentageDistanceAlong></toPoint></linearWithinLinearGNElement><linearWithinLinearGNElement><sectionId>3532144</sectionId><directionRelativeOnLinearSection>aligned</directionRelativeOnLinearSection><orderOfSection>59</orderOfSection><fromPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>0</percentageDistanceAlong></fromPoint><toPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>1</percentageDistanceAlong></toPoint></linearWithinLinearGNElement><linearWithinLinearGNElement><sectionId>1397926</sectionId><directionRelativeOnLinearSection>aligned</directionRelativeOnLinearSection><orderOfSection>60</orderOfSection><fromPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>0</percentageDistanceAlong></fromPoint><toPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>1</percentageDistanceAlong></toPoint></linearWithinLinearGNElement><linearWithinLinearGNElement><sectionId>1397927</sectionId><directionRelativeOnLinearSection>aligned</directionRelativeOnLinearSection><orderOfSection>61</orderOfSection><fromPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>0</percentageDistanceAlong></fromPoint><toPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>1</percentageDistanceAlong></toPoint></linearWithinLinearGNElement><linearWithinLinearGNElement><sectionId>1397928</sectionId><directionRelativeOnLinearSection>aligned</directionRelativeOnLinearSection><orderOfSection>62</orderOfSection><fromPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>0</percentageDistanceAlong></fromPoint><toPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>1</percentageDistanceAlong></toPoint></linearWithinLinearGNElement><linearWithinLinearGNElement><sectionId>3503892</sectionId><directionRelativeOnLinearSection>aligned</directionRelativeOnLinearSection><orderOfSection>63</orderOfSection><fromPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>0</percentageDistanceAlong></fromPoint><toPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>1</percentageDistanceAlong></toPoint></linearWithinLinearGNElement><linearWithinLinearGNElement><sectionId>3503893</sectionId><directionRelativeOnLinearSection>aligned</directionRelativeOnLinearSection><orderOfSection>64</orderOfSection><fromPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>0</percentageDistanceAlong></fromPoint><toPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>1</percentageDistanceAlong></toPoint></linearWithinLinearGNElement><linearWithinLinearGNElement><sectionId>2577677</sectionId><directionRelativeOnLinearSection>aligned</directionRelativeOnLinearSection><orderOfSection>65</orderOfSection><fromPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>0</percentageDistanceAlong></fromPoint><toPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>1</percentageDistanceAlong></toPoint></linearWithinLinearGNElement><linearWithinLinearGNElement><sectionId>3513659</sectionId><directionRelativeOnLinearSection>aligned</directionRelativeOnLinearSection><orderOfSection>66</orderOfSection><fromPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>0</percentageDistanceAlong></fromPoint><toPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>1</percentageDistanceAlong></toPoint></linearWithinLinearGNElement><linearWithinLinearGNElement><sectionId>3532145</sectionId><directionRelativeOnLinearSection>aligned</directionRelativeOnLinearSection><orderOfSection>67</orderOfSection><fromPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>0</percentageDistanceAlong></fromPoint><toPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>1</percentageDistanceAlong></toPoint></linearWithinLinearGNElement><linearWithinLinearGNElement><sectionId>1355578</sectionId><directionRelativeOnLinearSection>aligned</directionRelativeOnLinearSection><orderOfSection>68</orderOfSection><fromPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>0</percentageDistanceAlong></fromPoint><toPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>1</percentageDistanceAlong></toPoint></linearWithinLinearGNElement><linearWithinLinearGNElement><sectionId>716299</sectionId><directionRelativeOnLinearSection>aligned</directionRelativeOnLinearSection><orderOfSection>69</orderOfSection><fromPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>0</percentageDistanceAlong></fromPoint><toPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>1</percentageDistanceAlong></toPoint></linearWithinLinearGNElement><linearWithinLinearGNElement><sectionId>2577671</sectionId><directionRelativeOnLinearSection>aligned</directionRelativeOnLinearSection><orderOfSection>70</orderOfSection><fromPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>0</percentageDistanceAlong></fromPoint><toPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>1</percentageDistanceAlong></toPoint></linearWithinLinearGNElement><linearWithinLinearGNElement><sectionId>2577673</sectionId><directionRelativeOnLinearSection>aligned</directionRelativeOnLinearSection><orderOfSection>71</orderOfSection><fromPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>0</percentageDistanceAlong></fromPoint><toPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>1</percentageDistanceAlong></toPoint></linearWithinLinearGNElement><linearWithinLinearGNElement><sectionId>716287</sectionId><directionRelativeOnLinearSection>aligned</directionRelativeOnLinearSection><orderOfSection>72</orderOfSection><fromPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>0</percentageDistanceAlong></fromPoint><toPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>1</percentageDistanceAlong></toPoint></linearWithinLinearGNElement><linearWithinLinearGNElement><sectionId>716286</sectionId><directionRelativeOnLinearSection>aligned</directionRelativeOnLinearSection><orderOfSection>73</orderOfSection><fromPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>0</percentageDistanceAlong></fromPoint><toPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>1</percentageDistanceAlong></toPoint></linearWithinLinearGNElement><linearWithinLinearGNElement><sectionId>716285</sectionId><directionRelativeOnLinearSection>aligned</directionRelativeOnLinearSection><orderOfSection>74</orderOfSection><fromPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>0</percentageDistanceAlong></fromPoint><toPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>1</percentageDistanceAlong></toPoint></linearWithinLinearGNElement><linearWithinLinearGNElement><sectionId>716281</sectionId><directionRelativeOnLinearSection>aligned</directionRelativeOnLinearSection><orderOfSection>75</orderOfSection><fromPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>0</percentageDistanceAlong></fromPoint><toPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>1</percentageDistanceAlong></toPoint></linearWithinLinearGNElement><linearWithinLinearGNElement><sectionId>716280</sectionId><directionRelativeOnLinearSection>aligned</directionRelativeOnLinearSection><orderOfSection>76</orderOfSection><fromPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>0</percentageDistanceAlong></fromPoint><toPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>1</percentageDistanceAlong></toPoint></linearWithinLinearGNElement><linearWithinLinearGNElement><sectionId>1355457</sectionId><directionRelativeOnLinearSection>aligned</directionRelativeOnLinearSection><orderOfSection>77</orderOfSection><fromPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>0</percentageDistanceAlong></fromPoint><toPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>1</percentageDistanceAlong></toPoint></linearWithinLinearGNElement><linearWithinLinearGNElement><sectionId>1355454</sectionId><directionRelativeOnLinearSection>aligned</directionRelativeOnLinearSection><orderOfSection>78</orderOfSection><fromPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>0</percentageDistanceAlong></fromPoint><toPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>1</percentageDistanceAlong></toPoint></linearWithinLinearGNElement><linearWithinLinearGNElement><sectionId>716278</sectionId><directionRelativeOnLinearSection>aligned</directionRelativeOnLinearSection><orderOfSection>79</orderOfSection><fromPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>0</percentageDistanceAlong></fromPoint><toPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>1</percentageDistanceAlong></toPoint></linearWithinLinearGNElement><linearWithinLinearGNElement><sectionId>716275</sectionId><directionRelativeOnLinearSection>aligned</directionRelativeOnLinearSection><orderOfSection>80</orderOfSection><fromPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>0</percentageDistanceAlong></fromPoint><toPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>1</percentageDistanceAlong></toPoint></linearWithinLinearGNElement><linearWithinLinearGNElement><sectionId>3068870</sectionId><directionRelativeOnLinearSection>aligned</directionRelativeOnLinearSection><orderOfSection>81</orderOfSection><fromPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>0</percentageDistanceAlong></fromPoint><toPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>1</percentageDistanceAlong></toPoint></linearWithinLinearGNElement><linearWithinLinearGNElement><sectionId>3068872</sectionId><directionRelativeOnLinearSection>aligned</directionRelativeOnLinearSection><orderOfSection>82</orderOfSection><fromPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>0</percentageDistanceAlong></fromPoint><toPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>1</percentageDistanceAlong></toPoint></linearWithinLinearGNElement><linearWithinLinearGNElement><sectionId>2577669</sectionId><directionRelativeOnLinearSection>aligned</directionRelativeOnLinearSection><orderOfSection>83</orderOfSection><fromPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>0</percentageDistanceAlong></fromPoint><toPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>1</percentageDistanceAlong></toPoint></linearWithinLinearGNElement><linearWithinLinearGNElement><sectionId>716255</sectionId><directionRelativeOnLinearSection>aligned</directionRelativeOnLinearSection><orderOfSection>84</orderOfSection><fromPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>0</percentageDistanceAlong></fromPoint><toPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>1</percentageDistanceAlong></toPoint></linearWithinLinearGNElement><linearWithinLinearGNElement><sectionId>1355354</sectionId><directionRelativeOnLinearSection>aligned</directionRelativeOnLinearSection><orderOfSection>85</orderOfSection><fromPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>0</percentageDistanceAlong></fromPoint><toPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>1</percentageDistanceAlong></toPoint></linearWithinLinearGNElement><linearWithinLinearGNElement><sectionId>2577664</sectionId><directionRelativeOnLinearSection>aligned</directionRelativeOnLinearSection><orderOfSection>86</orderOfSection><fromPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>0</percentageDistanceAlong></fromPoint><toPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>1</percentageDistanceAlong></toPoint></linearWithinLinearGNElement><linearWithinLinearGNElement><sectionId>2577665</sectionId><directionRelativeOnLinearSection>aligned</directionRelativeOnLinearSection><orderOfSection>87</orderOfSection><fromPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>0</percentageDistanceAlong></fromPoint><toPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>1</percentageDistanceAlong></toPoint></linearWithinLinearGNElement><linearWithinLinearGNElement><sectionId>3531829</sectionId><directionRelativeOnLinearSection>aligned</directionRelativeOnLinearSection><orderOfSection>88</orderOfSection><fromPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>0</percentageDistanceAlong></fromPoint><toPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>1</percentageDistanceAlong></toPoint></linearWithinLinearGNElement><linearWithinLinearGNElement><sectionId>3532146</sectionId><directionRelativeOnLinearSection>aligned</directionRelativeOnLinearSection><orderOfSection>89</orderOfSection><fromPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>0</percentageDistanceAlong></fromPoint><toPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>1</percentageDistanceAlong></toPoint></linearWithinLinearGNElement><linearWithinLinearGNElement><sectionId>3532147</sectionId><directionRelativeOnLinearSection>aligned</directionRelativeOnLinearSection><orderOfSection>90</orderOfSection><fromPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>0</percentageDistanceAlong></fromPoint><toPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>1</percentageDistanceAlong></toPoint></linearWithinLinearGNElement><linearWithinLinearGNElement><sectionId>3512437</sectionId><directionRelativeOnLinearSection>aligned</directionRelativeOnLinearSection><orderOfSection>91</orderOfSection><fromPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>0</percentageDistanceAlong></fromPoint><toPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>1</percentageDistanceAlong></toPoint></linearWithinLinearGNElement><linearWithinLinearGNElement><sectionId>3531012</sectionId><directionRelativeOnLinearSection>aligned</directionRelativeOnLinearSection><orderOfSection>92</orderOfSection><fromPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>0</percentageDistanceAlong></fromPoint><toPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>1</percentageDistanceAlong></toPoint></linearWithinLinearGNElement><linearWithinLinearGNElement><sectionId>3668520</sectionId><directionRelativeOnLinearSection>aligned</directionRelativeOnLinearSection><orderOfSection>93</orderOfSection><fromPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>0</percentageDistanceAlong></fromPoint><toPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>1</percentageDistanceAlong></toPoint></linearWithinLinearGNElement><linearWithinLinearGNElement><sectionId>3709905</sectionId><directionRelativeOnLinearSection>aligned</directionRelativeOnLinearSection><orderOfSection>94</orderOfSection><fromPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>0</percentageDistanceAlong></fromPoint><toPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>1</percentageDistanceAlong></toPoint></linearWithinLinearGNElement><linearWithinLinearGNElement><sectionId>3709904</sectionId><directionRelativeOnLinearSection>aligned</directionRelativeOnLinearSection><orderOfSection>95</orderOfSection><fromPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>0</percentageDistanceAlong></fromPoint><toPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>1</percentageDistanceAlong></toPoint></linearWithinLinearGNElement><linearWithinLinearGNElement><sectionId>3531013</sectionId><directionRelativeOnLinearSection>aligned</directionRelativeOnLinearSection><orderOfSection>96</orderOfSection><fromPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>0</percentageDistanceAlong></fromPoint><toPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>1</percentageDistanceAlong></toPoint></linearWithinLinearGNElement><linearWithinLinearGNElement><sectionId>3531014</sectionId><directionRelativeOnLinearSection>aligned</directionRelativeOnLinearSection><orderOfSection>97</orderOfSection><fromPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>0</percentageDistanceAlong></fromPoint><toPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>1</percentageDistanceAlong></toPoint></linearWithinLinearGNElement><linearWithinLinearGNElement><sectionId>3512436</sectionId><directionRelativeOnLinearSection>aligned</directionRelativeOnLinearSection><orderOfSection>98</orderOfSection><fromPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>0</percentageDistanceAlong></fromPoint><toPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>1</percentageDistanceAlong></toPoint></linearWithinLinearGNElement><linearWithinLinearGNElement><sectionId>3512435</sectionId><directionRelativeOnLinearSection>aligned</directionRelativeOnLinearSection><orderOfSection>99</orderOfSection><fromPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>0</percentageDistanceAlong></fromPoint><toPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>1</percentageDistanceAlong></toPoint></linearWithinLinearGNElement><linearWithinLinearGNElement><sectionId>3532148</sectionId><directionRelativeOnLinearSection>aligned</directionRelativeOnLinearSection><orderOfSection>100</orderOfSection><fromPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>0</percentageDistanceAlong></fromPoint><toPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>1</percentageDistanceAlong></toPoint></linearWithinLinearGNElement><linearWithinLinearGNElement><sectionId>3503362</sectionId><directionRelativeOnLinearSection>aligned</directionRelativeOnLinearSection><orderOfSection>101</orderOfSection><fromPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>0</percentageDistanceAlong></fromPoint><toPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>1</percentageDistanceAlong></toPoint></linearWithinLinearGNElement><linearWithinLinearGNElement><sectionId>3456702</sectionId><directionRelativeOnLinearSection>aligned</directionRelativeOnLinearSection><orderOfSection>102</orderOfSection><fromPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>0</percentageDistanceAlong></fromPoint><toPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>1</percentageDistanceAlong></toPoint></linearWithinLinearGNElement><linearWithinLinearGNElement><sectionId>1397905</sectionId><directionRelativeOnLinearSection>aligned</directionRelativeOnLinearSection><orderOfSection>103</orderOfSection><fromPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>0</percentageDistanceAlong></fromPoint><toPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>1</percentageDistanceAlong></toPoint></linearWithinLinearGNElement><linearWithinLinearGNElement><sectionId>1397906</sectionId><directionRelativeOnLinearSection>aligned</directionRelativeOnLinearSection><orderOfSection>104</orderOfSection><fromPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>0</percentageDistanceAlong></fromPoint><toPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>1</percentageDistanceAlong></toPoint></linearWithinLinearGNElement><linearWithinLinearGNElement><sectionId>1397907</sectionId><directionRelativeOnLinearSection>aligned</directionRelativeOnLinearSection><orderOfSection>105</orderOfSection><fromPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>0</percentageDistanceAlong></fromPoint><toPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>1</percentageDistanceAlong></toPoint></linearWithinLinearGNElement><linearWithinLinearGNElement><sectionId>1657605</sectionId><directionRelativeOnLinearSection>aligned</directionRelativeOnLinearSection><orderOfSection>106</orderOfSection><fromPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>0</percentageDistanceAlong></fromPoint><toPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>1</percentageDistanceAlong></toPoint></linearWithinLinearGNElement><linearWithinLinearGNElement><sectionId>1657606</sectionId><directionRelativeOnLinearSection>aligned</directionRelativeOnLinearSection><orderOfSection>107</orderOfSection><fromPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>0</percentageDistanceAlong></fromPoint><toPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>1</percentageDistanceAlong></toPoint></linearWithinLinearGNElement><linearWithinLinearGNElement><sectionId>3532149</sectionId><directionRelativeOnLinearSection>aligned</directionRelativeOnLinearSection><orderOfSection>108</orderOfSection><fromPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>0</percentageDistanceAlong></fromPoint><toPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>1</percentageDistanceAlong></toPoint></linearWithinLinearGNElement><linearWithinLinearGNElement><sectionId>3512455</sectionId><directionRelativeOnLinearSection>aligned</directionRelativeOnLinearSection><orderOfSection>109</orderOfSection><fromPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>0</percentageDistanceAlong></fromPoint><toPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>1</percentageDistanceAlong></toPoint></linearWithinLinearGNElement><linearWithinLinearGNElement><sectionId>2577661</sectionId><directionRelativeOnLinearSection>aligned</directionRelativeOnLinearSection><orderOfSection>110</orderOfSection><fromPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>0</percentageDistanceAlong></fromPoint><toPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>1</percentageDistanceAlong></toPoint></linearWithinLinearGNElement><linearWithinLinearGNElement><sectionId>3068866</sectionId><directionRelativeOnLinearSection>aligned</directionRelativeOnLinearSection><orderOfSection>111</orderOfSection><fromPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>0</percentageDistanceAlong></fromPoint><toPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>1</percentageDistanceAlong></toPoint></linearWithinLinearGNElement><linearWithinLinearGNElement><sectionId>3068868</sectionId><directionRelativeOnLinearSection>aligned</directionRelativeOnLinearSection><orderOfSection>112</orderOfSection><fromPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>0</percentageDistanceAlong></fromPoint><toPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>1</percentageDistanceAlong></toPoint></linearWithinLinearGNElement><linearWithinLinearGNElement><sectionId>1355064</sectionId><directionRelativeOnLinearSection>aligned</directionRelativeOnLinearSection><orderOfSection>113</orderOfSection><fromPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>0</percentageDistanceAlong></fromPoint><toPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>1</percentageDistanceAlong></toPoint></linearWithinLinearGNElement><linearWithinLinearGNElement><sectionId>1355058</sectionId><directionRelativeOnLinearSection>aligned</directionRelativeOnLinearSection><orderOfSection>114</orderOfSection><fromPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>0</percentageDistanceAlong></fromPoint><toPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>1</percentageDistanceAlong></toPoint></linearWithinLinearGNElement><linearWithinLinearGNElement><sectionId>716179</sectionId><directionRelativeOnLinearSection>aligned</directionRelativeOnLinearSection><orderOfSection>115</orderOfSection><fromPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>0</percentageDistanceAlong></fromPoint><toPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>1</percentageDistanceAlong></toPoint></linearWithinLinearGNElement><linearWithinLinearGNElement><sectionId>3531827</sectionId><directionRelativeOnLinearSection>aligned</directionRelativeOnLinearSection><orderOfSection>116</orderOfSection><fromPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>0</percentageDistanceAlong></fromPoint><toPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>1</percentageDistanceAlong></toPoint></linearWithinLinearGNElement><linearWithinLinearGNElement><sectionId>3532150</sectionId><directionRelativeOnLinearSection>aligned</directionRelativeOnLinearSection><orderOfSection>117</orderOfSection><fromPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>0</percentageDistanceAlong></fromPoint><toPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>1</percentageDistanceAlong></toPoint></linearWithinLinearGNElement><linearWithinLinearGNElement><sectionId>2577653</sectionId><directionRelativeOnLinearSection>aligned</directionRelativeOnLinearSection><orderOfSection>118</orderOfSection><fromPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>0</percentageDistanceAlong></fromPoint><toPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>1</percentageDistanceAlong></toPoint></linearWithinLinearGNElement><linearWithinLinearGNElement><sectionId>3513658</sectionId><directionRelativeOnLinearSection>aligned</directionRelativeOnLinearSection><orderOfSection>119</orderOfSection><fromPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>0</percentageDistanceAlong></fromPoint><toPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>1</percentageDistanceAlong></toPoint></linearWithinLinearGNElement><linearWithinLinearGNElement><sectionId>3532151</sectionId><directionRelativeOnLinearSection>aligned</directionRelativeOnLinearSection><orderOfSection>120</orderOfSection><fromPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>0</percentageDistanceAlong></fromPoint><toPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>1</percentageDistanceAlong></toPoint></linearWithinLinearGNElement><linearWithinLinearGNElement><sectionId>3532152</sectionId><directionRelativeOnLinearSection>aligned</directionRelativeOnLinearSection><orderOfSection>121</orderOfSection><fromPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>0</percentageDistanceAlong></fromPoint><toPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>1</percentageDistanceAlong></toPoint></linearWithinLinearGNElement><linearWithinLinearGNElement><sectionId>3513660</sectionId><directionRelativeOnLinearSection>aligned</directionRelativeOnLinearSection><orderOfSection>122</orderOfSection><fromPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>0</percentageDistanceAlong></fromPoint><toPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>0.521568627450975</percentageDistanceAlong></toPoint></linearWithinLinearGNElement></globalNetworkLinear><linearExtension><openlrExtendedLinear><firstDirection><openlrLocationReferencePoint><openlrCoordinate><latitude>49.575376848916243</latitude><longitude>15.268410988738133</longitude></openlrCoordinate><openlrLineAttributes><openlrFunctionalRoadClass>FRC0</openlrFunctionalRoadClass><openlrFormOfWay>motorway</openlrFormOfWay><openlrBearing>323</openlrBearing></openlrLineAttributes><openlrPathAttributes><openlrLowestFRCToNextLRPoint>FRC0</openlrLowestFRCToNextLRPoint><openlrDistanceToNextLRPoint>14926</openlrDistanceToNextLRPoint></openlrPathAttributes></openlrLocationReferencePoint><openlrLocationReferencePoint><openlrCoordinate><latitude>49.648245799965053</latitude><longitude>15.124349285544502</longitude></openlrCoordinate><openlrLineAttributes><openlrFunctionalRoadClass>FRC0</openlrFunctionalRoadClass><openlrFormOfWay>motorway</openlrFormOfWay><openlrBearing>349</openlrBearing></openlrLineAttributes><openlrPathAttributes><openlrLowestFRCToNextLRPoint>FRC0</openlrLowestFRCToNextLRPoint><openlrDistanceToNextLRPoint>680</openlrDistanceToNextLRPoint></openlrPathAttributes></openlrLocationReferencePoint><openlrLocationReferencePoint><openlrCoordinate><latitude>49.654258697398909</latitude><longitude>15.122605342742869</longitude></openlrCoordinate><openlrLineAttributes><openlrFunctionalRoadClass>FRC0</openlrFunctionalRoadClass><openlrFormOfWay>motorway</openlrFormOfWay><openlrBearing>349</openlrBearing></openlrLineAttributes><openlrPathAttributes><openlrLowestFRCToNextLRPoint>FRC0</openlrLowestFRCToNextLRPoint><openlrDistanceToNextLRPoint>13833</openlrDistanceToNextLRPoint></openlrPathAttributes></openlrLocationReferencePoint><openlrLocationReferencePoint><openlrCoordinate><latitude>49.752005371605868</latitude><longitude>15.023842969790108</longitude></openlrCoordinate><openlrLineAttributes><openlrFunctionalRoadClass>FRC0</openlrFunctionalRoadClass><openlrFormOfWay>motorway</openlrFormOfWay><openlrBearing>304</openlrBearing></openlrLineAttributes><openlrPathAttributes><openlrLowestFRCToNextLRPoint>FRC0</openlrLowestFRCToNextLRPoint><openlrDistanceToNextLRPoint>515</openlrDistanceToNextLRPoint></openlrPathAttributes></openlrLocationReferencePoint><openlrLastLocationReferencePoint><openlrCoordinate><latitude>49.753499655777311</latitude><longitude>15.017182552238062</longitude></openlrCoordinate><openlrLineAttributes><openlrFunctionalRoadClass>FRC0</openlrFunctionalRoadClass><openlrFormOfWay>motorway</openlrFormOfWay><openlrBearing>92</openlrBearing></openlrLineAttributes></openlrLastLocationReferencePoint><openlrOffsets><openlrPositiveOffset>972</openlrPositiveOffset><openlrNegativeOffset>246</openlrNegativeOffset></openlrOffsets></firstDirection></openlrExtendedLinear></linearExtension></groupOfLocations><complianceOption>mandatory</complianceOption><roadOrCarriagewayOrLaneManagementType>laneClosures</roadOrCarriagewayOrLaneManagementType></situationRecord></situation></payloadPublication></d2LogicalModel> '
|
|
81
|
+
value: '<?xml version="1.0" encoding="utf-8"?><d2LogicalModel modelBaseVersion="2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://datex2.eu/schema/2/2_0"><exchange><supplierIdentification><country>cz</country><nationalIdentifier>DIC</nationalIdentifier></supplierIdentification></exchange><payloadPublication xsi:type="SituationPublication" lang="cs"><publicationTime>2025-09-04T02:32:02+02:00</publicationTime><publicationCreator><country>cz</country><nationalIdentifier>NDIC</nationalIdentifier></publicationCreator><situation id="093594b8-72ec-48e9-b80e-77cd5f72b083" version="6"><situationVersionTime>2025-09-04T02:32:00+02:00</situationVersionTime><headerInformation><confidentiality>noRestriction</confidentiality><informationStatus>real</informationStatus><urgency>normalUrgency</urgency></headerInformation><situationRecord version="6" xsi:type="RoadOrCarriagewayOrLaneManagement" id="093594b8-72ec-48e9-b80e-77cd5f72b083_RoadOrCarriagewayOrLaneManagement"><situationRecordCreationTime>2025-09-03T13:22:42+02:00</situationRecordCreationTime><situationRecordVersionTime>2025-09-04T02:32:00+02:00</situationRecordVersionTime><probabilityOfOccurrence>certain</probabilityOfOccurrence><source><sourceIdentification>RSD</sourceIdentification><sourceName><values><value lang="cs" /></values></sourceName></source><validity><validityStatus>definedByValidityTimeSpec</validityStatus><validityTimeSpecification><overallStartTime>2025-09-03T20:46:00+02:00</overallStartTime><overallEndTime>2025-09-04T02:32:01+02:00</overallEndTime></validityTimeSpecification></validity><impact><numberOfOperationalLanes>1</numberOfOperationalLanes><originalNumberOfLanes>2</originalNumberOfLanes></impact><generalPublicComment><comment><values><value lang="cs">D0, mezi km 19 a 18, ve směru D1, práce na silnici, levý jízdní pruh uzavřen, Od 03.09.2025 20:46 Do 04.09.2025 05:00, údržba a opravy vozovek CB, pracovní místo DK (NOČNÍ) – Krátkodobé stabilní (NOČNÍ), Vydal: SSÚD 08 - Rudná</value></values></comment></generalPublicComment><groupOfLocations xsi:type="Linear"><supplementaryPositionalDescription><affectedCarriagewayAndLanes><carriageway>mainCarriageway</carriageway><lane>leftLane</lane></affectedCarriagewayAndLanes></supplementaryPositionalDescription><alertCLinear xsi:type="AlertCMethod2Linear"><alertCLocationCountryCode>CZ</alertCLocationCountryCode><alertCLocationTableNumber>25</alertCLocationTableNumber><alertCLocationTableVersion>10.1</alertCLocationTableVersion><alertCDirection><alertCDirectionCoded>negative</alertCDirectionCoded></alertCDirection><alertCMethod2PrimaryPointLocation><alertCLocation><specificLocation>1259</specificLocation></alertCLocation></alertCMethod2PrimaryPointLocation><alertCMethod2SecondaryPointLocation><alertCLocation><specificLocation>1257</specificLocation></alertCLocation></alertCMethod2SecondaryPointLocation></alertCLinear><linearWithinLinearElement><directionRelativeOnLinearSection>opposite</directionRelativeOnLinearSection><linearElement><roadNumber>D0</roadNumber></linearElement><fromPoint xsi:type="DistanceFromLinearElementStart"><distanceAlong>18999</distanceAlong></fromPoint><toPoint xsi:type="DistanceFromLinearElementStart"><distanceAlong>18000</distanceAlong></toPoint></linearWithinLinearElement><linearExtension><openlrExtendedLinear><firstDirection><openlrLocationReferencePoint><openlrCoordinate><latitude>50.024917518295958</latitude><longitude>14.299958232099872</longitude></openlrCoordinate><openlrLineAttributes><openlrFunctionalRoadClass>FRC0</openlrFunctionalRoadClass><openlrFormOfWay>motorway</openlrFormOfWay><openlrBearing>95</openlrBearing></openlrLineAttributes><openlrPathAttributes><openlrLowestFRCToNextLRPoint>FRC0</openlrLowestFRCToNextLRPoint><openlrDistanceToNextLRPoint>2946</openlrDistanceToNextLRPoint></openlrPathAttributes></openlrLocationReferencePoint><openlrLastLocationReferencePoint><openlrCoordinate><latitude>50.017453816629107</latitude><longitude>14.337730888933452</longitude></openlrCoordinate><openlrLineAttributes><openlrFunctionalRoadClass>FRC0</openlrFunctionalRoadClass><openlrFormOfWay>motorway</openlrFormOfWay><openlrBearing>326</openlrBearing></openlrLineAttributes></openlrLastLocationReferencePoint><openlrOffsets><openlrPositiveOffset>185</openlrPositiveOffset><openlrNegativeOffset>1766</openlrNegativeOffset></openlrOffsets></firstDirection></openlrExtendedLinear><globalNetworkLinear><networkVersion><values><value lang="cs">24.12</value></values></networkVersion><linearGeometryType>continuous</linearGeometryType><directionality>oneDirection</directionality><startPoint><sjtskPointCoordinates><sjtskX>-752186.470725582</sjtskX><sjtskY>-1048756.02543023</sjtskY></sjtskPointCoordinates></startPoint><endPoint><sjtskPointCoordinates><sjtskX>-751216.674151429</sjtskX><sjtskY>-1048981.76462</sjtskY></sjtskPointCoordinates></endPoint><firstDirection><linearWithinLinearGNElement><sectionId>3529753</sectionId><directionRelativeOnLinearSection>aligned</directionRelativeOnLinearSection><orderOfSection>0</orderOfSection><fromPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>0.86046511627911</percentageDistanceAlong></fromPoint><toPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>1</percentageDistanceAlong></toPoint></linearWithinLinearGNElement><linearWithinLinearGNElement><sectionId>3665758</sectionId><directionRelativeOnLinearSection>aligned</directionRelativeOnLinearSection><orderOfSection>1</orderOfSection><fromPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>0</percentageDistanceAlong></fromPoint><toPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>1</percentageDistanceAlong></toPoint></linearWithinLinearGNElement><linearWithinLinearGNElement><sectionId>3717373</sectionId><directionRelativeOnLinearSection>aligned</directionRelativeOnLinearSection><orderOfSection>2</orderOfSection><fromPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>0</percentageDistanceAlong></fromPoint><toPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>1</percentageDistanceAlong></toPoint></linearWithinLinearGNElement><linearWithinLinearGNElement><sectionId>3717372</sectionId><directionRelativeOnLinearSection>aligned</directionRelativeOnLinearSection><orderOfSection>3</orderOfSection><fromPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>0</percentageDistanceAlong></fromPoint><toPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>0.0285714285713067</percentageDistanceAlong></toPoint></linearWithinLinearGNElement></firstDirection></globalNetworkLinear></linearExtension></groupOfLocations><complianceOption>mandatory</complianceOption><roadOrCarriagewayOrLaneManagementType>laneClosures</roadOrCarriagewayOrLaneManagementType></situationRecord><situationRecord version="6" xsi:type="MaintenanceWorks" id="093594b8-72ec-48e9-b80e-77cd5f72b083_MaintenanceWorks"><situationRecordCreationTime>2025-09-03T13:22:42+02:00</situationRecordCreationTime><situationRecordVersionTime>2025-09-04T02:32:00+02:00</situationRecordVersionTime><probabilityOfOccurrence>certain</probabilityOfOccurrence><source><sourceIdentification>RSD</sourceIdentification><sourceName><values><value lang="cs" /></values></sourceName></source><validity><validityStatus>definedByValidityTimeSpec</validityStatus><validityTimeSpecification><overallStartTime>2025-09-03T20:46:00+02:00</overallStartTime><overallEndTime>2025-09-04T02:32:01+02:00</overallEndTime></validityTimeSpecification></validity><impact><numberOfOperationalLanes>1</numberOfOperationalLanes><originalNumberOfLanes>2</originalNumberOfLanes></impact><generalPublicComment><comment><values><value lang="cs">D0, mezi km 19 a 18, ve směru D1, práce na silnici, levý jízdní pruh uzavřen, Od 03.09.2025 20:46 Do 04.09.2025 05:00, údržba a opravy vozovek CB, pracovní místo DK (NOČNÍ) – Krátkodobé stabilní (NOČNÍ), Vydal: SSÚD 08 - Rudná</value></values></comment></generalPublicComment><groupOfLocations xsi:type="Linear"><supplementaryPositionalDescription><affectedCarriagewayAndLanes><carriageway>mainCarriageway</carriageway><lane>leftLane</lane></affectedCarriagewayAndLanes></supplementaryPositionalDescription><alertCLinear xsi:type="AlertCMethod2Linear"><alertCLocationCountryCode>CZ</alertCLocationCountryCode><alertCLocationTableNumber>25</alertCLocationTableNumber><alertCLocationTableVersion>10.1</alertCLocationTableVersion><alertCDirection><alertCDirectionCoded>negative</alertCDirectionCoded></alertCDirection><alertCMethod2PrimaryPointLocation><alertCLocation><specificLocation>1259</specificLocation></alertCLocation></alertCMethod2PrimaryPointLocation><alertCMethod2SecondaryPointLocation><alertCLocation><specificLocation>1257</specificLocation></alertCLocation></alertCMethod2SecondaryPointLocation></alertCLinear><linearWithinLinearElement><directionRelativeOnLinearSection>opposite</directionRelativeOnLinearSection><linearElement><roadNumber>D0</roadNumber></linearElement><fromPoint xsi:type="DistanceFromLinearElementStart"><distanceAlong>18999</distanceAlong></fromPoint><toPoint xsi:type="DistanceFromLinearElementStart"><distanceAlong>18000</distanceAlong></toPoint></linearWithinLinearElement><linearExtension><openlrExtendedLinear><firstDirection><openlrLocationReferencePoint><openlrCoordinate><latitude>50.024917518295958</latitude><longitude>14.299958232099872</longitude></openlrCoordinate><openlrLineAttributes><openlrFunctionalRoadClass>FRC0</openlrFunctionalRoadClass><openlrFormOfWay>motorway</openlrFormOfWay><openlrBearing>95</openlrBearing></openlrLineAttributes><openlrPathAttributes><openlrLowestFRCToNextLRPoint>FRC0</openlrLowestFRCToNextLRPoint><openlrDistanceToNextLRPoint>2946</openlrDistanceToNextLRPoint></openlrPathAttributes></openlrLocationReferencePoint><openlrLastLocationReferencePoint><openlrCoordinate><latitude>50.017453816629107</latitude><longitude>14.337730888933452</longitude></openlrCoordinate><openlrLineAttributes><openlrFunctionalRoadClass>FRC0</openlrFunctionalRoadClass><openlrFormOfWay>motorway</openlrFormOfWay><openlrBearing>326</openlrBearing></openlrLineAttributes></openlrLastLocationReferencePoint><openlrOffsets><openlrPositiveOffset>185</openlrPositiveOffset><openlrNegativeOffset>1766</openlrNegativeOffset></openlrOffsets></firstDirection></openlrExtendedLinear><globalNetworkLinear><networkVersion><values><value lang="cs">24.12</value></values></networkVersion><linearGeometryType>continuous</linearGeometryType><directionality>oneDirection</directionality><startPoint><sjtskPointCoordinates><sjtskX>-752186.470725582</sjtskX><sjtskY>-1048756.02543023</sjtskY></sjtskPointCoordinates></startPoint><endPoint><sjtskPointCoordinates><sjtskX>-751216.674151429</sjtskX><sjtskY>-1048981.76462</sjtskY></sjtskPointCoordinates></endPoint><firstDirection><linearWithinLinearGNElement><sectionId>3529753</sectionId><directionRelativeOnLinearSection>aligned</directionRelativeOnLinearSection><orderOfSection>0</orderOfSection><fromPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>0.86046511627911</percentageDistanceAlong></fromPoint><toPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>1</percentageDistanceAlong></toPoint></linearWithinLinearGNElement><linearWithinLinearGNElement><sectionId>3665758</sectionId><directionRelativeOnLinearSection>aligned</directionRelativeOnLinearSection><orderOfSection>1</orderOfSection><fromPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>0</percentageDistanceAlong></fromPoint><toPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>1</percentageDistanceAlong></toPoint></linearWithinLinearGNElement><linearWithinLinearGNElement><sectionId>3717373</sectionId><directionRelativeOnLinearSection>aligned</directionRelativeOnLinearSection><orderOfSection>2</orderOfSection><fromPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>0</percentageDistanceAlong></fromPoint><toPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>1</percentageDistanceAlong></toPoint></linearWithinLinearGNElement><linearWithinLinearGNElement><sectionId>3717372</sectionId><directionRelativeOnLinearSection>aligned</directionRelativeOnLinearSection><orderOfSection>3</orderOfSection><fromPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>0</percentageDistanceAlong></fromPoint><toPoint xsi:type="PercentageDistanceAlongLinearElement"><percentageDistanceAlong>0.0285714285713067</percentageDistanceAlong></toPoint></linearWithinLinearGNElement></firstDirection></globalNetworkLinear></linearExtension></groupOfLocations><subjects><subjectTypeOfWorks>road</subjectTypeOfWorks></subjects><roadMaintenanceType>roadworks</roadMaintenanceType></situationRecord></situation></payloadPublication></d2LogicalModel> '
|
|
84
82
|
responses:
|
|
85
83
|
204:
|
|
86
84
|
description: OK
|
|
@@ -378,9 +376,52 @@ components:
|
|
|
378
376
|
linearWithinLinearElement:
|
|
379
377
|
type: object
|
|
380
378
|
globalNetworkLinear:
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
|
|
379
|
+
oneOf:
|
|
380
|
+
- type: object
|
|
381
|
+
properties:
|
|
382
|
+
linearGeometryType:
|
|
383
|
+
type: string
|
|
384
|
+
enum: ["continuous", "segmented", "unknown"]
|
|
385
|
+
directionality:
|
|
386
|
+
type: string
|
|
387
|
+
enum: ["oneDirection"]
|
|
388
|
+
globalNetworkLinearExtension:
|
|
389
|
+
$ref: '#/components/schemas/_ExtensionType'
|
|
390
|
+
networkVersion:
|
|
391
|
+
type: object
|
|
392
|
+
startPoint:
|
|
393
|
+
type: object
|
|
394
|
+
endPoint:
|
|
395
|
+
type: object
|
|
396
|
+
firstDirection:
|
|
397
|
+
$ref: '#/components/schemas/DirectionBranch'
|
|
398
|
+
required:
|
|
399
|
+
- directionality
|
|
400
|
+
- firstDirection
|
|
401
|
+
- type: object
|
|
402
|
+
properties:
|
|
403
|
+
linearGeometryType:
|
|
404
|
+
type: string
|
|
405
|
+
enum: ["continuous", "segmented", "unknown"]
|
|
406
|
+
directionality:
|
|
407
|
+
type: string
|
|
408
|
+
enum: ["bothDirection"]
|
|
409
|
+
globalNetworkLinearExtension:
|
|
410
|
+
$ref: '#/components/schemas/_ExtensionType'
|
|
411
|
+
networkVersion:
|
|
412
|
+
type: object
|
|
413
|
+
startPoint:
|
|
414
|
+
type: object
|
|
415
|
+
endPoint:
|
|
416
|
+
type: object
|
|
417
|
+
firstDirection:
|
|
418
|
+
$ref: '#/components/schemas/DirectionBranch'
|
|
419
|
+
oppositeDirection:
|
|
420
|
+
$ref: '#/components/schemas/DirectionBranch'
|
|
421
|
+
required:
|
|
422
|
+
- directionality
|
|
423
|
+
- firstDirection
|
|
424
|
+
- oppositeDirection
|
|
384
425
|
|
|
385
426
|
d2LogicalModel1:
|
|
386
427
|
type: object
|
|
@@ -510,7 +551,17 @@ components:
|
|
|
510
551
|
type: string
|
|
511
552
|
constructionWorksExtension:
|
|
512
553
|
$ref: '#/components/schemas/_ExtensionType'
|
|
513
|
-
|
|
554
|
+
DirectionBranch:
|
|
555
|
+
type: object
|
|
556
|
+
additionalProperties: false
|
|
557
|
+
required:
|
|
558
|
+
- linearWithinLinearGNElement
|
|
559
|
+
properties:
|
|
560
|
+
linearWithinLinearGNElement:
|
|
561
|
+
type: array
|
|
562
|
+
minItems: 1
|
|
563
|
+
items:
|
|
564
|
+
$ref: '#/components/schemas/LinearWithinLinearGNElement'
|
|
514
565
|
DisturbanceActivity:
|
|
515
566
|
type: object
|
|
516
567
|
properties:
|
|
@@ -614,7 +665,29 @@ components:
|
|
|
614
665
|
$ref: '#/components/schemas/_ExtensionType'
|
|
615
666
|
required:
|
|
616
667
|
- infrastructureDamageType
|
|
617
|
-
|
|
668
|
+
LinearWithinLinearGNElement:
|
|
669
|
+
type: object
|
|
670
|
+
additionalProperties: false
|
|
671
|
+
required:
|
|
672
|
+
- sectionId
|
|
673
|
+
- directionRelativeOnLinearSection
|
|
674
|
+
- orderOfSection
|
|
675
|
+
- fromPoint
|
|
676
|
+
- toPoint
|
|
677
|
+
properties:
|
|
678
|
+
sectionId:
|
|
679
|
+
type: integer
|
|
680
|
+
minimum: 0
|
|
681
|
+
directionRelativeOnLinearSection:
|
|
682
|
+
type: string
|
|
683
|
+
enum: ["aligned", "opposite"]
|
|
684
|
+
orderOfSection:
|
|
685
|
+
type: integer
|
|
686
|
+
minimum: 0
|
|
687
|
+
fromPoint:
|
|
688
|
+
$ref: '#/components/schemas/PercentageDistancePoint'
|
|
689
|
+
toPoint:
|
|
690
|
+
$ref: '#/components/schemas/PercentageDistancePoint'
|
|
618
691
|
MaintenanceWorks:
|
|
619
692
|
allOf:
|
|
620
693
|
- $ref: '#/components/schemas/Roadworks'
|
|
@@ -690,7 +763,19 @@ components:
|
|
|
690
763
|
type: string
|
|
691
764
|
mobilityOfObstruction:
|
|
692
765
|
type: object
|
|
693
|
-
|
|
766
|
+
PercentageDistancePoint:
|
|
767
|
+
type: object
|
|
768
|
+
additionalProperties: false
|
|
769
|
+
required:
|
|
770
|
+
- percentageDistanceAlong
|
|
771
|
+
properties:
|
|
772
|
+
xsi:type:
|
|
773
|
+
type: string
|
|
774
|
+
enum: ["PercentageDistanceAlongLinearElement"]
|
|
775
|
+
percentageDistanceAlong:
|
|
776
|
+
type: number
|
|
777
|
+
minimum: 0
|
|
778
|
+
maximum: 1
|
|
694
779
|
PoorEnvironmentConditions:
|
|
695
780
|
allOf:
|
|
696
781
|
- $ref: '#/components/schemas/Conditions'
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@golemio/ndic",
|
|
3
|
-
"version": "1.5.1-dev.
|
|
3
|
+
"version": "1.5.1-dev.2059793292",
|
|
4
4
|
"description": "Golemio NDIC Module",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -36,7 +36,7 @@
|
|
|
36
36
|
"@commitlint/cli": "^11.0.0",
|
|
37
37
|
"@commitlint/config-conventional": "^11.0.0",
|
|
38
38
|
"@golemio/cli": "1.9.2",
|
|
39
|
-
"@golemio/core": "1.
|
|
39
|
+
"@golemio/core": "1.22.1-dev.2044688374",
|
|
40
40
|
"@golemio/db-common": "1.1.4",
|
|
41
41
|
"@golemio/eslint-config": "1.1.2",
|
|
42
42
|
"@golemio/traffic-common": "1.0.9",
|