geonetwork-ui 2.3.0-dev.376e0e90 → 2.3.0-dev.f736344f
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/esm2022/libs/api/metadata-converter/src/index.mjs +5 -5
- package/esm2022/libs/api/metadata-converter/src/lib/gn4/atomic-operations.mjs +3 -3
- package/esm2022/libs/api/metadata-converter/src/lib/gn4/gn4.field.mapper.mjs +3 -3
- package/esm2022/libs/api/metadata-converter/src/lib/gn4/gn4.metadata.mapper.mjs +52 -0
- package/esm2022/libs/api/metadata-converter/src/lib/iso19139/codelists/keyword.mapper.mjs +14 -0
- package/esm2022/libs/api/metadata-converter/src/lib/iso19139/codelists/role.mapper.mjs +48 -0
- package/esm2022/libs/api/metadata-converter/src/lib/iso19139/codelists/status.mapper.mjs +18 -0
- package/esm2022/libs/api/metadata-converter/src/lib/iso19139/codelists/update-frequency.mapper.mjs +64 -0
- package/esm2022/libs/api/metadata-converter/src/lib/iso19139/converter.mjs +130 -0
- package/esm2022/libs/api/metadata-converter/src/lib/iso19139/read-parts.mjs +62 -58
- package/esm2022/libs/api/metadata-converter/src/lib/iso19139/write-parts.mjs +58 -75
- package/esm2022/libs/api/metadata-converter/src/lib/metadata-base.mapper.mjs +14 -0
- package/esm2022/libs/api/metadata-converter/src/lib/xml-utils.mjs +14 -76
- package/esm2022/libs/api/repository/src/lib/gn4/gn4-repository.mjs +4 -4
- package/esm2022/libs/common/domain/src/lib/model/record/metadata.model.mjs +1 -1
- package/esm2022/libs/feature/editor/src/lib/services/editor.service.mjs +8 -8
- package/fesm2022/geonetwork-ui.mjs +245 -822
- package/fesm2022/geonetwork-ui.mjs.map +1 -1
- package/libs/api/metadata-converter/src/index.d.ts +4 -4
- package/libs/api/metadata-converter/src/index.d.ts.map +1 -1
- package/libs/api/metadata-converter/src/lib/gn4/{gn4.converter.d.ts → gn4.metadata.mapper.d.ts} +5 -5
- package/libs/api/metadata-converter/src/lib/gn4/gn4.metadata.mapper.d.ts.map +1 -0
- package/libs/api/metadata-converter/src/lib/iso19139/codelists/keyword.mapper.d.ts.map +1 -0
- package/libs/api/metadata-converter/src/lib/iso19139/codelists/role.mapper.d.ts.map +1 -0
- package/libs/api/metadata-converter/src/lib/iso19139/codelists/status.mapper.d.ts.map +1 -0
- package/libs/api/metadata-converter/src/lib/iso19139/codelists/update-frequency.mapper.d.ts.map +1 -0
- package/libs/api/metadata-converter/src/lib/iso19139/converter.d.ts +4 -0
- package/libs/api/metadata-converter/src/lib/iso19139/converter.d.ts.map +1 -0
- package/libs/api/metadata-converter/src/lib/iso19139/read-parts.d.ts +6 -34
- package/libs/api/metadata-converter/src/lib/iso19139/read-parts.d.ts.map +1 -1
- package/libs/api/metadata-converter/src/lib/iso19139/write-parts.d.ts +3 -39
- package/libs/api/metadata-converter/src/lib/iso19139/write-parts.d.ts.map +1 -1
- package/libs/api/metadata-converter/src/lib/{base.converter.d.ts → metadata-base.mapper.d.ts} +3 -3
- package/libs/api/metadata-converter/src/lib/metadata-base.mapper.d.ts.map +1 -0
- package/libs/api/metadata-converter/src/lib/xml-utils.d.ts +1 -14
- package/libs/api/metadata-converter/src/lib/xml-utils.d.ts.map +1 -1
- package/libs/api/repository/src/lib/gn4/gn4-repository.d.ts +2 -2
- package/libs/api/repository/src/lib/gn4/gn4-repository.d.ts.map +1 -1
- package/libs/common/domain/src/lib/model/record/metadata.model.d.ts +4 -6
- package/libs/common/domain/src/lib/model/record/metadata.model.d.ts.map +1 -1
- package/libs/feature/editor/src/lib/services/editor.service.d.ts.map +1 -1
- package/package.json +1 -1
- package/src/libs/api/metadata-converter/src/index.ts +4 -4
- package/src/libs/api/metadata-converter/src/lib/fixtures/generic.records.ts +5 -32
- package/src/libs/api/metadata-converter/src/lib/fixtures/geo2france.records.ts +4 -11
- package/src/libs/api/metadata-converter/src/lib/fixtures/geocat-ch.records.ts +7 -33
- package/src/libs/api/metadata-converter/src/lib/gn4/atomic-operations.ts +2 -2
- package/src/libs/api/metadata-converter/src/lib/gn4/gn4.field.mapper.ts +2 -2
- package/src/libs/api/metadata-converter/src/lib/gn4/{gn4.converter.ts → gn4.metadata.mapper.ts} +2 -2
- package/src/libs/api/metadata-converter/src/lib/iso19139/converter.ts +196 -0
- package/src/libs/api/metadata-converter/src/lib/iso19139/read-parts.ts +82 -121
- package/src/libs/api/metadata-converter/src/lib/iso19139/write-parts.ts +95 -175
- package/src/libs/api/metadata-converter/src/lib/{base.converter.ts → metadata-base.mapper.ts} +2 -2
- package/src/libs/api/metadata-converter/src/lib/xml-utils.ts +16 -84
- package/src/libs/api/repository/src/lib/gn4/gn4-repository.ts +2 -2
- package/src/libs/common/domain/src/lib/model/record/metadata.model.ts +4 -9
- package/src/libs/feature/editor/src/lib/services/editor.service.ts +16 -27
- package/esm2022/libs/api/metadata-converter/src/lib/base.converter.mjs +0 -14
- package/esm2022/libs/api/metadata-converter/src/lib/find-converter.mjs +0 -15
- package/esm2022/libs/api/metadata-converter/src/lib/gn4/gn4.converter.mjs +0 -52
- package/esm2022/libs/api/metadata-converter/src/lib/gn4/index.mjs +0 -4
- package/esm2022/libs/api/metadata-converter/src/lib/iso19115-3/index.mjs +0 -2
- package/esm2022/libs/api/metadata-converter/src/lib/iso19115-3/iso19115-3.converter.mjs +0 -123
- package/esm2022/libs/api/metadata-converter/src/lib/iso19115-3/read-parts.mjs +0 -116
- package/esm2022/libs/api/metadata-converter/src/lib/iso19115-3/write-parts.mjs +0 -138
- package/esm2022/libs/api/metadata-converter/src/lib/iso19139/index.mjs +0 -2
- package/esm2022/libs/api/metadata-converter/src/lib/iso19139/iso19139.converter.mjs +0 -242
- package/esm2022/libs/api/metadata-converter/src/lib/iso19139/utils/individual-name.mjs +0 -18
- package/esm2022/libs/api/metadata-converter/src/lib/iso19139/utils/keyword.mapper.mjs +0 -14
- package/esm2022/libs/api/metadata-converter/src/lib/iso19139/utils/role.mapper.mjs +0 -48
- package/esm2022/libs/api/metadata-converter/src/lib/iso19139/utils/status.mapper.mjs +0 -18
- package/esm2022/libs/api/metadata-converter/src/lib/iso19139/utils/update-frequency.mapper.mjs +0 -64
- package/libs/api/metadata-converter/src/lib/base.converter.d.ts.map +0 -1
- package/libs/api/metadata-converter/src/lib/find-converter.d.ts +0 -3
- package/libs/api/metadata-converter/src/lib/find-converter.d.ts.map +0 -1
- package/libs/api/metadata-converter/src/lib/gn4/gn4.converter.d.ts.map +0 -1
- package/libs/api/metadata-converter/src/lib/gn4/index.d.ts +0 -4
- package/libs/api/metadata-converter/src/lib/gn4/index.d.ts.map +0 -1
- package/libs/api/metadata-converter/src/lib/iso19115-3/index.d.ts +0 -2
- package/libs/api/metadata-converter/src/lib/iso19115-3/index.d.ts.map +0 -1
- package/libs/api/metadata-converter/src/lib/iso19115-3/iso19115-3.converter.d.ts +0 -9
- package/libs/api/metadata-converter/src/lib/iso19115-3/iso19115-3.converter.d.ts.map +0 -1
- package/libs/api/metadata-converter/src/lib/iso19115-3/read-parts.d.ts +0 -20
- package/libs/api/metadata-converter/src/lib/iso19115-3/read-parts.d.ts.map +0 -1
- package/libs/api/metadata-converter/src/lib/iso19115-3/write-parts.d.ts +0 -21
- package/libs/api/metadata-converter/src/lib/iso19115-3/write-parts.d.ts.map +0 -1
- package/libs/api/metadata-converter/src/lib/iso19139/index.d.ts +0 -2
- package/libs/api/metadata-converter/src/lib/iso19139/index.d.ts.map +0 -1
- package/libs/api/metadata-converter/src/lib/iso19139/iso19139.converter.d.ts +0 -11
- package/libs/api/metadata-converter/src/lib/iso19139/iso19139.converter.d.ts.map +0 -1
- package/libs/api/metadata-converter/src/lib/iso19139/utils/individual-name.d.ts +0 -8
- package/libs/api/metadata-converter/src/lib/iso19139/utils/individual-name.d.ts.map +0 -1
- package/libs/api/metadata-converter/src/lib/iso19139/utils/keyword.mapper.d.ts.map +0 -1
- package/libs/api/metadata-converter/src/lib/iso19139/utils/role.mapper.d.ts.map +0 -1
- package/libs/api/metadata-converter/src/lib/iso19139/utils/status.mapper.d.ts.map +0 -1
- package/libs/api/metadata-converter/src/lib/iso19139/utils/update-frequency.mapper.d.ts.map +0 -1
- package/src/libs/api/metadata-converter/src/lib/find-converter.ts +0 -16
- package/src/libs/api/metadata-converter/src/lib/fixtures/metawal.records.ts +0 -580
- package/src/libs/api/metadata-converter/src/lib/gn4/index.ts +0 -3
- package/src/libs/api/metadata-converter/src/lib/iso19115-3/index.ts +0 -1
- package/src/libs/api/metadata-converter/src/lib/iso19115-3/iso19115-3.converter.ts +0 -176
- package/src/libs/api/metadata-converter/src/lib/iso19115-3/read-parts.ts +0 -329
- package/src/libs/api/metadata-converter/src/lib/iso19115-3/write-parts.ts +0 -513
- package/src/libs/api/metadata-converter/src/lib/iso19139/index.ts +0 -1
- package/src/libs/api/metadata-converter/src/lib/iso19139/iso19139.converter.ts +0 -327
- package/src/libs/api/metadata-converter/src/lib/iso19139/utils/individual-name.ts +0 -20
- /package/libs/api/metadata-converter/src/lib/iso19139/{utils → codelists}/keyword.mapper.d.ts +0 -0
- /package/libs/api/metadata-converter/src/lib/iso19139/{utils → codelists}/role.mapper.d.ts +0 -0
- /package/libs/api/metadata-converter/src/lib/iso19139/{utils → codelists}/status.mapper.d.ts +0 -0
- /package/libs/api/metadata-converter/src/lib/iso19139/{utils → codelists}/update-frequency.mapper.d.ts +0 -0
- /package/src/libs/api/metadata-converter/src/lib/iso19139/{utils → codelists}/keyword.mapper.ts +0 -0
- /package/src/libs/api/metadata-converter/src/lib/iso19139/{utils → codelists}/role.mapper.ts +0 -0
- /package/src/libs/api/metadata-converter/src/lib/iso19139/{utils → codelists}/status.mapper.ts +0 -0
- /package/src/libs/api/metadata-converter/src/lib/iso19139/{utils → codelists}/update-frequency.mapper.ts +0 -0
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Parts are [firstName, lastName]
|
|
3
|
-
* Second part will be null if no separation could be done
|
|
4
|
-
* @param fullName
|
|
5
|
-
*/
|
|
6
|
-
export declare function fullNameToParts(fullName: string): [string, string | null];
|
|
7
|
-
export declare function namePartsToFull(firstName: string | null, lastName: string | null): string | null;
|
|
8
|
-
//# sourceMappingURL=individual-name.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"individual-name.d.ts","sourceRoot":"","sources":["../../../../../../../src/libs/api/metadata-converter/src/lib/iso19139/utils/individual-name.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AACH,wBAAgB,eAAe,CAAC,QAAQ,EAAE,MAAM,GAAG,CAAC,MAAM,EAAE,MAAM,GAAG,IAAI,CAAC,CAIzE;AAED,wBAAgB,eAAe,CAC7B,SAAS,EAAE,MAAM,GAAG,IAAI,EACxB,QAAQ,EAAE,MAAM,GAAG,IAAI,GACtB,MAAM,GAAG,IAAI,CAKf"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"keyword.mapper.d.ts","sourceRoot":"","sources":["../../../../../../../src/libs/api/metadata-converter/src/lib/iso19139/utils/keyword.mapper.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAE,MAAM,8DAA8D,CAAA;AAE1F,wBAAgB,iCAAiC,CAC/C,QAAQ,EAAE,MAAM,GACf,WAAW,CAWb"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"role.mapper.d.ts","sourceRoot":"","sources":["../../../../../../../src/libs/api/metadata-converter/src/lib/iso19139/utils/role.mapper.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,IAAI,EAAE,MAAM,8DAA8D,CAAA;AAEnF,wBAAgB,mBAAmB,CAAC,QAAQ,EAAE,MAAM,GAAG,IAAI,CA6C1D"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"status.mapper.d.ts","sourceRoot":"","sources":["../../../../../../../src/libs/api/metadata-converter/src/lib/iso19139/utils/status.mapper.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,YAAY,EAAE,MAAM,8DAA8D,CAAA;AAE3F,wBAAgB,uBAAuB,CAAC,UAAU,EAAE,MAAM,GAAG,YAAY,CAgBxE"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"update-frequency.mapper.d.ts","sourceRoot":"","sources":["../../../../../../../src/libs/api/metadata-converter/src/lib/iso19139/utils/update-frequency.mapper.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,eAAe,EAAE,MAAM,8DAA8D,CAAA;AAE9F,wBAAgB,mCAAmC,CACjD,aAAa,EAAE,MAAM,GACpB,eAAe,CA8DjB"}
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
import { Iso19139Converter } from './iso19139'
|
|
2
|
-
import { BaseConverter } from './base.converter'
|
|
3
|
-
import { Iso191153Converter } from './iso19115-3'
|
|
4
|
-
|
|
5
|
-
export function findConverterForDocument(
|
|
6
|
-
document: string
|
|
7
|
-
): BaseConverter<string> {
|
|
8
|
-
if (document.indexOf('mdb:MD_Metadata') > 0) {
|
|
9
|
-
return new Iso191153Converter()
|
|
10
|
-
} else if (document.indexOf('gmd:MD_Metadata') > 0) {
|
|
11
|
-
return new Iso19139Converter()
|
|
12
|
-
} else {
|
|
13
|
-
throw new Error(`No suitable converter found for the following document:
|
|
14
|
-
${document.substring(0, 400)}...`)
|
|
15
|
-
}
|
|
16
|
-
}
|
|
@@ -1,580 +0,0 @@
|
|
|
1
|
-
import {
|
|
2
|
-
DatasetRecord,
|
|
3
|
-
ServiceRecord,
|
|
4
|
-
} from '../../../../../../libs/common/domain/src/lib/model/record'
|
|
5
|
-
|
|
6
|
-
export const METAWAL_DATASET_RECORD: DatasetRecord = {
|
|
7
|
-
uniqueIdentifier: '2d974612-70b1-4662-a9f4-c43cbe453773',
|
|
8
|
-
abstract: `Cette donnée ponctuelle reprend la localisation des passages pour piétons sur l’ensemble des routes régionales du territoire.
|
|
9
|
-
|
|
10
|
-
Les passages pour piétons constituent un élément spécifique du réseau et font l'objet d'une attention particulière du gestionnaire de la voirie. L’implantation d’un passage piéton est régi par un arrêté ministériel.
|
|
11
|
-
|
|
12
|
-
Une distinction est faite entre les passages aux abords des écoles et les autres ; les premiers cités étant dotés d’aménagements spécifiques (éclairage, barrières,…).
|
|
13
|
-
|
|
14
|
-
Parmi les données attributaires de chaque élément, sont mentionnés la localisation de l’élément (route , BK, coordonnées XY) ainsi que le District gestionnaire. D’autres informations sont présentes dans la base de données : environnement, vitesse autorisée, aménagements, éléments de signalisation, distances de visibilité, …
|
|
15
|
-
|
|
16
|
-
Toutes ces données sont reprises dans BDR.`,
|
|
17
|
-
contacts: [
|
|
18
|
-
{
|
|
19
|
-
firstName: 'Frédéric',
|
|
20
|
-
lastName: 'Plumier',
|
|
21
|
-
position: 'Attaché',
|
|
22
|
-
email: 'frederic.plumier@spw.wallonie.be',
|
|
23
|
-
address: 'Boulevard du Nord, 8, Namur, 5000, Belgique',
|
|
24
|
-
organization: {
|
|
25
|
-
name: 'Direction Asset Management (SPW - Mobilité et Infrastructures - Direction Asset Management)',
|
|
26
|
-
},
|
|
27
|
-
role: 'point_of_contact',
|
|
28
|
-
},
|
|
29
|
-
],
|
|
30
|
-
contactsForResource: [
|
|
31
|
-
{
|
|
32
|
-
email: 'helpdesk.carto@spw.wallonie.be',
|
|
33
|
-
organization: {
|
|
34
|
-
name: "Helpdesk carto du SPW (SPW - Secrétariat général - SPW Digital - Département de la Géomatique - Direction de l'Intégration des géodonnées)",
|
|
35
|
-
},
|
|
36
|
-
role: 'point_of_contact',
|
|
37
|
-
},
|
|
38
|
-
{
|
|
39
|
-
firstName: 'Frédéric',
|
|
40
|
-
lastName: 'Plumier',
|
|
41
|
-
position: 'Attaché',
|
|
42
|
-
email: 'frederic.plumier@spw.wallonie.be',
|
|
43
|
-
address: 'Boulevard du Nord, 8, NAMUR, 5000, Belgique',
|
|
44
|
-
phone: '+32 (0)81/772760',
|
|
45
|
-
organization: {
|
|
46
|
-
name: 'Direction Asset Management (SPW - Mobilité et Infrastructures - Direction Asset Management)',
|
|
47
|
-
},
|
|
48
|
-
role: 'custodian',
|
|
49
|
-
},
|
|
50
|
-
{
|
|
51
|
-
email: 'missing@missing.com',
|
|
52
|
-
organization: {
|
|
53
|
-
name: 'Service public de Wallonie (SPW)',
|
|
54
|
-
website: new URL('https://geoportail.wallonie.be'),
|
|
55
|
-
},
|
|
56
|
-
role: 'owner',
|
|
57
|
-
},
|
|
58
|
-
{
|
|
59
|
-
email: 'helpdesk.carto@spw.wallonie.be',
|
|
60
|
-
organization: {
|
|
61
|
-
name: 'Service public de Wallonie (SPW)',
|
|
62
|
-
},
|
|
63
|
-
role: 'distributor',
|
|
64
|
-
},
|
|
65
|
-
],
|
|
66
|
-
recordCreated: new Date('2019-04-02T12:34:35'),
|
|
67
|
-
recordUpdated: new Date('2022-06-16T05:01:21'),
|
|
68
|
-
resourceCreated: new Date('2002-01-01'),
|
|
69
|
-
resourceUpdated: new Date('2022-06-16'),
|
|
70
|
-
resourcePublished: new Date('2022-06-16'),
|
|
71
|
-
distributions: [
|
|
72
|
-
{
|
|
73
|
-
description:
|
|
74
|
-
"Application de consultation des routes et autoroutes de Wallonie. Cette application est sécurisée et n'est accessible que pour les agents de la DGO1 du SPW.",
|
|
75
|
-
name: 'Portail cartographique des routes - Application sécurisée',
|
|
76
|
-
type: 'link',
|
|
77
|
-
url: new URL('http://geoapps.spw.wallonie.be/portailRoutes/'),
|
|
78
|
-
},
|
|
79
|
-
{
|
|
80
|
-
description:
|
|
81
|
-
"Application sécurisée permettant d'accéder aux rapports pour les passages pour piétons dans la BDR",
|
|
82
|
-
name: 'Rapport pour les passages pour piétons dans la BDR - Application sécurisée',
|
|
83
|
-
type: 'link',
|
|
84
|
-
url: new URL('http://rapport.papiweb.spw.wallonie.be/RapportPaPi/'),
|
|
85
|
-
},
|
|
86
|
-
{
|
|
87
|
-
description:
|
|
88
|
-
'Portail de la DGO1 - Routes et Bâtiments relatif aux autoroutes et routes de Wallonie',
|
|
89
|
-
name: 'Portail autouroutes et routes de Wallonie',
|
|
90
|
-
type: 'link',
|
|
91
|
-
url: new URL('http://routes.wallonie.be/'),
|
|
92
|
-
},
|
|
93
|
-
],
|
|
94
|
-
keywords: [
|
|
95
|
-
{
|
|
96
|
-
label: 'Routes',
|
|
97
|
-
thesaurus: {
|
|
98
|
-
id: 'geonetwork.thesaurus.external.theme.Themes_geoportail_wallon_hierarchy',
|
|
99
|
-
name: 'Thèmes du géoportail wallon',
|
|
100
|
-
url: new URL(
|
|
101
|
-
'https://metawal.wallonie.be/geonetwork/srv/api/registries/vocabularies/external.theme.Themes_geoportail_wallon_hierarchy'
|
|
102
|
-
),
|
|
103
|
-
},
|
|
104
|
-
type: 'theme',
|
|
105
|
-
},
|
|
106
|
-
{
|
|
107
|
-
label: 'géographie',
|
|
108
|
-
thesaurus: {
|
|
109
|
-
id: 'geonetwork.thesaurus.external.theme.gemet-theme',
|
|
110
|
-
name: 'GEMET themes',
|
|
111
|
-
url: new URL(
|
|
112
|
-
'https://metawal.wallonie.be/geonetwork/srv/api/registries/vocabularies/external.theme.gemet-theme'
|
|
113
|
-
),
|
|
114
|
-
},
|
|
115
|
-
type: 'theme',
|
|
116
|
-
},
|
|
117
|
-
{
|
|
118
|
-
label: 'transport',
|
|
119
|
-
thesaurus: {
|
|
120
|
-
id: 'geonetwork.thesaurus.external.theme.gemet-theme',
|
|
121
|
-
name: 'GEMET themes',
|
|
122
|
-
url: new URL(
|
|
123
|
-
'https://metawal.wallonie.be/geonetwork/srv/api/registries/vocabularies/external.theme.gemet-theme'
|
|
124
|
-
),
|
|
125
|
-
},
|
|
126
|
-
type: 'theme',
|
|
127
|
-
},
|
|
128
|
-
{
|
|
129
|
-
label: 'infrastructure routière',
|
|
130
|
-
thesaurus: {
|
|
131
|
-
id: 'geonetwork.thesaurus.external.theme.gemet',
|
|
132
|
-
name: 'GEMET',
|
|
133
|
-
url: new URL(
|
|
134
|
-
'https://metawal.wallonie.be/geonetwork/srv/api/registries/vocabularies/external.theme.gemet'
|
|
135
|
-
),
|
|
136
|
-
},
|
|
137
|
-
type: 'theme',
|
|
138
|
-
},
|
|
139
|
-
{
|
|
140
|
-
label: 'contrôle de la circulation',
|
|
141
|
-
thesaurus: {
|
|
142
|
-
id: 'geonetwork.thesaurus.external.theme.gemet',
|
|
143
|
-
name: 'GEMET',
|
|
144
|
-
url: new URL(
|
|
145
|
-
'https://metawal.wallonie.be/geonetwork/srv/api/registries/vocabularies/external.theme.gemet'
|
|
146
|
-
),
|
|
147
|
-
},
|
|
148
|
-
type: 'theme',
|
|
149
|
-
},
|
|
150
|
-
{
|
|
151
|
-
label: 'réseau routier',
|
|
152
|
-
thesaurus: {
|
|
153
|
-
id: 'geonetwork.thesaurus.external.theme.gemet',
|
|
154
|
-
name: 'GEMET',
|
|
155
|
-
url: new URL(
|
|
156
|
-
'https://metawal.wallonie.be/geonetwork/srv/api/registries/vocabularies/external.theme.gemet'
|
|
157
|
-
),
|
|
158
|
-
},
|
|
159
|
-
type: 'theme',
|
|
160
|
-
},
|
|
161
|
-
{
|
|
162
|
-
label: 'route',
|
|
163
|
-
thesaurus: {
|
|
164
|
-
id: 'geonetwork.thesaurus.external.theme.gemet',
|
|
165
|
-
name: 'GEMET',
|
|
166
|
-
url: new URL(
|
|
167
|
-
'https://metawal.wallonie.be/geonetwork/srv/api/registries/vocabularies/external.theme.gemet'
|
|
168
|
-
),
|
|
169
|
-
},
|
|
170
|
-
type: 'theme',
|
|
171
|
-
},
|
|
172
|
-
{
|
|
173
|
-
label: 'route',
|
|
174
|
-
thesaurus: {
|
|
175
|
-
id: 'geonetwork.thesaurus.external.theme.gemet',
|
|
176
|
-
name: 'GEMET',
|
|
177
|
-
url: new URL(
|
|
178
|
-
'https://metawal.wallonie.be/geonetwork/srv/api/registries/vocabularies/external.theme.gemet'
|
|
179
|
-
),
|
|
180
|
-
},
|
|
181
|
-
type: 'theme',
|
|
182
|
-
},
|
|
183
|
-
{
|
|
184
|
-
label: 'surveillance du trafic',
|
|
185
|
-
thesaurus: {
|
|
186
|
-
id: 'geonetwork.thesaurus.external.theme.gemet',
|
|
187
|
-
name: 'GEMET',
|
|
188
|
-
url: new URL(
|
|
189
|
-
'https://metawal.wallonie.be/geonetwork/srv/api/registries/vocabularies/external.theme.gemet'
|
|
190
|
-
),
|
|
191
|
-
},
|
|
192
|
-
type: 'theme',
|
|
193
|
-
},
|
|
194
|
-
{
|
|
195
|
-
label: 'réglementation de la circulation',
|
|
196
|
-
thesaurus: {
|
|
197
|
-
id: 'geonetwork.thesaurus.external.theme.gemet',
|
|
198
|
-
name: 'GEMET',
|
|
199
|
-
url: new URL(
|
|
200
|
-
'https://metawal.wallonie.be/geonetwork/srv/api/registries/vocabularies/external.theme.gemet'
|
|
201
|
-
),
|
|
202
|
-
},
|
|
203
|
-
type: 'theme',
|
|
204
|
-
},
|
|
205
|
-
{
|
|
206
|
-
label: 'trafic routier',
|
|
207
|
-
thesaurus: {
|
|
208
|
-
id: 'geonetwork.thesaurus.external.theme.gemet',
|
|
209
|
-
name: 'GEMET',
|
|
210
|
-
url: new URL(
|
|
211
|
-
'https://metawal.wallonie.be/geonetwork/srv/api/registries/vocabularies/external.theme.gemet'
|
|
212
|
-
),
|
|
213
|
-
},
|
|
214
|
-
type: 'theme',
|
|
215
|
-
},
|
|
216
|
-
{
|
|
217
|
-
label: 'transport terrestre',
|
|
218
|
-
thesaurus: {
|
|
219
|
-
id: 'geonetwork.thesaurus.external.theme.gemet',
|
|
220
|
-
name: 'GEMET',
|
|
221
|
-
url: new URL(
|
|
222
|
-
'https://metawal.wallonie.be/geonetwork/srv/api/registries/vocabularies/external.theme.gemet'
|
|
223
|
-
),
|
|
224
|
-
},
|
|
225
|
-
type: 'theme',
|
|
226
|
-
},
|
|
227
|
-
{
|
|
228
|
-
label: 'véhicule',
|
|
229
|
-
thesaurus: {
|
|
230
|
-
id: 'geonetwork.thesaurus.external.theme.gemet',
|
|
231
|
-
name: 'GEMET',
|
|
232
|
-
url: new URL(
|
|
233
|
-
'https://metawal.wallonie.be/geonetwork/srv/api/registries/vocabularies/external.theme.gemet'
|
|
234
|
-
),
|
|
235
|
-
},
|
|
236
|
-
type: 'theme',
|
|
237
|
-
},
|
|
238
|
-
{
|
|
239
|
-
label: 'autoroute',
|
|
240
|
-
thesaurus: {
|
|
241
|
-
id: 'geonetwork.thesaurus.external.theme.gemet',
|
|
242
|
-
name: 'GEMET',
|
|
243
|
-
url: new URL(
|
|
244
|
-
'https://metawal.wallonie.be/geonetwork/srv/api/registries/vocabularies/external.theme.gemet'
|
|
245
|
-
),
|
|
246
|
-
},
|
|
247
|
-
type: 'theme',
|
|
248
|
-
},
|
|
249
|
-
{
|
|
250
|
-
label: 'route à grande circulation',
|
|
251
|
-
thesaurus: {
|
|
252
|
-
id: 'geonetwork.thesaurus.external.theme.gemet',
|
|
253
|
-
name: 'GEMET',
|
|
254
|
-
url: new URL(
|
|
255
|
-
'https://metawal.wallonie.be/geonetwork/srv/api/registries/vocabularies/external.theme.gemet'
|
|
256
|
-
),
|
|
257
|
-
},
|
|
258
|
-
type: 'theme',
|
|
259
|
-
},
|
|
260
|
-
{
|
|
261
|
-
label: 'transport en commun',
|
|
262
|
-
thesaurus: {
|
|
263
|
-
id: 'geonetwork.thesaurus.external.theme.gemet',
|
|
264
|
-
name: 'GEMET',
|
|
265
|
-
url: new URL(
|
|
266
|
-
'https://metawal.wallonie.be/geonetwork/srv/api/registries/vocabularies/external.theme.gemet'
|
|
267
|
-
),
|
|
268
|
-
},
|
|
269
|
-
type: 'theme',
|
|
270
|
-
},
|
|
271
|
-
{
|
|
272
|
-
label: 'BDInfraSIG',
|
|
273
|
-
thesaurus: {
|
|
274
|
-
id: 'geonetwork.thesaurus.external.theme.infraSIG',
|
|
275
|
-
name: 'Mots-clés InfraSIG',
|
|
276
|
-
url: new URL(
|
|
277
|
-
'https://metawal.wallonie.be/geonetwork/srv/api/registries/vocabularies/external.theme.infraSIG'
|
|
278
|
-
),
|
|
279
|
-
},
|
|
280
|
-
type: 'theme',
|
|
281
|
-
},
|
|
282
|
-
{
|
|
283
|
-
label: 'passage piéton',
|
|
284
|
-
type: 'theme',
|
|
285
|
-
},
|
|
286
|
-
{
|
|
287
|
-
label: 'voirie régionale',
|
|
288
|
-
type: 'theme',
|
|
289
|
-
},
|
|
290
|
-
{
|
|
291
|
-
label: 'route régionale',
|
|
292
|
-
type: 'theme',
|
|
293
|
-
},
|
|
294
|
-
{
|
|
295
|
-
label: 'voie de communication',
|
|
296
|
-
type: 'theme',
|
|
297
|
-
},
|
|
298
|
-
{
|
|
299
|
-
label: 'code de la rue',
|
|
300
|
-
type: 'theme',
|
|
301
|
-
},
|
|
302
|
-
{
|
|
303
|
-
label: 'aménagement routier',
|
|
304
|
-
type: 'theme',
|
|
305
|
-
},
|
|
306
|
-
{
|
|
307
|
-
label: 'usager faible',
|
|
308
|
-
type: 'theme',
|
|
309
|
-
},
|
|
310
|
-
{
|
|
311
|
-
label: 'piéton',
|
|
312
|
-
type: 'theme',
|
|
313
|
-
},
|
|
314
|
-
{
|
|
315
|
-
label: 'gestion de la circulation',
|
|
316
|
-
type: 'theme',
|
|
317
|
-
},
|
|
318
|
-
{
|
|
319
|
-
label: 'visibilité',
|
|
320
|
-
type: 'theme',
|
|
321
|
-
},
|
|
322
|
-
{
|
|
323
|
-
label: 'code de la route',
|
|
324
|
-
type: 'theme',
|
|
325
|
-
},
|
|
326
|
-
{
|
|
327
|
-
label: 'accotement',
|
|
328
|
-
type: 'theme',
|
|
329
|
-
},
|
|
330
|
-
{
|
|
331
|
-
label: 'marquage',
|
|
332
|
-
type: 'theme',
|
|
333
|
-
},
|
|
334
|
-
{
|
|
335
|
-
label: 'pied',
|
|
336
|
-
type: 'theme',
|
|
337
|
-
},
|
|
338
|
-
{
|
|
339
|
-
label: 'signalisation',
|
|
340
|
-
type: 'theme',
|
|
341
|
-
},
|
|
342
|
-
{
|
|
343
|
-
label: 'Régional',
|
|
344
|
-
thesaurus: {
|
|
345
|
-
id: 'geonetwork.thesaurus.external.theme.httpinspireeceuropaeumetadatacodelistSpatialScope-SpatialScope',
|
|
346
|
-
name: 'Champ géographique',
|
|
347
|
-
url: new URL(
|
|
348
|
-
'https://metawal.wallonie.be/geonetwork/srv/api/registries/vocabularies/external.theme.httpinspireeceuropaeumetadatacodelistSpatialScope-SpatialScope'
|
|
349
|
-
),
|
|
350
|
-
},
|
|
351
|
-
type: 'theme',
|
|
352
|
-
},
|
|
353
|
-
],
|
|
354
|
-
kind: 'dataset',
|
|
355
|
-
legalConstraints: [],
|
|
356
|
-
licenses: [
|
|
357
|
-
{
|
|
358
|
-
text: "Les conditions générales d'accès s’appliquent.",
|
|
359
|
-
url: new URL(
|
|
360
|
-
'https://geoportail.wallonie.be/files/documents/ConditionsSPW/DataSPW-CGA.pdf'
|
|
361
|
-
),
|
|
362
|
-
},
|
|
363
|
-
{
|
|
364
|
-
text: "Les conditions générales d'utilisation s'appliquent.",
|
|
365
|
-
url: new URL(
|
|
366
|
-
'https://geoportail.wallonie.be/files/documents/ConditionsSPW/DataSPW-CGU.pdf'
|
|
367
|
-
),
|
|
368
|
-
},
|
|
369
|
-
],
|
|
370
|
-
lineage: `En 2002, la Direction de le Sécurité des aménagements de voiries a décidé de mener une analyse approfondie de la sécurité sur les passages piétons. En effet, depuis 1996 (loi du 21/12/2006), le piéton manifestant clairement son intention de traverser au droit d'un passage piéton bénéficie d'une priorité absolue sur les automobilistes.
|
|
371
|
-
|
|
372
|
-
La première démarche de cette direction a été de créer une base de données. Un relevé de tous les passages a donc été effectué de 2003 à 2005 et un peu moins de 6000 passages ont été répertoriés via une fiche de terrain qui est toujours utilisée actuellement.
|
|
373
|
-
|
|
374
|
-
Cette donnée a été intégrée dans la base de données routière (BDR). Les Districts routiers font la mise à jour directement dans cette base de données.
|
|
375
|
-
|
|
376
|
-
Ces données, intégrées dans la Banque de Données routières (BDR), ont fait l’objet d’une mise à jour massive en 2014-2015.
|
|
377
|
-
Depuis, ce sont les Districts routiers qui assurent la tenue à jour de ces informations directement dans la base de données.`,
|
|
378
|
-
otherConstraints: [],
|
|
379
|
-
overviews: [
|
|
380
|
-
{
|
|
381
|
-
description: 'PASSAGES_PIETONS',
|
|
382
|
-
url: new URL(
|
|
383
|
-
'https://metawal.wallonie.be/geonetwork/srv/api/records/2d974612-70b1-4662-a9f4-c43cbe453773/attachments/PASSAGES_PIETONS.png'
|
|
384
|
-
),
|
|
385
|
-
},
|
|
386
|
-
],
|
|
387
|
-
ownerOrganization: {
|
|
388
|
-
name: 'Direction Asset Management (SPW - Mobilité et Infrastructures - Direction Asset Management)',
|
|
389
|
-
},
|
|
390
|
-
securityConstraints: [],
|
|
391
|
-
spatialExtents: [],
|
|
392
|
-
spatialRepresentation: 'vector',
|
|
393
|
-
status: 'ongoing',
|
|
394
|
-
temporalExtents: [],
|
|
395
|
-
title: 'Passages pour piéton',
|
|
396
|
-
topics: ['transportation'],
|
|
397
|
-
updateFrequency: 'continual',
|
|
398
|
-
landingPage: new URL(
|
|
399
|
-
'https://metawal.wallonie.be/geonetwork/srv/api/records/2d974612-70b1-4662-a9f4-c43cbe453773'
|
|
400
|
-
),
|
|
401
|
-
languages: [],
|
|
402
|
-
}
|
|
403
|
-
|
|
404
|
-
export const METAWAL_SERVICE_RECORD: ServiceRecord = {
|
|
405
|
-
uniqueIdentifier: '6d2b6fdb-f1ea-4d48-8697-a0c05512f1dc',
|
|
406
|
-
abstract:
|
|
407
|
-
"Ce service permet de visualiser les données du bâti et du parcellaire CADMAP 2016 fournies par l'Administration Générale de la Documentation Patrimoniale (AGDP - tous droits réservés) au Service public de Wallonie.",
|
|
408
|
-
contacts: [
|
|
409
|
-
{
|
|
410
|
-
email: 'helpdesk.carto@spw.wallonie.be',
|
|
411
|
-
organization: {
|
|
412
|
-
name: "Direction de l'Intégration des géodonnées (SPW - Secrétariat général - SPW Digital - Département de la Géomatique - Direction de l'Intégration des géodonnées)",
|
|
413
|
-
},
|
|
414
|
-
role: 'point_of_contact',
|
|
415
|
-
},
|
|
416
|
-
],
|
|
417
|
-
contactsForResource: [
|
|
418
|
-
{
|
|
419
|
-
email: 'helpdesk.carto@spw.wallonie.be',
|
|
420
|
-
organization: {
|
|
421
|
-
name: "Helpdesk carto du SPW (SPW - Secrétariat général - SPW Digital - Département de la Géomatique - Direction de l'Intégration des géodonnées)",
|
|
422
|
-
},
|
|
423
|
-
role: 'point_of_contact',
|
|
424
|
-
},
|
|
425
|
-
{
|
|
426
|
-
email: 'helpdesk.carto@spw.wallonie.be',
|
|
427
|
-
organization: {
|
|
428
|
-
name: "Direction de l'Intégration des géodonnées (SPW - Secrétariat général - SPW Digital - Département de la Géomatique - Direction de l'Intégration des géodonnées)",
|
|
429
|
-
},
|
|
430
|
-
role: 'custodian',
|
|
431
|
-
},
|
|
432
|
-
{
|
|
433
|
-
email: 'missing@missing.com',
|
|
434
|
-
organization: {
|
|
435
|
-
name: 'Service public de Wallonie (SPW)',
|
|
436
|
-
website: new URL('https://geoportail.wallonie.be/'),
|
|
437
|
-
},
|
|
438
|
-
role: 'owner',
|
|
439
|
-
},
|
|
440
|
-
{
|
|
441
|
-
email: 'helpdesk.carto@spw.wallonie.be',
|
|
442
|
-
organization: {
|
|
443
|
-
name: 'Service public de Wallonie (SPW)',
|
|
444
|
-
},
|
|
445
|
-
role: 'distributor',
|
|
446
|
-
},
|
|
447
|
-
],
|
|
448
|
-
keywords: [
|
|
449
|
-
{
|
|
450
|
-
label: 'Plans et règlements',
|
|
451
|
-
thesaurus: {
|
|
452
|
-
id: 'geonetwork.thesaurus.external.theme.Themes_geoportail_wallon_hierarchy',
|
|
453
|
-
name: 'Thèmes du géoportail wallon',
|
|
454
|
-
url: new URL(
|
|
455
|
-
'https://metawal.wallonie.be/geonetwork/srv/api/registries/vocabularies/external.theme.Themes_geoportail_wallon_hierarchy'
|
|
456
|
-
),
|
|
457
|
-
},
|
|
458
|
-
type: 'theme',
|
|
459
|
-
},
|
|
460
|
-
{
|
|
461
|
-
label: 'Données de base',
|
|
462
|
-
thesaurus: {
|
|
463
|
-
id: 'geonetwork.thesaurus.external.theme.Themes_geoportail_wallon_hierarchy',
|
|
464
|
-
name: 'Thèmes du géoportail wallon',
|
|
465
|
-
url: new URL(
|
|
466
|
-
'https://metawal.wallonie.be/geonetwork/srv/api/registries/vocabularies/external.theme.Themes_geoportail_wallon_hierarchy'
|
|
467
|
-
),
|
|
468
|
-
},
|
|
469
|
-
type: 'theme',
|
|
470
|
-
},
|
|
471
|
-
{
|
|
472
|
-
label: 'administration',
|
|
473
|
-
thesaurus: {
|
|
474
|
-
id: 'geonetwork.thesaurus.external.theme.gemet-theme',
|
|
475
|
-
name: 'GEMET themes',
|
|
476
|
-
url: new URL(
|
|
477
|
-
'https://metawal.wallonie.be/geonetwork/srv/api/registries/vocabularies/external.theme.gemet-theme'
|
|
478
|
-
),
|
|
479
|
-
},
|
|
480
|
-
type: 'theme',
|
|
481
|
-
},
|
|
482
|
-
{
|
|
483
|
-
label: 'Reporting INSPIRENO',
|
|
484
|
-
thesaurus: {
|
|
485
|
-
id: 'geonetwork.thesaurus.external.theme.infraSIG',
|
|
486
|
-
name: 'Mots-clés InfraSIG',
|
|
487
|
-
url: new URL(
|
|
488
|
-
'https://metawal.wallonie.be/geonetwork/srv/api/registries/vocabularies/external.theme.infraSIG'
|
|
489
|
-
),
|
|
490
|
-
},
|
|
491
|
-
type: 'theme',
|
|
492
|
-
},
|
|
493
|
-
{
|
|
494
|
-
label: 'Ministère des Finances',
|
|
495
|
-
type: 'theme',
|
|
496
|
-
},
|
|
497
|
-
{
|
|
498
|
-
label: 'SPF Finances',
|
|
499
|
-
type: 'theme',
|
|
500
|
-
},
|
|
501
|
-
{
|
|
502
|
-
label: 'Cadastre',
|
|
503
|
-
type: 'theme',
|
|
504
|
-
},
|
|
505
|
-
{
|
|
506
|
-
label: 'Administration Générale de la Documentation Patrimoniale',
|
|
507
|
-
type: 'theme',
|
|
508
|
-
},
|
|
509
|
-
{
|
|
510
|
-
label: 'Etat Fédéral',
|
|
511
|
-
type: 'theme',
|
|
512
|
-
},
|
|
513
|
-
{
|
|
514
|
-
label: 'Cadmap',
|
|
515
|
-
type: 'theme',
|
|
516
|
-
},
|
|
517
|
-
{
|
|
518
|
-
label: 'Cadgis',
|
|
519
|
-
type: 'theme',
|
|
520
|
-
},
|
|
521
|
-
{
|
|
522
|
-
label: 'Propriété',
|
|
523
|
-
type: 'theme',
|
|
524
|
-
},
|
|
525
|
-
{
|
|
526
|
-
label: 'Plan cadastral',
|
|
527
|
-
type: 'theme',
|
|
528
|
-
},
|
|
529
|
-
{
|
|
530
|
-
label: 'Fiscal',
|
|
531
|
-
type: 'theme',
|
|
532
|
-
},
|
|
533
|
-
{
|
|
534
|
-
label: 'Zonage',
|
|
535
|
-
type: 'theme',
|
|
536
|
-
},
|
|
537
|
-
{
|
|
538
|
-
label: 'Privé',
|
|
539
|
-
type: 'theme',
|
|
540
|
-
},
|
|
541
|
-
{
|
|
542
|
-
label: 'Parcellaire cadastral',
|
|
543
|
-
type: 'theme',
|
|
544
|
-
},
|
|
545
|
-
],
|
|
546
|
-
kind: 'service',
|
|
547
|
-
legalConstraints: [],
|
|
548
|
-
licenses: [
|
|
549
|
-
{
|
|
550
|
-
text: "Les conditions d'utilisation du service sont régies par les Conditions d’accès et d’utilisation des services web géographiques de visualisation du Service public de Wallonie consultables à l'adresse https://geoportail.wallonie.be/files/documents/ConditionsSPW/LicServicesSPW.pdf\n\n Elles s'appliquent sans préjudice des conditions d'accès à la donnée décrites dans la fiche de la donnée.",
|
|
551
|
-
},
|
|
552
|
-
],
|
|
553
|
-
onlineResources: [
|
|
554
|
-
{
|
|
555
|
-
description:
|
|
556
|
-
'Ce service ESRI-REST permet de visualiser la couche de données "Plan parcellaire cadastral - situation 01/01/2016" (uniquement les données du bâti et le parcellaire)',
|
|
557
|
-
endpointUrl: new URL(
|
|
558
|
-
'https://geoservices.wallonie.be/arcgis/rest/services/PLAN_REGLEMENT/CADMAP_2016_PARCELLES/MapServer'
|
|
559
|
-
),
|
|
560
|
-
protocol: 'esriRest',
|
|
561
|
-
type: 'endpoint',
|
|
562
|
-
},
|
|
563
|
-
],
|
|
564
|
-
otherConstraints: [],
|
|
565
|
-
overviews: [],
|
|
566
|
-
ownerOrganization: {
|
|
567
|
-
name: "Direction de l'Intégration des géodonnées (SPW - Secrétariat général - SPW Digital - Département de la Géomatique - Direction de l'Intégration des géodonnées)",
|
|
568
|
-
},
|
|
569
|
-
recordCreated: new Date('2019-04-02T12:31:58'),
|
|
570
|
-
recordUpdated: new Date('2022-02-09T11:31:06.766Z'),
|
|
571
|
-
resourcePublished: new Date('2016-12-01'),
|
|
572
|
-
securityConstraints: [],
|
|
573
|
-
title:
|
|
574
|
-
'Plan parcellaire cadastral - situation au 01/01/2016 - Service de visualisation REST',
|
|
575
|
-
topics: [],
|
|
576
|
-
languages: [],
|
|
577
|
-
landingPage: new URL(
|
|
578
|
-
'https://metawal.wallonie.be/geonetwork/srv/api/records/6d2b6fdb-f1ea-4d48-8697-a0c05512f1dc'
|
|
579
|
-
),
|
|
580
|
-
}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from './iso19115-3.converter'
|