geonetwork-ui 2.4.0-dev.fdf8f64b → 2.4.1-dev.c1a684900
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/README.md +1 -7
- package/esm2022/libs/api/metadata-converter/src/lib/common/distribution.mapper.mjs +3 -1
- package/esm2022/libs/api/metadata-converter/src/lib/common/license.mjs +1 -1
- package/esm2022/libs/api/metadata-converter/src/lib/common/resource-types.mjs +38 -0
- package/esm2022/libs/api/metadata-converter/src/lib/common/url.mjs +1 -1
- package/esm2022/libs/api/metadata-converter/src/lib/convert-utils.mjs +1 -1
- package/esm2022/libs/api/metadata-converter/src/lib/dcat-ap/dcat-ap.converter.mjs +51 -35
- package/esm2022/libs/api/metadata-converter/src/lib/dcat-ap/read-parts.mjs +71 -40
- package/esm2022/libs/api/metadata-converter/src/lib/dcat-ap/utils/graph-utils.mjs +37 -26
- package/esm2022/libs/api/metadata-converter/src/lib/dcat-ap/utils/serialize-to-xml.mjs +30 -8
- package/esm2022/libs/api/metadata-converter/src/lib/dcat-ap/write-parts.mjs +32 -12
- package/esm2022/libs/api/metadata-converter/src/lib/find-converter.mjs +1 -1
- package/esm2022/libs/api/metadata-converter/src/lib/function-utils.mjs +1 -1
- package/esm2022/libs/api/metadata-converter/src/lib/gn4/atomic-operations.mjs +1 -1
- package/esm2022/libs/api/metadata-converter/src/lib/gn4/gn4.converter.mjs +7 -6
- package/esm2022/libs/api/metadata-converter/src/lib/gn4/gn4.field.mapper.mjs +31 -18
- package/esm2022/libs/api/metadata-converter/src/lib/gn4/metadata-url.service.mjs +5 -5
- package/esm2022/libs/api/metadata-converter/src/lib/gn4/types/elasticsearch.model.mjs +1 -1
- package/esm2022/libs/api/metadata-converter/src/lib/gn4/types/metadata.model.mjs +1 -1
- package/esm2022/libs/api/metadata-converter/src/lib/iso19115-3/iso19115-3.converter.mjs +11 -5
- package/esm2022/libs/api/metadata-converter/src/lib/iso19115-3/read-parts.mjs +36 -12
- package/esm2022/libs/api/metadata-converter/src/lib/iso19115-3/write-parts.mjs +45 -18
- package/esm2022/libs/api/metadata-converter/src/lib/iso19139/iso19139.converter.mjs +150 -87
- package/esm2022/libs/api/metadata-converter/src/lib/iso19139/read-parts.mjs +114 -28
- package/esm2022/libs/api/metadata-converter/src/lib/iso19139/utils/keyword.mapper.mjs +1 -1
- package/esm2022/libs/api/metadata-converter/src/lib/iso19139/utils/role.mapper.mjs +1 -1
- package/esm2022/libs/api/metadata-converter/src/lib/iso19139/utils/status.mapper.mjs +1 -1
- package/esm2022/libs/api/metadata-converter/src/lib/iso19139/utils/update-frequency.mapper.mjs +1 -1
- package/esm2022/libs/api/metadata-converter/src/lib/iso19139/write-parts.mjs +116 -63
- package/esm2022/libs/api/metadata-converter/src/lib/xml-utils.mjs +77 -22
- package/esm2022/libs/api/repository/src/lib/gn4/auth/auth.service.mjs +36 -9
- package/esm2022/libs/api/repository/src/lib/gn4/auth/gravatar.service.mjs +5 -5
- package/esm2022/libs/api/repository/src/lib/gn4/elasticsearch/date-range.utils.mjs +12 -0
- package/esm2022/libs/api/repository/src/lib/gn4/elasticsearch/elasticsearch.service.mjs +50 -25
- package/esm2022/libs/api/repository/src/lib/gn4/elasticsearch/index.mjs +2 -1
- package/esm2022/libs/api/repository/src/lib/gn4/favorites/favorites.service.mjs +4 -4
- package/esm2022/libs/api/repository/src/lib/gn4/gn4-repository.mjs +61 -15
- package/esm2022/libs/api/repository/src/lib/gn4/organizations/organizations-from-groups.service.mjs +4 -4
- package/esm2022/libs/api/repository/src/lib/gn4/organizations/organizations-from-metadata.service.mjs +5 -5
- package/esm2022/libs/api/repository/src/lib/gn4/platform/gn4-platform.mapper.mjs +5 -5
- package/esm2022/libs/api/repository/src/lib/gn4/platform/gn4-platform.service.mjs +59 -31
- package/esm2022/libs/api/repository/src/lib/gn4/selection/selection.service.mjs +4 -4
- package/esm2022/libs/api/repository/src/lib/gn4/settings/gn4-settings.service.mjs +4 -4
- package/esm2022/libs/common/domain/src/lib/model/dataviz/dataviz-configuration.model.mjs +1 -1
- package/esm2022/libs/common/domain/src/lib/model/error/index.mjs +2 -0
- package/esm2022/libs/common/domain/src/lib/model/error/publication-version.error.mjs +8 -0
- package/esm2022/libs/common/domain/src/lib/model/record/contact.model.mjs +19 -19
- package/esm2022/libs/common/domain/src/lib/model/record/index.mjs +2 -1
- package/esm2022/libs/common/domain/src/lib/model/record/metadata.model.mjs +1 -1
- package/esm2022/libs/common/domain/src/lib/model/record/organization.model.mjs +1 -1
- package/esm2022/libs/common/domain/src/lib/model/record/translation.model.mjs +2 -0
- package/esm2022/libs/common/domain/src/lib/model/search/filter.model.mjs +1 -1
- package/esm2022/libs/common/domain/src/lib/model/search/sort-by.model.mjs +2 -1
- package/esm2022/libs/common/domain/src/lib/platform.service.interface.mjs +1 -1
- package/esm2022/libs/common/domain/src/lib/repository/records-repository.interface.mjs +1 -1
- package/esm2022/libs/data-access/gn4/src/openapi/api/atom.api.service.mjs +6 -6
- package/esm2022/libs/data-access/gn4/src/openapi/api/customstyle.api.service.mjs +6 -6
- package/esm2022/libs/data-access/gn4/src/openapi/api/formatters.api.service.mjs +6 -6
- package/esm2022/libs/data-access/gn4/src/openapi/api/groups.api.service.mjs +6 -6
- package/esm2022/libs/data-access/gn4/src/openapi/api/harvesters.api.service.mjs +6 -6
- package/esm2022/libs/data-access/gn4/src/openapi/api/identifiers.api.service.mjs +6 -6
- package/esm2022/libs/data-access/gn4/src/openapi/api/languages.api.service.mjs +6 -6
- package/esm2022/libs/data-access/gn4/src/openapi/api/links.api.service.mjs +6 -6
- package/esm2022/libs/data-access/gn4/src/openapi/api/logos.api.service.mjs +6 -6
- package/esm2022/libs/data-access/gn4/src/openapi/api/mapservers.api.service.mjs +6 -6
- package/esm2022/libs/data-access/gn4/src/openapi/api/mapservices.api.service.mjs +6 -6
- package/esm2022/libs/data-access/gn4/src/openapi/api/me.api.service.mjs +6 -6
- package/esm2022/libs/data-access/gn4/src/openapi/api/operations.api.service.mjs +6 -6
- package/esm2022/libs/data-access/gn4/src/openapi/api/pages.api.service.mjs +6 -6
- package/esm2022/libs/data-access/gn4/src/openapi/api/processes.api.service.mjs +6 -6
- package/esm2022/libs/data-access/gn4/src/openapi/api/records.api.service.mjs +6 -6
- package/esm2022/libs/data-access/gn4/src/openapi/api/regions.api.service.mjs +6 -6
- package/esm2022/libs/data-access/gn4/src/openapi/api/registries.api.service.mjs +6 -6
- package/esm2022/libs/data-access/gn4/src/openapi/api/related.api.service.mjs +6 -6
- package/esm2022/libs/data-access/gn4/src/openapi/api/search.api.service.mjs +6 -6
- package/esm2022/libs/data-access/gn4/src/openapi/api/selections.api.service.mjs +6 -6
- package/esm2022/libs/data-access/gn4/src/openapi/api/site.api.service.mjs +6 -6
- package/esm2022/libs/data-access/gn4/src/openapi/api/sources.api.service.mjs +6 -6
- package/esm2022/libs/data-access/gn4/src/openapi/api/standards.api.service.mjs +6 -6
- package/esm2022/libs/data-access/gn4/src/openapi/api/status.api.service.mjs +6 -6
- package/esm2022/libs/data-access/gn4/src/openapi/api/tags.api.service.mjs +6 -6
- package/esm2022/libs/data-access/gn4/src/openapi/api/tools.api.service.mjs +6 -6
- package/esm2022/libs/data-access/gn4/src/openapi/api/ui.api.service.mjs +6 -6
- package/esm2022/libs/data-access/gn4/src/openapi/api/userfeedback.api.service.mjs +6 -6
- package/esm2022/libs/data-access/gn4/src/openapi/api/users.api.service.mjs +6 -6
- package/esm2022/libs/data-access/gn4/src/openapi/api/usersearches.api.service.mjs +6 -6
- package/esm2022/libs/data-access/gn4/src/openapi/api/userselections.api.service.mjs +6 -6
- package/esm2022/libs/data-access/gn4/src/openapi/api.module.mjs +7 -7
- package/esm2022/libs/data-access/gn4/src/openapi/configuration.mjs +1 -1
- package/esm2022/libs/feature/auth/src/lib/feature-auth.module.mjs +4 -4
- package/esm2022/libs/feature/catalog/src/lib/feature-catalog.module.mjs +14 -21
- package/esm2022/libs/feature/catalog/src/lib/my-org/my-org.service.mjs +4 -4
- package/esm2022/libs/feature/catalog/src/lib/organisations/organisations.component.mjs +41 -16
- package/esm2022/libs/feature/catalog/src/lib/records/records.service.mjs +4 -4
- package/esm2022/libs/feature/catalog/src/lib/site-title/site-title.component.mjs +6 -6
- package/esm2022/libs/feature/catalog/src/lib/source-label/source-label.component.mjs +5 -5
- package/esm2022/libs/feature/catalog/src/lib/sources/sources.service.mjs +4 -4
- package/esm2022/libs/feature/dataviz/src/index.mjs +1 -2
- package/esm2022/libs/feature/dataviz/src/lib/chart-view/chart-view.component.mjs +18 -11
- package/esm2022/libs/feature/dataviz/src/lib/figure/figure-container/figure-container.component.mjs +7 -6
- package/esm2022/libs/feature/dataviz/src/lib/figure/figure.service.mjs +4 -4
- package/esm2022/libs/feature/dataviz/src/lib/geo-table-view/geo-table-view.component.mjs +7 -10
- package/esm2022/libs/feature/dataviz/src/lib/service/data.service.mjs +20 -9
- package/esm2022/libs/feature/dataviz/src/lib/table-view/table-view.component.mjs +16 -10
- package/esm2022/libs/feature/editor/src/lib/+state/editor.actions.mjs +4 -1
- package/esm2022/libs/feature/editor/src/lib/+state/editor.effects.mjs +23 -6
- package/esm2022/libs/feature/editor/src/lib/+state/editor.facade.mjs +12 -4
- package/esm2022/libs/feature/editor/src/lib/+state/editor.models.mjs +1 -1
- package/esm2022/libs/feature/editor/src/lib/+state/editor.reducer.mjs +25 -1
- package/esm2022/libs/feature/editor/src/lib/+state/editor.selectors.mjs +2 -1
- package/esm2022/libs/feature/editor/src/lib/components/constraint-card/constraint-card.component.mjs +68 -0
- package/esm2022/libs/feature/editor/src/lib/components/contact-card/contact-card.component.mjs +5 -6
- package/esm2022/libs/feature/editor/src/lib/components/generic-keywords/generic-keywords.component.mjs +18 -10
- package/esm2022/libs/feature/editor/src/lib/components/import-record/import-record.component.mjs +36 -18
- package/esm2022/libs/feature/editor/src/lib/components/online-resource-card/online-resource-card.component.mjs +23 -9
- package/esm2022/libs/feature/editor/src/lib/components/online-service-resource-input/online-service-resource-input.component.mjs +8 -7
- package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-array/form-field-array.component.mjs +3 -3
- package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-constraints/form-field-constraints.component.mjs +76 -0
- package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-constraints-shortcuts/constraints.utils.mjs +35 -0
- package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-constraints-shortcuts/form-field-constraints-shortcuts.component.mjs +130 -0
- package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-contacts/form-field-contacts.component.mjs +6 -6
- package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-contacts-for-resource/form-field-contacts-for-resource.component.mjs +19 -9
- package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-date/form-field-date.component.mjs +19 -0
- package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-file/form-field-file.component.mjs +5 -5
- package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-keywords/form-field-keywords.component.mjs +5 -5
- package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-license/form-field-license.component.mjs +31 -50
- package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-map-container/form-field-map-container.component.mjs +4 -4
- package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-object/form-field-object.component.mjs +3 -3
- package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-online-link-resources/form-field-online-link-resources.component.mjs +18 -11
- package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-online-resources/form-field-online-resources.component.mjs +17 -12
- package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-open-data/form-field-open-data.component.mjs +17 -17
- package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-overviews/form-field-overviews.component.mjs +19 -12
- package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-rich/form-field-rich.component.mjs +5 -5
- package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-simple/form-field-simple.component.mjs +7 -26
- package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-spatial-extent/form-field-spatial-extent.component.mjs +6 -30
- package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-spatial-toggle/form-field-spatial-toggle.component.mjs +44 -0
- package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-temporal-extents/form-field-temporal-extents.component.mjs +19 -9
- package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-update-frequency/form-field-update-frequency.component.mjs +6 -6
- package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field.component.mjs +29 -12
- package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/index.mjs +2 -2
- package/esm2022/libs/feature/editor/src/lib/components/record-form/record-form.component.mjs +6 -6
- package/esm2022/libs/feature/editor/src/lib/components/wizard/wizard.component.mjs +5 -5
- package/esm2022/libs/feature/editor/src/lib/components/wizard-field/wizard-field.component.mjs +7 -7
- package/esm2022/libs/feature/editor/src/lib/components/wizard-summarize/wizard-summarize.component.mjs +5 -5
- package/esm2022/libs/feature/editor/src/lib/expressions.mjs +1 -1
- package/esm2022/libs/feature/editor/src/lib/feature-editor.module.mjs +4 -4
- package/esm2022/libs/feature/editor/src/lib/fields.config.mjs +77 -13
- package/esm2022/libs/feature/editor/src/lib/models/editor-config.model.mjs +1 -1
- package/esm2022/libs/feature/editor/src/lib/services/editor.service.mjs +9 -5
- package/esm2022/libs/feature/editor/src/lib/services/wizard.service.mjs +5 -5
- package/esm2022/libs/feature/map/src/lib/+state/map.facade.mjs +4 -4
- package/esm2022/libs/feature/map/src/lib/add-layer-from-catalog/add-layer-from-catalog.component.mjs +4 -4
- package/esm2022/libs/feature/map/src/lib/add-layer-from-catalog/add-layer-record-preview/add-layer-record-preview.component.mjs +5 -5
- package/esm2022/libs/feature/map/src/lib/add-layer-from-file/add-layer-from-file.component.mjs +5 -5
- package/esm2022/libs/feature/map/src/lib/add-layer-from-ogc-api/add-layer-from-ogc-api.component.mjs +5 -5
- package/esm2022/libs/feature/map/src/lib/add-layer-from-wfs/add-layer-from-wfs.component.mjs +5 -5
- package/esm2022/libs/feature/map/src/lib/add-layer-from-wms/add-layer-from-wms.component.mjs +6 -6
- package/esm2022/libs/feature/map/src/lib/feature-map.module.mjs +5 -9
- package/esm2022/libs/feature/map/src/lib/geocoding/geocoding.component.mjs +5 -5
- package/esm2022/libs/feature/map/src/lib/geocoding.service.mjs +6 -6
- package/esm2022/libs/feature/map/src/lib/layers-panel/layers-panel.component.mjs +33 -15
- package/esm2022/libs/feature/map/src/lib/map-state-container/map-state-container.component.mjs +5 -5
- package/esm2022/libs/feature/map/src/lib/style/map-style.service.mjs +4 -4
- package/esm2022/libs/feature/map/src/lib/utils/map-utils.service.mjs +4 -4
- package/esm2022/libs/feature/notifications/src/lib/feature-notifications.module.mjs +4 -4
- package/esm2022/libs/feature/notifications/src/lib/notifications-container/notifications-container.component.mjs +4 -4
- package/esm2022/libs/feature/notifications/src/lib/notifications.service.mjs +6 -5
- package/esm2022/libs/feature/record/src/index.mjs +4 -1
- package/esm2022/libs/feature/record/src/lib/data-view/data-view.component.mjs +17 -10
- package/esm2022/libs/feature/record/src/lib/data-view-permalink/data-view-permalink.component.mjs +12 -10
- package/esm2022/libs/feature/record/src/lib/data-view-share/data-view-share.component.mjs +18 -10
- package/esm2022/libs/feature/record/src/lib/data-view-web-component/data-view-web-component.component.mjs +13 -11
- package/esm2022/libs/feature/record/src/lib/external-viewer-button/external-viewer-button.component.mjs +12 -10
- package/esm2022/libs/feature/record/src/lib/feature-record.module.mjs +25 -58
- package/esm2022/libs/feature/record/src/lib/gpf-api-dl/gpf-api-dl.component.mjs +169 -0
- package/esm2022/libs/feature/record/src/lib/gpf-api-dl-list-item/gpf-api-dl-list-item.component.mjs +45 -0
- package/esm2022/libs/feature/record/src/lib/map-view/map-view.component.mjs +56 -20
- package/esm2022/libs/feature/record/src/lib/record-meta/record-meta.component.mjs +45 -0
- package/esm2022/libs/feature/record/src/lib/state/mdview.effects.mjs +5 -5
- package/esm2022/libs/feature/record/src/lib/state/mdview.facade.mjs +14 -6
- package/esm2022/libs/feature/router/src/lib/default/constants.mjs +1 -1
- package/esm2022/libs/feature/router/src/lib/default/container/search-router.container.directive.mjs +6 -6
- package/esm2022/libs/feature/router/src/lib/default/router.module.mjs +5 -5
- package/esm2022/libs/feature/router/src/lib/default/router.service.mjs +5 -5
- package/esm2022/libs/feature/router/src/lib/default/services/router-search.service.mjs +4 -4
- package/esm2022/libs/feature/router/src/lib/default/state/query-params.utils.mjs +50 -0
- package/esm2022/libs/feature/router/src/lib/default/state/router.effects.mjs +8 -8
- package/esm2022/libs/feature/router/src/lib/default/state/router.facade.mjs +9 -8
- package/esm2022/libs/feature/search/src/index.mjs +3 -1
- package/esm2022/libs/feature/search/src/lib/constants.mjs +2 -2
- package/esm2022/libs/feature/search/src/lib/facets/facets-container/facets-container.component.mjs +4 -4
- package/esm2022/libs/feature/search/src/lib/facets/facets.module.mjs +4 -4
- package/esm2022/libs/feature/search/src/lib/facets/facets.service.mjs +5 -5
- package/esm2022/libs/feature/search/src/lib/favorites/favorite-star/favorite-star.component.mjs +7 -7
- package/esm2022/libs/feature/search/src/lib/feature-search.module.mjs +22 -19
- package/esm2022/libs/feature/search/src/lib/filter-dropdown/filter-dropdown.component.mjs +30 -8
- package/esm2022/libs/feature/search/src/lib/fuzzy-search/fuzzy-search.component.mjs +5 -5
- package/esm2022/libs/feature/search/src/lib/records-metrics/records-metrics.component.mjs +5 -5
- package/esm2022/libs/feature/search/src/lib/results-hits-number/results-hits.container.component.mjs +4 -4
- package/esm2022/libs/feature/search/src/lib/results-layout/results-layout.component.mjs +5 -5
- package/esm2022/libs/feature/search/src/lib/results-list/results-list.container.component.mjs +15 -10
- package/esm2022/libs/feature/search/src/lib/results-table/results-table-container.component.mjs +6 -6
- package/esm2022/libs/feature/search/src/lib/search-filters-summary/search-filters-summary.component.mjs +67 -0
- package/esm2022/libs/feature/search/src/lib/search-filters-summary-item/search-filters-summary-item.component.mjs +84 -0
- package/esm2022/libs/feature/search/src/lib/sort-by/sort-by.component.mjs +9 -5
- package/esm2022/libs/feature/search/src/lib/state/actions.mjs +1 -1
- package/esm2022/libs/feature/search/src/lib/state/container/search-state.container.directive.mjs +6 -6
- package/esm2022/libs/feature/search/src/lib/state/effects.mjs +6 -6
- package/esm2022/libs/feature/search/src/lib/state/reducer.mjs +1 -1
- package/esm2022/libs/feature/search/src/lib/state/search.facade.mjs +7 -9
- package/esm2022/libs/feature/search/src/lib/state/selectors.mjs +1 -9
- package/esm2022/libs/feature/search/src/lib/utils/operators/search.operator.mjs +1 -1
- package/esm2022/libs/feature/search/src/lib/utils/service/fields.mjs +63 -8
- package/esm2022/libs/feature/search/src/lib/utils/service/fields.service.mjs +13 -6
- package/esm2022/libs/feature/search/src/lib/utils/service/search.service.mjs +4 -4
- package/esm2022/libs/ui/catalog/src/index.mjs +1 -2
- package/esm2022/libs/ui/catalog/src/lib/catalog-title/catalog-title.component.mjs +6 -5
- package/esm2022/libs/ui/catalog/src/lib/language-switcher/language-switcher.component.mjs +15 -19
- package/esm2022/libs/ui/catalog/src/lib/organisation-preview/organisation-preview.component.mjs +17 -7
- package/esm2022/libs/ui/catalog/src/lib/organisations-filter/organisations-filter.component.mjs +3 -3
- package/esm2022/libs/ui/catalog/src/lib/organisations-result/organisations-result.component.mjs +6 -5
- package/esm2022/libs/ui/dataviz/src/lib/chart/chart.component.mjs +6 -6
- package/esm2022/libs/ui/dataviz/src/lib/figure/figure.component.mjs +7 -7
- package/esm2022/libs/ui/dataviz/src/lib/table/table.component.mjs +6 -6
- package/esm2022/libs/ui/dataviz/src/lib/ui-dataviz.module.mjs +33 -7
- package/esm2022/libs/ui/elements/src/index.mjs +1 -3
- package/esm2022/libs/ui/elements/src/lib/api-card/api-card.component.mjs +28 -9
- package/esm2022/libs/ui/elements/src/lib/avatar/avatar.component.mjs +3 -3
- package/esm2022/libs/ui/elements/src/lib/confirmation-dialog/confirmation-dialog.component.mjs +5 -5
- package/esm2022/libs/ui/elements/src/lib/content-ghost/content-ghost.component.mjs +6 -5
- package/esm2022/libs/ui/elements/src/lib/download-item/download-item.component.mjs +19 -8
- package/esm2022/libs/ui/elements/src/lib/downloads-list/downloads-list.component.mjs +40 -12
- package/esm2022/libs/ui/elements/src/lib/error/error.component.mjs +25 -7
- package/esm2022/libs/ui/elements/src/lib/image-overlay-preview/image-overlay-preview.component.mjs +17 -9
- package/esm2022/libs/ui/elements/src/lib/link-card/link-card.component.mjs +17 -7
- package/esm2022/libs/ui/elements/src/lib/markdown-editor/markdown-editor.component.mjs +4 -6
- package/esm2022/libs/ui/elements/src/lib/markdown-parser/markdown-parser.component.mjs +7 -5
- package/esm2022/libs/ui/elements/src/lib/metadata-catalog/metadata-catalog.component.mjs +7 -6
- package/esm2022/libs/ui/elements/src/lib/metadata-contact/metadata-contact.component.mjs +28 -8
- package/esm2022/libs/ui/elements/src/lib/metadata-info/linkify.directive.mjs +7 -6
- package/esm2022/libs/ui/elements/src/lib/metadata-info/metadata-info.component.mjs +43 -16
- package/esm2022/libs/ui/elements/src/lib/metadata-quality/metadata-quality.component.mjs +16 -9
- package/esm2022/libs/ui/elements/src/lib/metadata-quality-item/metadata-quality-item.component.mjs +10 -8
- package/esm2022/libs/ui/elements/src/lib/notification/notification.component.mjs +38 -7
- package/esm2022/libs/ui/elements/src/lib/record-api-form/record-api-form.component.mjs +40 -35
- package/esm2022/libs/ui/elements/src/lib/related-record-card/related-record-card.component.mjs +20 -11
- package/esm2022/libs/ui/elements/src/lib/thumbnail/thumbnail.component.mjs +6 -6
- package/esm2022/libs/ui/elements/src/lib/ui-elements.module.mjs +17 -98
- package/esm2022/libs/ui/elements/src/lib/user-feedback-item/time-since.pipe.mjs +6 -6
- package/esm2022/libs/ui/elements/src/lib/user-feedback-item/user-feedback-item.component.mjs +29 -11
- package/esm2022/libs/ui/elements/src/lib/user-preview/user-preview.component.mjs +5 -5
- package/esm2022/libs/ui/inputs/src/index.mjs +2 -2
- package/esm2022/libs/ui/inputs/src/lib/autocomplete/autocomplete.component.mjs +32 -14
- package/esm2022/libs/ui/inputs/src/lib/badge/badge.component.mjs +21 -7
- package/esm2022/libs/ui/inputs/src/lib/button/button.component.mjs +4 -4
- package/esm2022/libs/ui/inputs/src/lib/check-toggle/check-toggle.component.mjs +7 -7
- package/esm2022/libs/ui/inputs/src/lib/checkbox/checkbox.component.mjs +3 -3
- package/esm2022/libs/ui/inputs/src/lib/chips-input/chips-input.component.mjs +5 -5
- package/esm2022/libs/ui/inputs/src/lib/copy-text-button/copy-text-button.component.mjs +10 -7
- package/esm2022/libs/ui/inputs/src/lib/date-picker/date-picker.component.mjs +19 -9
- package/esm2022/libs/ui/inputs/src/lib/date-range-dropdown/date-range-dropdown.component.mjs +65 -0
- package/esm2022/libs/ui/inputs/src/lib/date-range-picker/date-range-picker.component.mjs +19 -9
- package/esm2022/libs/ui/inputs/src/lib/drag-and-drop-file-input/drag-and-drop-file-input.component.mjs +3 -3
- package/esm2022/libs/ui/inputs/src/lib/dropdown-multiselect/dropdown-multiselect.component.mjs +8 -8
- package/esm2022/libs/ui/inputs/src/lib/dropdown-selector/dropdown-selector.component.mjs +25 -9
- package/esm2022/libs/ui/inputs/src/lib/editable-label/editable-label.directive.mjs +5 -5
- package/esm2022/libs/ui/inputs/src/lib/file-input/file-input.component.mjs +32 -11
- package/esm2022/libs/ui/inputs/src/lib/files-drop/files-drop.directive.mjs +4 -4
- package/esm2022/libs/ui/inputs/src/lib/image-input/image-input.component.mjs +38 -11
- package/esm2022/libs/ui/inputs/src/lib/navigation-button/navigation-button.component.mjs +7 -7
- package/esm2022/libs/ui/inputs/src/lib/search-input/search-input.component.mjs +17 -7
- package/esm2022/libs/ui/inputs/src/lib/star-toggle/star-toggle.component.mjs +8 -6
- package/esm2022/libs/ui/inputs/src/lib/switch-toggle/switch-toggle.component.mjs +8 -5
- package/esm2022/libs/ui/inputs/src/lib/text-area/text-area.component.mjs +3 -3
- package/esm2022/libs/ui/inputs/src/lib/text-input/text-input.component.mjs +3 -3
- package/esm2022/libs/ui/inputs/src/lib/ui-inputs.module.mjs +31 -26
- package/esm2022/libs/ui/inputs/src/lib/url-input/url-input.component.mjs +52 -23
- package/esm2022/libs/ui/inputs/src/lib/viewport-intersector/viewport-intersector.component.mjs +5 -5
- package/esm2022/libs/ui/layout/src/index.mjs +6 -1
- package/esm2022/libs/ui/layout/src/lib/anchor-link/anchor-link.directive.mjs +5 -5
- package/esm2022/libs/ui/layout/src/lib/block-list/block-list.component.mjs +20 -15
- package/esm2022/libs/ui/layout/src/lib/carousel/carousel.component.mjs +27 -22
- package/esm2022/libs/ui/layout/src/lib/expandable-panel/expandable-panel.component.mjs +9 -7
- package/esm2022/libs/ui/layout/src/lib/expandable-panel-button/expandable-panel-button.component.mjs +8 -6
- package/esm2022/libs/ui/layout/src/lib/form-field-wrapper/form-field-wrapper.component.mjs +7 -6
- package/esm2022/libs/ui/layout/src/lib/interactive-table/interactive-table-column/interactive-table-column.component.mjs +6 -4
- package/esm2022/libs/ui/layout/src/lib/interactive-table/interactive-table.component.mjs +12 -8
- package/esm2022/libs/ui/layout/src/lib/max-lines/max-lines.component.mjs +6 -6
- package/esm2022/libs/ui/layout/src/lib/modal-dialog/modal-dialog.component.mjs +5 -5
- package/esm2022/libs/ui/layout/src/lib/paginable.interface.mjs +2 -0
- package/esm2022/libs/ui/layout/src/lib/pagination/pagination.component.mjs +52 -0
- package/esm2022/libs/ui/layout/src/lib/pagination-buttons/pagination-buttons.component.mjs +52 -0
- package/esm2022/libs/ui/layout/src/lib/pagination-dots/pagination-dots.component.mjs +36 -0
- package/esm2022/libs/ui/layout/src/lib/previous-next-buttons/previous-next-buttons.component.mjs +26 -0
- package/esm2022/libs/ui/layout/src/lib/sortable-list/sortable-list.component.mjs +5 -13
- package/esm2022/libs/ui/layout/src/lib/sticky-header/sticky-header.component.mjs +6 -6
- package/esm2022/libs/ui/layout/src/lib/ui-layout.module.mjs +17 -26
- package/esm2022/libs/ui/map/src/index.mjs +2 -1
- package/esm2022/libs/ui/map/src/lib/components/feature-detail/feature-detail.component.mjs +3 -3
- package/esm2022/libs/ui/map/src/lib/components/map-container/map-container.component.mjs +20 -10
- package/esm2022/libs/ui/map/src/lib/components/map-legend/map-legend.component.mjs +32 -0
- package/esm2022/libs/ui/map/src/lib/map-utils.mjs +1 -1
- package/esm2022/libs/ui/search/src/lib/facets/facet-block/facet-block.component.mjs +7 -7
- package/esm2022/libs/ui/search/src/lib/facets/facet-item/facet-item.component.mjs +6 -6
- package/esm2022/libs/ui/search/src/lib/facets/facet-list/facet-list.component.mjs +3 -3
- package/esm2022/libs/ui/search/src/lib/facets/facets.module.mjs +4 -4
- package/esm2022/libs/ui/search/src/lib/record-metric/record-metric.component.mjs +3 -3
- package/esm2022/libs/ui/search/src/lib/record-preview/record-preview.component.mjs +5 -5
- package/esm2022/libs/ui/search/src/lib/record-preview-card/record-preview-card.component.mjs +3 -3
- package/esm2022/libs/ui/search/src/lib/record-preview-feed/record-preview-feed.component.mjs +8 -7
- package/esm2022/libs/ui/search/src/lib/record-preview-list/record-preview-list.component.mjs +3 -3
- package/esm2022/libs/ui/search/src/lib/record-preview-row/record-preview-row.component.mjs +10 -9
- package/esm2022/libs/ui/search/src/lib/record-preview-text/record-preview-text.component.mjs +3 -3
- package/esm2022/libs/ui/search/src/lib/record-preview-title/record-preview-title.component.mjs +3 -3
- package/esm2022/libs/ui/search/src/lib/results-hits-number/results-hits-number.component.mjs +3 -3
- package/esm2022/libs/ui/search/src/lib/results-list/results-layout.config.mjs +1 -1
- package/esm2022/libs/ui/search/src/lib/results-list/results-list.component.mjs +3 -3
- package/esm2022/libs/ui/search/src/lib/results-list-item/results-list-item.component.mjs +5 -5
- package/esm2022/libs/ui/search/src/lib/results-table/action-menu/action-menu.component.mjs +25 -33
- package/esm2022/libs/ui/search/src/lib/results-table/results-table.component.mjs +74 -32
- package/esm2022/libs/ui/search/src/lib/ui-search.module.mjs +34 -12
- package/esm2022/libs/ui/widgets/src/lib/color-scale/color-scale.component.mjs +3 -3
- package/esm2022/libs/ui/widgets/src/lib/loading-mask/loading-mask.component.mjs +7 -6
- package/esm2022/libs/ui/widgets/src/lib/popover/popover.component.mjs +5 -5
- package/esm2022/libs/ui/widgets/src/lib/popup-alert/popup-alert.component.mjs +8 -8
- package/esm2022/libs/ui/widgets/src/lib/progress-bar/progress-bar.component.mjs +5 -5
- package/esm2022/libs/ui/widgets/src/lib/spinning-loader/spinning-loader.component.mjs +5 -5
- package/esm2022/libs/ui/widgets/src/lib/step-bar/step-bar.component.mjs +5 -5
- package/esm2022/libs/ui/widgets/src/lib/ui-widgets.module.mjs +9 -34
- package/esm2022/libs/util/app-config/src/lib/app-config.mjs +9 -2
- package/esm2022/libs/util/app-config/src/lib/fixtures.mjs +2 -1
- package/esm2022/libs/util/app-config/src/lib/map-layers.mjs +7 -1
- package/esm2022/libs/util/app-config/src/lib/model.mjs +1 -1
- package/esm2022/libs/util/app-config/src/lib/parse-utils.mjs +1 -1
- package/esm2022/libs/util/data-fetcher/src/lib/data-fetcher.mjs +1 -1
- package/esm2022/libs/util/data-fetcher/src/lib/headers.mjs +1 -1
- package/esm2022/libs/util/data-fetcher/src/lib/model.mjs +3 -3
- package/esm2022/libs/util/data-fetcher/src/lib/readers/base-file.mjs +1 -1
- package/esm2022/libs/util/data-fetcher/src/lib/readers/csv.mjs +1 -1
- package/esm2022/libs/util/data-fetcher/src/lib/readers/excel.mjs +1 -1
- package/esm2022/libs/util/data-fetcher/src/lib/readers/geojson.mjs +1 -1
- package/esm2022/libs/util/data-fetcher/src/lib/readers/gml.mjs +1 -1
- package/esm2022/libs/util/data-fetcher/src/lib/readers/json.mjs +1 -1
- package/esm2022/libs/util/data-fetcher/src/lib/sql-utils.mjs +1 -1
- package/esm2022/libs/util/data-fetcher/src/lib/utils.mjs +13 -11
- package/esm2022/libs/util/i18n/src/index.mjs +2 -1
- package/esm2022/libs/util/i18n/src/lib/i18n.constants.mjs +1 -38
- package/esm2022/libs/util/i18n/src/lib/i18n.interceptor.mjs +4 -4
- package/esm2022/libs/util/i18n/src/lib/lang.service.mjs +6 -6
- package/esm2022/libs/util/i18n/src/lib/language-codes.mjs +40 -0
- package/esm2022/libs/util/i18n/src/lib/util-i18n.module.mjs +6 -6
- package/esm2022/libs/util/shared/src/lib/image-fallback.directive.mjs +5 -5
- package/esm2022/libs/util/shared/src/lib/links/link-classifier.service.mjs +6 -4
- package/esm2022/libs/util/shared/src/lib/links/link-utils.mjs +17 -17
- package/esm2022/libs/util/shared/src/lib/services/log.service.mjs +3 -3
- package/esm2022/libs/util/shared/src/lib/services/proxy.service.mjs +12 -9
- package/esm2022/libs/util/shared/src/lib/services/theme.service.mjs +4 -4
- package/esm2022/libs/util/shared/src/lib/util-shared.module.mjs +4 -4
- package/esm2022/libs/util/shared/src/lib/utils/format-fields.mjs +9 -0
- package/esm2022/libs/util/shared/src/lib/utils/geojson.mjs +1 -1
- package/esm2022/libs/util/shared/src/lib/utils/image-resize.mjs +1 -1
- package/esm2022/libs/util/shared/src/lib/utils/index.mjs +3 -1
- package/esm2022/libs/util/shared/src/lib/utils/no-duplicate-file-name.mjs +19 -0
- package/esm2022/libs/util/shared/src/lib/utils/parse.mjs +1 -1
- package/esm2022/libs/util/shared/src/lib/utils/temporal-extent-union.mjs +1 -1
- package/esm2022/libs/util/shared/src/lib/utils/url.mjs +1 -1
- package/esm2022/translations/de.json +49 -24
- package/esm2022/translations/en.json +113 -69
- package/esm2022/translations/es.json +38 -13
- package/esm2022/translations/fr.json +109 -65
- package/esm2022/translations/it.json +41 -16
- package/esm2022/translations/nl.json +38 -13
- package/esm2022/translations/pt.json +38 -13
- package/fesm2022/geonetwork-ui.mjs +7323 -5096
- package/fesm2022/geonetwork-ui.mjs.map +1 -1
- package/libs/api/metadata-converter/src/lib/common/distribution.mapper.d.ts.map +1 -1
- package/libs/api/metadata-converter/src/lib/common/resource-types.d.ts +5 -0
- package/libs/api/metadata-converter/src/lib/common/resource-types.d.ts.map +1 -0
- package/libs/api/metadata-converter/src/lib/dcat-ap/dcat-ap.converter.d.ts +2 -2
- package/libs/api/metadata-converter/src/lib/dcat-ap/dcat-ap.converter.d.ts.map +1 -1
- package/libs/api/metadata-converter/src/lib/dcat-ap/read-parts.d.ts +6 -5
- package/libs/api/metadata-converter/src/lib/dcat-ap/read-parts.d.ts.map +1 -1
- package/libs/api/metadata-converter/src/lib/dcat-ap/utils/graph-utils.d.ts +11 -5
- package/libs/api/metadata-converter/src/lib/dcat-ap/utils/graph-utils.d.ts.map +1 -1
- package/libs/api/metadata-converter/src/lib/dcat-ap/utils/serialize-to-xml.d.ts.map +1 -1
- package/libs/api/metadata-converter/src/lib/dcat-ap/write-parts.d.ts.map +1 -1
- package/libs/api/metadata-converter/src/lib/function-utils.d.ts +1 -1
- package/libs/api/metadata-converter/src/lib/function-utils.d.ts.map +1 -1
- package/libs/api/metadata-converter/src/lib/gn4/atomic-operations.d.ts +4 -4
- package/libs/api/metadata-converter/src/lib/gn4/atomic-operations.d.ts.map +1 -1
- package/libs/api/metadata-converter/src/lib/gn4/gn4.converter.d.ts.map +1 -1
- package/libs/api/metadata-converter/src/lib/gn4/gn4.field.mapper.d.ts.map +1 -1
- package/libs/api/metadata-converter/src/lib/gn4/types/elasticsearch.model.d.ts +1 -1
- package/libs/api/metadata-converter/src/lib/gn4/types/elasticsearch.model.d.ts.map +1 -1
- package/libs/api/metadata-converter/src/lib/gn4/types/metadata.model.d.ts +11 -10
- package/libs/api/metadata-converter/src/lib/gn4/types/metadata.model.d.ts.map +1 -1
- package/libs/api/metadata-converter/src/lib/iso19115-3/iso19115-3.converter.d.ts.map +1 -1
- package/libs/api/metadata-converter/src/lib/iso19115-3/read-parts.d.ts +6 -3
- package/libs/api/metadata-converter/src/lib/iso19115-3/read-parts.d.ts.map +1 -1
- package/libs/api/metadata-converter/src/lib/iso19115-3/write-parts.d.ts +5 -2
- package/libs/api/metadata-converter/src/lib/iso19115-3/write-parts.d.ts.map +1 -1
- package/libs/api/metadata-converter/src/lib/iso19139/iso19139.converter.d.ts +4 -2
- package/libs/api/metadata-converter/src/lib/iso19139/iso19139.converter.d.ts.map +1 -1
- package/libs/api/metadata-converter/src/lib/iso19139/read-parts.d.ts +14 -4
- 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 +16 -9
- package/libs/api/metadata-converter/src/lib/iso19139/write-parts.d.ts.map +1 -1
- package/libs/api/metadata-converter/src/lib/xml-utils.d.ts +47 -4
- package/libs/api/metadata-converter/src/lib/xml-utils.d.ts.map +1 -1
- package/libs/api/repository/src/lib/gn4/auth/auth.service.d.ts +14 -2
- package/libs/api/repository/src/lib/gn4/auth/auth.service.d.ts.map +1 -1
- package/libs/api/repository/src/lib/gn4/elasticsearch/date-range.utils.d.ts +4 -0
- package/libs/api/repository/src/lib/gn4/elasticsearch/date-range.utils.d.ts.map +1 -0
- package/libs/api/repository/src/lib/gn4/elasticsearch/elasticsearch.service.d.ts +5 -1
- package/libs/api/repository/src/lib/gn4/elasticsearch/elasticsearch.service.d.ts.map +1 -1
- package/libs/api/repository/src/lib/gn4/elasticsearch/index.d.ts +1 -0
- package/libs/api/repository/src/lib/gn4/elasticsearch/index.d.ts.map +1 -1
- package/libs/api/repository/src/lib/gn4/gn4-repository.d.ts +15 -8
- package/libs/api/repository/src/lib/gn4/gn4-repository.d.ts.map +1 -1
- package/libs/api/repository/src/lib/gn4/platform/gn4-platform.service.d.ts +5 -17
- package/libs/api/repository/src/lib/gn4/platform/gn4-platform.service.d.ts.map +1 -1
- package/libs/common/domain/src/lib/model/dataviz/dataviz-configuration.model.d.ts +1 -1
- package/libs/common/domain/src/lib/model/dataviz/dataviz-configuration.model.d.ts.map +1 -1
- package/libs/common/domain/src/lib/model/error/index.d.ts +2 -0
- package/libs/common/domain/src/lib/model/error/index.d.ts.map +1 -0
- package/libs/common/domain/src/lib/model/error/publication-version.error.d.ts +5 -0
- package/libs/common/domain/src/lib/model/error/publication-version.error.d.ts.map +1 -0
- package/libs/common/domain/src/lib/model/record/contact.model.d.ts +1 -1
- package/libs/common/domain/src/lib/model/record/contact.model.d.ts.map +1 -1
- package/libs/common/domain/src/lib/model/record/index.d.ts +1 -0
- package/libs/common/domain/src/lib/model/record/index.d.ts.map +1 -1
- package/libs/common/domain/src/lib/model/record/metadata.model.d.ts +27 -7
- package/libs/common/domain/src/lib/model/record/metadata.model.d.ts.map +1 -1
- package/libs/common/domain/src/lib/model/record/organization.model.d.ts +2 -0
- package/libs/common/domain/src/lib/model/record/organization.model.d.ts.map +1 -1
- package/libs/common/domain/src/lib/model/record/translation.model.d.ts +26 -0
- package/libs/common/domain/src/lib/model/record/translation.model.d.ts.map +1 -0
- package/libs/common/domain/src/lib/model/search/filter.model.d.ts +16 -1
- package/libs/common/domain/src/lib/model/search/filter.model.d.ts.map +1 -1
- package/libs/common/domain/src/lib/model/search/sort-by.model.d.ts.map +1 -1
- package/libs/common/domain/src/lib/platform.service.interface.d.ts +4 -4
- package/libs/common/domain/src/lib/platform.service.interface.d.ts.map +1 -1
- package/libs/common/domain/src/lib/repository/records-repository.interface.d.ts +5 -0
- package/libs/common/domain/src/lib/repository/records-repository.interface.d.ts.map +1 -1
- package/libs/data-access/gn4/src/openapi/model/groupPrivilege.api.model.d.ts.map +1 -1
- package/libs/data-access/gn4/src/openapi/model/jsonNode.api.model.d.ts.map +1 -1
- package/libs/data-access/gn4/src/openapi/model/link.api.model.d.ts.map +1 -1
- package/libs/data-access/gn4/src/openapi/model/metadataResource.api.model.d.ts.map +1 -1
- package/libs/data-access/gn4/src/openapi/model/metadataResourceExternalManagementProperties.api.model.d.ts.map +1 -1
- package/libs/data-access/gn4/src/openapi/model/metadataStatusParameter.api.model.d.ts.map +1 -1
- package/libs/data-access/gn4/src/openapi/model/operation.api.model.d.ts.map +1 -1
- package/libs/data-access/gn4/src/openapi/model/pageProperties.api.model.d.ts.map +1 -1
- package/libs/data-access/gn4/src/openapi/model/publicationOption.api.model.d.ts.map +1 -1
- package/libs/data-access/gn4/src/openapi/model/setting.api.model.d.ts.map +1 -1
- package/libs/data-access/gn4/src/openapi/model/status.api.model.d.ts.map +1 -1
- package/libs/data-access/gn4/src/openapi/model/statusValue.api.model.d.ts.map +1 -1
- package/libs/data-access/gn4/src/openapi/model/user.api.model.d.ts.map +1 -1
- package/libs/data-access/gn4/src/openapi/model/userGroup.api.model.d.ts.map +1 -1
- package/libs/data-access/gn4/src/openapi/model/userGroupId.api.model.d.ts.map +1 -1
- package/libs/data-access/gn4/src/openapi/model/userSecurity.api.model.d.ts.map +1 -1
- package/libs/feature/catalog/src/lib/feature-catalog.module.d.ts +8 -9
- package/libs/feature/catalog/src/lib/feature-catalog.module.d.ts.map +1 -1
- package/libs/feature/catalog/src/lib/organisations/organisations.component.d.ts +10 -3
- package/libs/feature/catalog/src/lib/organisations/organisations.component.d.ts.map +1 -1
- package/libs/feature/dataviz/src/index.d.ts +0 -1
- package/libs/feature/dataviz/src/index.d.ts.map +1 -1
- package/libs/feature/dataviz/src/lib/chart-view/chart-view.component.d.ts +1 -1
- package/libs/feature/dataviz/src/lib/chart-view/chart-view.component.d.ts.map +1 -1
- package/libs/feature/dataviz/src/lib/figure/figure-container/figure-container.component.d.ts +1 -1
- package/libs/feature/dataviz/src/lib/figure/figure-container/figure-container.component.d.ts.map +1 -1
- package/libs/feature/dataviz/src/lib/geo-table-view/geo-table-view.component.d.ts +1 -1
- package/libs/feature/dataviz/src/lib/geo-table-view/geo-table-view.component.d.ts.map +1 -1
- package/libs/feature/dataviz/src/lib/service/data.service.d.ts +3 -1
- package/libs/feature/dataviz/src/lib/service/data.service.d.ts.map +1 -1
- package/libs/feature/dataviz/src/lib/table-view/table-view.component.d.ts +1 -1
- package/libs/feature/dataviz/src/lib/table-view/table-view.component.d.ts.map +1 -1
- package/libs/feature/editor/src/lib/+state/editor.actions.d.ts +33 -9
- package/libs/feature/editor/src/lib/+state/editor.actions.d.ts.map +1 -1
- package/libs/feature/editor/src/lib/+state/editor.effects.d.ts +18 -10
- package/libs/feature/editor/src/lib/+state/editor.effects.d.ts.map +1 -1
- package/libs/feature/editor/src/lib/+state/editor.facade.d.ts +11 -4
- package/libs/feature/editor/src/lib/+state/editor.facade.d.ts.map +1 -1
- package/libs/feature/editor/src/lib/+state/editor.models.d.ts +1 -1
- package/libs/feature/editor/src/lib/+state/editor.models.d.ts.map +1 -1
- package/libs/feature/editor/src/lib/+state/editor.reducer.d.ts +4 -0
- package/libs/feature/editor/src/lib/+state/editor.reducer.d.ts.map +1 -1
- package/libs/feature/editor/src/lib/+state/editor.selectors.d.ts +8 -1
- package/libs/feature/editor/src/lib/+state/editor.selectors.d.ts.map +1 -1
- package/libs/feature/editor/src/lib/components/constraint-card/constraint-card.component.d.ts +16 -0
- package/libs/feature/editor/src/lib/components/constraint-card/constraint-card.component.d.ts.map +1 -0
- package/libs/feature/editor/src/lib/components/contact-card/contact-card.component.d.ts.map +1 -1
- package/libs/feature/editor/src/lib/components/generic-keywords/generic-keywords.component.d.ts.map +1 -1
- package/libs/feature/editor/src/lib/components/import-record/import-record.component.d.ts.map +1 -1
- package/libs/feature/editor/src/lib/components/online-resource-card/online-resource-card.component.d.ts.map +1 -1
- package/libs/feature/editor/src/lib/components/online-service-resource-input/online-service-resource-input.component.d.ts +2 -1
- package/libs/feature/editor/src/lib/components/online-service-resource-input/online-service-resource-input.component.d.ts.map +1 -1
- package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-constraints/form-field-constraints.component.d.ts +18 -0
- package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-constraints/form-field-constraints.component.d.ts.map +1 -0
- package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-constraints-shortcuts/constraints.utils.d.ts +6 -0
- package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-constraints-shortcuts/constraints.utils.d.ts.map +1 -0
- package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-constraints-shortcuts/form-field-constraints-shortcuts.component.d.ts +32 -0
- package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-constraints-shortcuts/form-field-constraints-shortcuts.component.d.ts.map +1 -0
- package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-contacts-for-resource/form-field-contacts-for-resource.component.d.ts.map +1 -1
- package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-date/form-field-date.component.d.ts +9 -0
- package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-date/form-field-date.component.d.ts.map +1 -0
- package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-keywords/form-field-keywords.component.d.ts.map +1 -1
- package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-license/form-field-license.component.d.ts +14 -35
- package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-license/form-field-license.component.d.ts.map +1 -1
- package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-online-link-resources/form-field-online-link-resources.component.d.ts +5 -2
- package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-online-link-resources/form-field-online-link-resources.component.d.ts.map +1 -1
- package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-online-resources/form-field-online-resources.component.d.ts +4 -1
- package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-online-resources/form-field-online-resources.component.d.ts.map +1 -1
- package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-open-data/form-field-open-data.component.d.ts +1 -2
- package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-open-data/form-field-open-data.component.d.ts.map +1 -1
- package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-overviews/form-field-overviews.component.d.ts +5 -2
- package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-overviews/form-field-overviews.component.d.ts.map +1 -1
- package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-simple/form-field-simple.component.d.ts +2 -8
- package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-simple/form-field-simple.component.d.ts.map +1 -1
- package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-spatial-extent/form-field-spatial-extent.component.d.ts +3 -7
- package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-spatial-extent/form-field-spatial-extent.component.d.ts.map +1 -1
- package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-spatial-toggle/form-field-spatial-toggle.component.d.ts +14 -0
- package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-spatial-toggle/form-field-spatial-toggle.component.d.ts.map +1 -0
- package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-temporal-extents/form-field-temporal-extents.component.d.ts.map +1 -1
- package/libs/feature/editor/src/lib/components/record-form/form-field/form-field.component.d.ts +11 -9
- package/libs/feature/editor/src/lib/components/record-form/form-field/form-field.component.d.ts.map +1 -1
- package/libs/feature/editor/src/lib/components/record-form/form-field/index.d.ts +1 -1
- package/libs/feature/editor/src/lib/components/record-form/form-field/index.d.ts.map +1 -1
- package/libs/feature/editor/src/lib/fields.config.d.ts +11 -3
- package/libs/feature/editor/src/lib/fields.config.d.ts.map +1 -1
- package/libs/feature/editor/src/lib/models/editor-config.model.d.ts +6 -3
- package/libs/feature/editor/src/lib/models/editor-config.model.d.ts.map +1 -1
- package/libs/feature/editor/src/lib/services/editor.service.d.ts +4 -0
- package/libs/feature/editor/src/lib/services/editor.service.d.ts.map +1 -1
- package/libs/feature/map/src/lib/+state/map.actions.d.ts +3 -3
- package/libs/feature/map/src/lib/+state/map.actions.d.ts.map +1 -1
- package/libs/feature/map/src/lib/feature-map.module.d.ts +9 -10
- package/libs/feature/map/src/lib/feature-map.module.d.ts.map +1 -1
- package/libs/feature/map/src/lib/layers-panel/layers-panel.component.d.ts.map +1 -1
- package/libs/feature/notifications/src/lib/notifications.service.d.ts +1 -1
- package/libs/feature/notifications/src/lib/notifications.service.d.ts.map +1 -1
- package/libs/feature/record/src/index.d.ts +3 -0
- package/libs/feature/record/src/index.d.ts.map +1 -1
- package/libs/feature/record/src/lib/data-view/data-view.component.d.ts +1 -1
- package/libs/feature/record/src/lib/data-view/data-view.component.d.ts.map +1 -1
- package/libs/feature/record/src/lib/data-view-permalink/data-view-permalink.component.d.ts +1 -1
- package/libs/feature/record/src/lib/data-view-permalink/data-view-permalink.component.d.ts.map +1 -1
- package/libs/feature/record/src/lib/data-view-share/data-view-share.component.d.ts +1 -1
- package/libs/feature/record/src/lib/data-view-share/data-view-share.component.d.ts.map +1 -1
- package/libs/feature/record/src/lib/data-view-web-component/data-view-web-component.component.d.ts +1 -1
- package/libs/feature/record/src/lib/data-view-web-component/data-view-web-component.component.d.ts.map +1 -1
- package/libs/feature/record/src/lib/external-viewer-button/external-viewer-button.component.d.ts +1 -1
- package/libs/feature/record/src/lib/external-viewer-button/external-viewer-button.component.d.ts.map +1 -1
- package/libs/feature/record/src/lib/feature-record.module.d.ts +15 -25
- package/libs/feature/record/src/lib/feature-record.module.d.ts.map +1 -1
- package/libs/feature/record/src/lib/gpf-api-dl/gpf-api-dl.component.d.ts +74 -0
- package/libs/feature/record/src/lib/gpf-api-dl/gpf-api-dl.component.d.ts.map +1 -0
- package/libs/feature/record/src/lib/gpf-api-dl-list-item/gpf-api-dl-list-item.component.d.ts +19 -0
- package/libs/feature/record/src/lib/gpf-api-dl-list-item/gpf-api-dl-list-item.component.d.ts.map +1 -0
- package/libs/feature/record/src/lib/map-view/map-view.component.d.ts +7 -1
- package/libs/feature/record/src/lib/map-view/map-view.component.d.ts.map +1 -1
- package/libs/feature/record/src/lib/record-meta/record-meta.component.d.ts +14 -0
- package/libs/feature/record/src/lib/record-meta/record-meta.component.d.ts.map +1 -0
- package/libs/feature/record/src/lib/state/mdview.actions.d.ts +13 -13
- package/libs/feature/record/src/lib/state/mdview.actions.d.ts.map +1 -1
- package/libs/feature/record/src/lib/state/mdview.effects.d.ts +9 -9
- package/libs/feature/record/src/lib/state/mdview.effects.d.ts.map +1 -1
- package/libs/feature/record/src/lib/state/mdview.facade.d.ts.map +1 -1
- package/libs/feature/router/src/lib/default/constants.d.ts +3 -2
- package/libs/feature/router/src/lib/default/constants.d.ts.map +1 -1
- package/libs/feature/router/src/lib/default/state/query-params.utils.d.ts +4 -0
- package/libs/feature/router/src/lib/default/state/query-params.utils.d.ts.map +1 -0
- package/libs/feature/router/src/lib/default/state/router.actions.d.ts +3 -3
- package/libs/feature/router/src/lib/default/state/router.actions.d.ts.map +1 -1
- package/libs/feature/router/src/lib/default/state/router.effects.d.ts +5 -5
- package/libs/feature/router/src/lib/default/state/router.effects.d.ts.map +1 -1
- package/libs/feature/router/src/lib/default/state/router.facade.d.ts +1 -1
- package/libs/feature/router/src/lib/default/state/router.facade.d.ts.map +1 -1
- package/libs/feature/router/src/lib/default/state/router.selectors.d.ts +1 -1
- package/libs/feature/router/src/lib/default/state/router.selectors.d.ts.map +1 -1
- package/libs/feature/search/src/index.d.ts +2 -0
- package/libs/feature/search/src/index.d.ts.map +1 -1
- package/libs/feature/search/src/lib/favorites/favorite-star/favorite-star.component.d.ts +1 -1
- package/libs/feature/search/src/lib/favorites/favorite-star/favorite-star.component.d.ts.map +1 -1
- package/libs/feature/search/src/lib/feature-search.module.d.ts +17 -15
- package/libs/feature/search/src/lib/feature-search.module.d.ts.map +1 -1
- package/libs/feature/search/src/lib/filter-dropdown/filter-dropdown.component.d.ts +7 -1
- package/libs/feature/search/src/lib/filter-dropdown/filter-dropdown.component.d.ts.map +1 -1
- package/libs/feature/search/src/lib/results-list/results-list.container.component.d.ts +1 -0
- package/libs/feature/search/src/lib/results-list/results-list.container.component.d.ts.map +1 -1
- package/libs/feature/search/src/lib/results-table/results-table-container.component.d.ts.map +1 -1
- package/libs/feature/search/src/lib/search-filters-summary/search-filters-summary.component.d.ts +22 -0
- package/libs/feature/search/src/lib/search-filters-summary/search-filters-summary.component.d.ts.map +1 -0
- package/libs/feature/search/src/lib/search-filters-summary-item/search-filters-summary-item.component.d.ts +34 -0
- package/libs/feature/search/src/lib/search-filters-summary-item/search-filters-summary-item.component.d.ts.map +1 -0
- package/libs/feature/search/src/lib/sort-by/sort-by.component.d.ts.map +1 -1
- package/libs/feature/search/src/lib/state/actions.d.ts.map +1 -1
- package/libs/feature/search/src/lib/state/search.facade.d.ts +0 -2
- package/libs/feature/search/src/lib/state/search.facade.d.ts.map +1 -1
- package/libs/feature/search/src/lib/state/selectors.d.ts +0 -2
- package/libs/feature/search/src/lib/state/selectors.d.ts.map +1 -1
- package/libs/feature/search/src/lib/utils/operators/search.operator.d.ts.map +1 -1
- package/libs/feature/search/src/lib/utils/service/fields.d.ts +24 -6
- package/libs/feature/search/src/lib/utils/service/fields.d.ts.map +1 -1
- package/libs/feature/search/src/lib/utils/service/fields.service.d.ts +4 -2
- package/libs/feature/search/src/lib/utils/service/fields.service.d.ts.map +1 -1
- package/libs/ui/catalog/src/index.d.ts +0 -1
- package/libs/ui/catalog/src/index.d.ts.map +1 -1
- package/libs/ui/catalog/src/lib/catalog-title/catalog-title.component.d.ts +1 -1
- package/libs/ui/catalog/src/lib/catalog-title/catalog-title.component.d.ts.map +1 -1
- package/libs/ui/catalog/src/lib/language-switcher/language-switcher.component.d.ts +10 -8
- package/libs/ui/catalog/src/lib/language-switcher/language-switcher.component.d.ts.map +1 -1
- package/libs/ui/catalog/src/lib/organisation-preview/organisation-preview.component.d.ts +1 -1
- package/libs/ui/catalog/src/lib/organisation-preview/organisation-preview.component.d.ts.map +1 -1
- package/libs/ui/catalog/src/lib/organisations-result/organisations-result.component.d.ts +1 -1
- package/libs/ui/catalog/src/lib/organisations-result/organisations-result.component.d.ts.map +1 -1
- package/libs/ui/dataviz/src/lib/ui-dataviz.module.d.ts +3 -3
- package/libs/ui/dataviz/src/lib/ui-dataviz.module.d.ts.map +1 -1
- package/libs/ui/elements/src/index.d.ts +0 -2
- package/libs/ui/elements/src/index.d.ts.map +1 -1
- package/libs/ui/elements/src/lib/api-card/api-card.component.d.ts +1 -1
- package/libs/ui/elements/src/lib/api-card/api-card.component.d.ts.map +1 -1
- package/libs/ui/elements/src/lib/content-ghost/content-ghost.component.d.ts +1 -1
- package/libs/ui/elements/src/lib/content-ghost/content-ghost.component.d.ts.map +1 -1
- package/libs/ui/elements/src/lib/download-item/download-item.component.d.ts +2 -2
- package/libs/ui/elements/src/lib/download-item/download-item.component.d.ts.map +1 -1
- package/libs/ui/elements/src/lib/downloads-list/downloads-list.component.d.ts +10 -9
- package/libs/ui/elements/src/lib/downloads-list/downloads-list.component.d.ts.map +1 -1
- package/libs/ui/elements/src/lib/error/error.component.d.ts +1 -1
- package/libs/ui/elements/src/lib/error/error.component.d.ts.map +1 -1
- package/libs/ui/elements/src/lib/image-overlay-preview/image-overlay-preview.component.d.ts +1 -1
- package/libs/ui/elements/src/lib/image-overlay-preview/image-overlay-preview.component.d.ts.map +1 -1
- package/libs/ui/elements/src/lib/link-card/link-card.component.d.ts.map +1 -1
- package/libs/ui/elements/src/lib/markdown-editor/markdown-editor.component.d.ts.map +1 -1
- package/libs/ui/elements/src/lib/markdown-parser/markdown-parser.component.d.ts +2 -1
- package/libs/ui/elements/src/lib/markdown-parser/markdown-parser.component.d.ts.map +1 -1
- package/libs/ui/elements/src/lib/metadata-catalog/metadata-catalog.component.d.ts +1 -1
- package/libs/ui/elements/src/lib/metadata-catalog/metadata-catalog.component.d.ts.map +1 -1
- package/libs/ui/elements/src/lib/metadata-contact/metadata-contact.component.d.ts +1 -1
- package/libs/ui/elements/src/lib/metadata-contact/metadata-contact.component.d.ts.map +1 -1
- package/libs/ui/elements/src/lib/metadata-info/linkify.directive.d.ts +2 -2
- package/libs/ui/elements/src/lib/metadata-info/linkify.directive.d.ts.map +1 -1
- package/libs/ui/elements/src/lib/metadata-info/metadata-info.component.d.ts +1 -1
- package/libs/ui/elements/src/lib/metadata-info/metadata-info.component.d.ts.map +1 -1
- package/libs/ui/elements/src/lib/metadata-quality/metadata-quality.component.d.ts +1 -1
- package/libs/ui/elements/src/lib/metadata-quality/metadata-quality.component.d.ts.map +1 -1
- package/libs/ui/elements/src/lib/metadata-quality-item/metadata-quality-item.component.d.ts +2 -2
- package/libs/ui/elements/src/lib/metadata-quality-item/metadata-quality-item.component.d.ts.map +1 -1
- package/libs/ui/elements/src/lib/notification/notification.component.d.ts +1 -0
- package/libs/ui/elements/src/lib/notification/notification.component.d.ts.map +1 -1
- package/libs/ui/elements/src/lib/record-api-form/record-api-form.component.d.ts +6 -17
- package/libs/ui/elements/src/lib/record-api-form/record-api-form.component.d.ts.map +1 -1
- package/libs/ui/elements/src/lib/related-record-card/related-record-card.component.d.ts +1 -1
- package/libs/ui/elements/src/lib/related-record-card/related-record-card.component.d.ts.map +1 -1
- package/libs/ui/elements/src/lib/ui-elements.module.d.ts +19 -37
- package/libs/ui/elements/src/lib/ui-elements.module.d.ts.map +1 -1
- package/libs/ui/elements/src/lib/user-feedback-item/user-feedback-item.component.d.ts +1 -1
- package/libs/ui/elements/src/lib/user-feedback-item/user-feedback-item.component.d.ts.map +1 -1
- package/libs/ui/inputs/src/index.d.ts +1 -1
- package/libs/ui/inputs/src/index.d.ts.map +1 -1
- package/libs/ui/inputs/src/lib/autocomplete/autocomplete.component.d.ts.map +1 -1
- package/libs/ui/inputs/src/lib/badge/badge.component.d.ts.map +1 -1
- package/libs/ui/inputs/src/lib/check-toggle/check-toggle.component.d.ts +2 -2
- package/libs/ui/inputs/src/lib/check-toggle/check-toggle.component.d.ts.map +1 -1
- package/libs/ui/inputs/src/lib/chips-input/chips-input.component.d.ts.map +1 -1
- package/libs/ui/inputs/src/lib/copy-text-button/copy-text-button.component.d.ts +1 -1
- package/libs/ui/inputs/src/lib/copy-text-button/copy-text-button.component.d.ts.map +1 -1
- package/libs/ui/inputs/src/lib/date-picker/date-picker.component.d.ts.map +1 -1
- package/libs/ui/inputs/src/lib/date-range-dropdown/date-range-dropdown.component.d.ts +20 -0
- package/libs/ui/inputs/src/lib/date-range-dropdown/date-range-dropdown.component.d.ts.map +1 -0
- package/libs/ui/inputs/src/lib/date-range-picker/date-range-picker.component.d.ts.map +1 -1
- package/libs/ui/inputs/src/lib/dropdown-selector/dropdown-selector.component.d.ts.map +1 -1
- package/libs/ui/inputs/src/lib/editable-label/editable-label.directive.d.ts.map +1 -1
- package/libs/ui/inputs/src/lib/file-input/file-input.component.d.ts +3 -2
- package/libs/ui/inputs/src/lib/file-input/file-input.component.d.ts.map +1 -1
- package/libs/ui/inputs/src/lib/image-input/image-input.component.d.ts +2 -1
- package/libs/ui/inputs/src/lib/image-input/image-input.component.d.ts.map +1 -1
- package/libs/ui/inputs/src/lib/navigation-button/navigation-button.component.d.ts +1 -1
- package/libs/ui/inputs/src/lib/navigation-button/navigation-button.component.d.ts.map +1 -1
- package/libs/ui/inputs/src/lib/search-input/search-input.component.d.ts.map +1 -1
- package/libs/ui/inputs/src/lib/star-toggle/star-toggle.component.d.ts +1 -1
- package/libs/ui/inputs/src/lib/star-toggle/star-toggle.component.d.ts.map +1 -1
- package/libs/ui/inputs/src/lib/switch-toggle/switch-toggle.component.d.ts +2 -1
- package/libs/ui/inputs/src/lib/switch-toggle/switch-toggle.component.d.ts.map +1 -1
- package/libs/ui/inputs/src/lib/ui-inputs.module.d.ts +28 -31
- package/libs/ui/inputs/src/lib/ui-inputs.module.d.ts.map +1 -1
- package/libs/ui/inputs/src/lib/url-input/url-input.component.d.ts +14 -12
- package/libs/ui/inputs/src/lib/url-input/url-input.component.d.ts.map +1 -1
- package/libs/ui/layout/src/index.d.ts +5 -0
- package/libs/ui/layout/src/index.d.ts.map +1 -1
- package/libs/ui/layout/src/lib/block-list/block-list.component.d.ts +7 -5
- package/libs/ui/layout/src/lib/block-list/block-list.component.d.ts.map +1 -1
- package/libs/ui/layout/src/lib/carousel/carousel.component.d.ts +9 -7
- package/libs/ui/layout/src/lib/carousel/carousel.component.d.ts.map +1 -1
- package/libs/ui/layout/src/lib/expandable-panel/expandable-panel.component.d.ts +1 -1
- package/libs/ui/layout/src/lib/expandable-panel/expandable-panel.component.d.ts.map +1 -1
- package/libs/ui/layout/src/lib/expandable-panel-button/expandable-panel-button.component.d.ts +1 -1
- package/libs/ui/layout/src/lib/expandable-panel-button/expandable-panel-button.component.d.ts.map +1 -1
- package/libs/ui/layout/src/lib/interactive-table/interactive-table-column/interactive-table-column.component.d.ts +2 -1
- package/libs/ui/layout/src/lib/interactive-table/interactive-table-column/interactive-table-column.component.d.ts.map +1 -1
- package/libs/ui/layout/src/lib/interactive-table/interactive-table.component.d.ts.map +1 -1
- package/libs/ui/layout/src/lib/paginable.interface.d.ts +15 -0
- package/libs/ui/layout/src/lib/paginable.interface.d.ts.map +1 -0
- package/libs/ui/layout/src/lib/pagination/pagination.component.d.ts +11 -0
- package/libs/ui/layout/src/lib/pagination/pagination.component.d.ts.map +1 -0
- package/libs/ui/layout/src/lib/pagination-buttons/pagination-buttons.component.d.ts +9 -0
- package/libs/ui/layout/src/lib/pagination-buttons/pagination-buttons.component.d.ts.map +1 -0
- package/libs/ui/layout/src/lib/pagination-dots/pagination-dots.component.d.ts +10 -0
- package/libs/ui/layout/src/lib/pagination-dots/pagination-dots.component.d.ts.map +1 -0
- package/libs/ui/layout/src/lib/previous-next-buttons/previous-next-buttons.component.d.ts +8 -0
- package/libs/ui/layout/src/lib/previous-next-buttons/previous-next-buttons.component.d.ts.map +1 -0
- package/libs/ui/layout/src/lib/sortable-list/sortable-list.component.d.ts.map +1 -1
- package/libs/ui/layout/src/lib/ui-layout.module.d.ts +6 -8
- package/libs/ui/layout/src/lib/ui-layout.module.d.ts.map +1 -1
- package/libs/ui/map/src/index.d.ts +1 -0
- package/libs/ui/map/src/index.d.ts.map +1 -1
- package/libs/ui/map/src/lib/components/map-container/map-container.component.d.ts.map +1 -1
- package/libs/ui/map/src/lib/components/map-container/map-settings.token.d.ts.map +1 -1
- package/libs/ui/map/src/lib/components/map-legend/map-legend.component.d.ts +12 -0
- package/libs/ui/map/src/lib/components/map-legend/map-legend.component.d.ts.map +1 -0
- package/libs/ui/search/src/lib/results-list/results-layout.config.d.ts.map +1 -1
- package/libs/ui/search/src/lib/results-table/action-menu/action-menu.component.d.ts +10 -6
- package/libs/ui/search/src/lib/results-table/action-menu/action-menu.component.d.ts.map +1 -1
- package/libs/ui/search/src/lib/results-table/results-table.component.d.ts +11 -4
- package/libs/ui/search/src/lib/results-table/results-table.component.d.ts.map +1 -1
- package/libs/ui/search/src/lib/ui-search.module.d.ts +6 -5
- package/libs/ui/search/src/lib/ui-search.module.d.ts.map +1 -1
- package/libs/ui/widgets/src/lib/loading-mask/loading-mask.component.d.ts +1 -1
- package/libs/ui/widgets/src/lib/loading-mask/loading-mask.component.d.ts.map +1 -1
- package/libs/ui/widgets/src/lib/popup-alert/popup-alert.component.d.ts.map +1 -1
- package/libs/ui/widgets/src/lib/progress-bar/progress-bar.component.d.ts +1 -1
- package/libs/ui/widgets/src/lib/progress-bar/progress-bar.component.d.ts.map +1 -1
- package/libs/ui/widgets/src/lib/spinning-loader/spinning-loader.component.d.ts +1 -1
- package/libs/ui/widgets/src/lib/spinning-loader/spinning-loader.component.d.ts.map +1 -1
- package/libs/ui/widgets/src/lib/ui-widgets.module.d.ts +9 -13
- package/libs/ui/widgets/src/lib/ui-widgets.module.d.ts.map +1 -1
- package/libs/util/app-config/src/lib/app-config.d.ts.map +1 -1
- package/libs/util/app-config/src/lib/fixtures.d.ts.map +1 -1
- package/libs/util/app-config/src/lib/map-layers.d.ts.map +1 -1
- package/libs/util/app-config/src/lib/model.d.ts +6 -1
- package/libs/util/app-config/src/lib/model.d.ts.map +1 -1
- package/libs/util/data-fetcher/src/lib/model.d.ts +2 -2
- package/libs/util/data-fetcher/src/lib/model.d.ts.map +1 -1
- package/libs/util/data-fetcher/src/lib/readers/csv.d.ts.map +1 -1
- package/libs/util/data-fetcher/src/lib/readers/excel.d.ts.map +1 -1
- package/libs/util/data-fetcher/src/lib/readers/geojson.d.ts.map +1 -1
- package/libs/util/data-fetcher/src/lib/readers/gml.d.ts.map +1 -1
- package/libs/util/data-fetcher/src/lib/readers/json.d.ts.map +1 -1
- package/libs/util/data-fetcher/src/lib/utils.d.ts +1 -1
- package/libs/util/data-fetcher/src/lib/utils.d.ts.map +1 -1
- package/libs/util/i18n/src/index.d.ts +1 -0
- package/libs/util/i18n/src/index.d.ts.map +1 -1
- package/libs/util/i18n/src/lib/i18n.constants.d.ts +0 -35
- package/libs/util/i18n/src/lib/i18n.constants.d.ts.map +1 -1
- package/libs/util/i18n/src/lib/language-codes.d.ts +38 -0
- package/libs/util/i18n/src/lib/language-codes.d.ts.map +1 -0
- package/libs/util/shared/src/lib/links/link-classifier.service.d.ts.map +1 -1
- package/libs/util/shared/src/lib/links/link-utils.d.ts +16 -16
- package/libs/util/shared/src/lib/services/proxy.service.d.ts +4 -2
- package/libs/util/shared/src/lib/services/proxy.service.d.ts.map +1 -1
- package/libs/util/shared/src/lib/utils/format-fields.d.ts +2 -0
- package/libs/util/shared/src/lib/utils/format-fields.d.ts.map +1 -0
- package/libs/util/shared/src/lib/utils/index.d.ts +2 -0
- package/libs/util/shared/src/lib/utils/index.d.ts.map +1 -1
- package/libs/util/shared/src/lib/utils/no-duplicate-file-name.d.ts +2 -0
- package/libs/util/shared/src/lib/utils/no-duplicate-file-name.d.ts.map +1 -0
- package/libs/util/shared/src/lib/utils/temporal-extent-union.d.ts +4 -1
- package/libs/util/shared/src/lib/utils/temporal-extent-union.d.ts.map +1 -1
- package/package.json +50 -43
- package/src/libs/api/metadata-converter/src/lib/common/distribution.mapper.ts +1 -0
- package/src/libs/api/metadata-converter/src/lib/common/resource-types.ts +50 -0
- package/src/libs/api/metadata-converter/src/lib/convert-utils.ts +1 -1
- package/src/libs/api/metadata-converter/src/lib/dcat-ap/dcat-ap.converter.ts +160 -34
- package/src/libs/api/metadata-converter/src/lib/dcat-ap/read-parts.ts +140 -47
- package/src/libs/api/metadata-converter/src/lib/dcat-ap/utils/graph-utils.ts +62 -47
- package/src/libs/api/metadata-converter/src/lib/dcat-ap/utils/serialize-to-xml.ts +37 -7
- package/src/libs/api/metadata-converter/src/lib/dcat-ap/write-parts.ts +51 -18
- package/src/libs/api/metadata-converter/src/lib/fixtures/eu.dcat-ap.records.ts +473 -2
- package/src/libs/api/metadata-converter/src/lib/fixtures/generic.records.ts +36 -3
- package/src/libs/api/metadata-converter/src/lib/fixtures/geo2france.records.reuse+ongules.ts +246 -0
- package/src/libs/api/metadata-converter/src/lib/fixtures/geo2france.records.reuse+roilaye.ts +101 -0
- package/src/libs/api/metadata-converter/src/lib/fixtures/geo2france.records.service+eaux-usees.ts +187 -0
- package/src/libs/api/metadata-converter/src/lib/fixtures/geo2france.records.ts +20 -3
- package/src/libs/api/metadata-converter/src/lib/fixtures/geocat-ch.records.ts +336 -5
- package/src/libs/api/metadata-converter/src/lib/fixtures/georhena.records.ts +216 -0
- package/src/libs/api/metadata-converter/src/lib/fixtures/metawal.records.ts +84 -2
- package/src/libs/api/metadata-converter/src/lib/fixtures/opendataswiss.records.ts +336 -9
- package/src/libs/api/metadata-converter/src/lib/fixtures/sextant.records.ts +404 -2
- package/src/libs/api/metadata-converter/src/lib/fixtures/vlaanderen.dcat-ap.records.ts +4 -1
- package/src/libs/api/metadata-converter/src/lib/fixtures/wallonie.records.reuse.ts +451 -0
- package/src/libs/api/metadata-converter/src/lib/fixtures/wallonie.records.service+napitswallonia.ts +289 -0
- package/src/libs/api/metadata-converter/src/lib/function-utils.ts +1 -1
- package/src/libs/api/metadata-converter/src/lib/gn4/gn4.converter.ts +2 -1
- package/src/libs/api/metadata-converter/src/lib/gn4/gn4.field.mapper.ts +29 -23
- package/src/libs/api/metadata-converter/src/lib/gn4/types/elasticsearch.model.ts +1 -1
- package/src/libs/api/metadata-converter/src/lib/gn4/types/metadata.model.ts +11 -10
- package/src/libs/api/metadata-converter/src/lib/iso19115-3/iso19115-3.converter.ts +15 -3
- package/src/libs/api/metadata-converter/src/lib/iso19115-3/read-parts.ts +69 -20
- package/src/libs/api/metadata-converter/src/lib/iso19115-3/write-parts.ts +100 -25
- package/src/libs/api/metadata-converter/src/lib/iso19139/iso19139.converter.ts +165 -81
- package/src/libs/api/metadata-converter/src/lib/iso19139/read-parts.ts +279 -49
- package/src/libs/api/metadata-converter/src/lib/iso19139/write-parts.ts +428 -172
- package/src/libs/api/metadata-converter/src/lib/xml-utils.ts +97 -24
- package/src/libs/api/repository/src/lib/gn4/auth/auth.service.ts +35 -6
- package/src/libs/api/repository/src/lib/gn4/elasticsearch/date-range.utils.ts +13 -0
- package/src/libs/api/repository/src/lib/gn4/elasticsearch/elasticsearch.service.ts +58 -23
- package/src/libs/api/repository/src/lib/gn4/elasticsearch/index.ts +1 -0
- package/src/libs/api/repository/src/lib/gn4/gn4-repository.ts +111 -52
- package/src/libs/api/repository/src/lib/gn4/platform/gn4-platform.mapper.ts +1 -1
- package/src/libs/api/repository/src/lib/gn4/platform/gn4-platform.service.ts +113 -31
- package/src/libs/common/domain/src/lib/model/dataviz/dataviz-configuration.model.ts +1 -1
- package/src/libs/common/domain/src/lib/model/error/index.ts +1 -0
- package/src/libs/common/domain/src/lib/model/error/publication-version.error.ts +9 -0
- package/src/libs/common/domain/src/lib/model/record/contact.model.ts +1 -1
- package/src/libs/common/domain/src/lib/model/record/index.ts +1 -0
- package/src/libs/common/domain/src/lib/model/record/metadata.model.ts +44 -7
- package/src/libs/common/domain/src/lib/model/record/organization.model.ts +4 -0
- package/src/libs/common/domain/src/lib/model/record/translation.model.ts +49 -0
- package/src/libs/common/domain/src/lib/model/search/filter.model.ts +17 -1
- package/src/libs/common/domain/src/lib/model/search/sort-by.model.ts +1 -0
- package/src/libs/common/domain/src/lib/platform.service.interface.ts +4 -3
- package/src/libs/common/domain/src/lib/repository/records-repository.interface.ts +4 -0
- package/src/libs/common/fixtures/src/lib/editor/editor.fixtures.ts +10 -3
- package/src/libs/common/fixtures/src/lib/elasticsearch/full-response.fixtures.ts +1673 -0
- package/src/libs/common/fixtures/src/lib/elasticsearch/search-responses.fixtures.ts +12931 -0
- package/src/libs/common/fixtures/src/lib/link.fixtures.ts +37 -28
- package/src/libs/common/fixtures/src/lib/records.fixtures.ts +117 -15
- package/src/libs/feature/catalog/src/lib/feature-catalog.module.ts +4 -9
- package/src/libs/feature/catalog/src/lib/organisations/organisations.component.html +1 -5
- package/src/libs/feature/catalog/src/lib/organisations/organisations.component.ts +41 -5
- package/src/libs/feature/dataviz/src/index.ts +0 -1
- package/src/libs/feature/dataviz/src/lib/chart-view/chart-view.component.html +1 -1
- package/src/libs/feature/dataviz/src/lib/chart-view/chart-view.component.ts +20 -2
- package/src/libs/feature/dataviz/src/lib/figure/figure-container/figure-container.component.ts +3 -1
- package/src/libs/feature/dataviz/src/lib/geo-table-view/geo-table-view.component.ts +6 -1
- package/src/libs/feature/dataviz/src/lib/service/data.service.ts +30 -7
- package/src/libs/feature/dataviz/src/lib/table-view/table-view.component.html +1 -1
- package/src/libs/feature/dataviz/src/lib/table-view/table-view.component.ts +15 -2
- package/src/libs/feature/editor/src/lib/+state/editor.actions.ts +16 -0
- package/src/libs/feature/editor/src/lib/+state/editor.effects.ts +41 -2
- package/src/libs/feature/editor/src/lib/+state/editor.facade.ts +13 -0
- package/src/libs/feature/editor/src/lib/+state/editor.models.ts +1 -1
- package/src/libs/feature/editor/src/lib/+state/editor.reducer.ts +27 -0
- package/src/libs/feature/editor/src/lib/+state/editor.selectors.ts +5 -0
- package/src/libs/feature/editor/src/lib/components/constraint-card/constraint-card.component.css +4 -0
- package/src/libs/feature/editor/src/lib/components/constraint-card/constraint-card.component.html +28 -0
- package/src/libs/feature/editor/src/lib/components/constraint-card/constraint-card.component.ts +71 -0
- package/src/libs/feature/editor/src/lib/components/contact-card/contact-card.component.ts +1 -2
- package/src/libs/feature/editor/src/lib/components/generic-keywords/generic-keywords.component.css +3 -0
- package/src/libs/feature/editor/src/lib/components/generic-keywords/generic-keywords.component.html +7 -6
- package/src/libs/feature/editor/src/lib/components/generic-keywords/generic-keywords.component.ts +12 -2
- package/src/libs/feature/editor/src/lib/components/import-record/import-record.component.html +3 -4
- package/src/libs/feature/editor/src/lib/components/import-record/import-record.component.ts +32 -11
- package/src/libs/feature/editor/src/lib/components/online-resource-card/online-resource-card.component.html +1 -1
- package/src/libs/feature/editor/src/lib/components/online-resource-card/online-resource-card.component.ts +15 -2
- package/src/libs/feature/editor/src/lib/components/online-service-resource-input/online-service-resource-input.component.html +2 -0
- package/src/libs/feature/editor/src/lib/components/online-service-resource-input/online-service-resource-input.component.ts +1 -2
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-constraints/form-field-constraints.component.css +4 -0
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-constraints/form-field-constraints.component.html +24 -0
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-constraints/form-field-constraints.component.ts +85 -0
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-constraints-shortcuts/constraints.utils.ts +42 -0
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-constraints-shortcuts/form-field-constraints-shortcuts.component.css +4 -0
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-constraints-shortcuts/form-field-constraints-shortcuts.component.html +34 -0
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-constraints-shortcuts/form-field-constraints-shortcuts.component.ts +210 -0
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-contacts/form-field-contacts.component.html +1 -1
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-contacts-for-resource/form-field-contacts-for-resource.component.html +1 -1
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-contacts-for-resource/form-field-contacts-for-resource.component.ts +13 -2
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/{form-field-date-updated/form-field-date-updated.component.ts → form-field-date/form-field-date.component.ts} +4 -4
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-file/form-field-file.component.html +1 -1
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-license/form-field-license.component.html +11 -8
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-license/form-field-license.component.ts +33 -45
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-online-link-resources/form-field-online-link-resources.component.html +55 -40
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-online-link-resources/form-field-online-link-resources.component.ts +29 -18
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-online-resources/form-field-online-resources.component.html +83 -66
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-online-resources/form-field-online-resources.component.ts +27 -17
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-open-data/form-field-open-data.component.html +1 -1
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-open-data/form-field-open-data.component.ts +15 -12
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-overviews/form-field-overviews.component.html +22 -11
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-overviews/form-field-overviews.component.ts +30 -17
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-rich/form-field-rich.component.html +2 -2
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-simple/form-field-simple.component.html +4 -25
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-simple/form-field-simple.component.ts +3 -23
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-spatial-extent/form-field-spatial-extent.component.html +0 -5
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-spatial-extent/form-field-spatial-extent.component.ts +2 -42
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-spatial-toggle/form-field-spatial-toggle.component.html +5 -0
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-spatial-toggle/form-field-spatial-toggle.component.ts +60 -0
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-temporal-extents/form-field-temporal-extents.component.html +3 -2
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-temporal-extents/form-field-temporal-extents.component.ts +13 -2
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field-update-frequency/form-field-update-frequency.component.html +1 -0
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field.component.html +55 -21
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/form-field.component.ts +33 -8
- package/src/libs/feature/editor/src/lib/components/record-form/form-field/index.ts +1 -1
- package/src/libs/feature/editor/src/lib/components/record-form/record-form.component.html +6 -1
- package/src/libs/feature/editor/src/lib/fields.config.ts +83 -12
- package/src/libs/feature/editor/src/lib/models/editor-config.model.ts +12 -4
- package/src/libs/feature/editor/src/lib/services/editor.service.ts +7 -0
- package/src/libs/feature/map/src/lib/add-layer-from-wms/add-layer-from-wms.component.html +2 -2
- package/src/libs/feature/map/src/lib/feature-map.module.ts +0 -2
- package/src/libs/feature/map/src/lib/layers-panel/layers-panel.component.html +3 -5
- package/src/libs/feature/map/src/lib/layers-panel/layers-panel.component.ts +23 -4
- package/src/libs/feature/notifications/src/lib/notifications.service.ts +6 -1
- package/src/libs/feature/record/src/index.ts +3 -0
- package/src/libs/feature/record/src/lib/data-view/data-view.component.html +1 -1
- package/src/libs/feature/record/src/lib/data-view/data-view.component.ts +15 -0
- package/src/libs/feature/record/src/lib/data-view-permalink/data-view-permalink.component.ts +5 -0
- package/src/libs/feature/record/src/lib/data-view-share/data-view-share.component.ts +16 -1
- package/src/libs/feature/record/src/lib/data-view-web-component/data-view-web-component.component.ts +5 -0
- package/src/libs/feature/record/src/lib/external-viewer-button/external-viewer-button.component.html +1 -1
- package/src/libs/feature/record/src/lib/external-viewer-button/external-viewer-button.component.ts +8 -1
- package/src/libs/feature/record/src/lib/feature-record.module.ts +11 -38
- package/src/libs/feature/record/src/lib/gpf-api-dl/gpf-api-dl.component.css +22 -0
- package/src/libs/feature/record/src/lib/gpf-api-dl/gpf-api-dl.component.html +132 -0
- package/src/libs/feature/record/src/lib/gpf-api-dl/gpf-api-dl.component.ts +253 -0
- package/src/libs/feature/record/src/lib/gpf-api-dl-list-item/gpf-api-dl-list-item.component.html +37 -0
- package/src/libs/feature/record/src/lib/gpf-api-dl-list-item/gpf-api-dl-list-item.component.ts +43 -0
- package/src/libs/feature/record/src/lib/map-view/map-view.component.html +50 -12
- package/src/libs/feature/record/src/lib/map-view/map-view.component.ts +62 -4
- package/src/libs/feature/record/src/lib/record-meta/record-meta.component.ts +45 -0
- package/src/libs/feature/record/src/lib/state/mdview.facade.ts +10 -1
- package/src/libs/feature/router/src/lib/default/constants.ts +6 -1
- package/src/libs/feature/router/src/lib/default/state/query-params.utils.ts +61 -0
- package/src/libs/feature/router/src/lib/default/state/router.effects.ts +2 -2
- package/src/libs/feature/router/src/lib/default/state/router.facade.ts +5 -3
- package/src/libs/feature/search/src/index.ts +2 -0
- package/src/libs/feature/search/src/lib/constants.ts +1 -1
- package/src/libs/feature/search/src/lib/facets/facets.service.ts +4 -4
- package/src/libs/feature/search/src/lib/favorites/favorite-star/favorite-star.component.ts +3 -0
- package/src/libs/feature/search/src/lib/feature-search.module.ts +15 -8
- package/src/libs/feature/search/src/lib/filter-dropdown/filter-dropdown.component.html +20 -10
- package/src/libs/feature/search/src/lib/filter-dropdown/filter-dropdown.component.ts +32 -1
- package/src/libs/feature/search/src/lib/results-list/results-list.container.component.html +1 -6
- package/src/libs/feature/search/src/lib/results-list/results-list.container.component.ts +12 -1
- package/src/libs/feature/search/src/lib/results-table/results-table-container.component.ts +16 -12
- package/src/libs/feature/search/src/lib/search-filters-summary/search-filters-summary.component.css +0 -0
- package/src/libs/feature/search/src/lib/search-filters-summary/search-filters-summary.component.html +17 -0
- package/src/libs/feature/search/src/lib/search-filters-summary/search-filters-summary.component.ts +78 -0
- package/src/libs/feature/search/src/lib/search-filters-summary-item/search-filters-summary-item.component.css +0 -0
- package/src/libs/feature/search/src/lib/search-filters-summary-item/search-filters-summary-item.component.html +20 -0
- package/src/libs/feature/search/src/lib/search-filters-summary-item/search-filters-summary-item.component.ts +118 -0
- package/src/libs/feature/search/src/lib/sort-by/sort-by.component.ts +4 -0
- package/src/libs/feature/search/src/lib/state/actions.ts +69 -17
- package/src/libs/feature/search/src/lib/state/effects.ts +1 -1
- package/src/libs/feature/search/src/lib/state/search.facade.ts +0 -8
- package/src/libs/feature/search/src/lib/state/selectors.ts +0 -18
- package/src/libs/feature/search/src/lib/utils/service/fields.service.ts +20 -3
- package/src/libs/feature/search/src/lib/utils/service/fields.ts +91 -12
- package/src/libs/ui/catalog/src/index.ts +0 -1
- package/src/libs/ui/catalog/src/lib/catalog-title/catalog-title.component.ts +3 -0
- package/src/libs/ui/catalog/src/lib/language-switcher/language-switcher.component.html +1 -1
- package/src/libs/ui/catalog/src/lib/language-switcher/language-switcher.component.ts +15 -21
- package/src/libs/ui/catalog/src/lib/organisation-preview/organisation-preview.component.html +2 -3
- package/src/libs/ui/catalog/src/lib/organisation-preview/organisation-preview.component.ts +11 -0
- package/src/libs/ui/catalog/src/lib/organisations-result/organisations-result.component.ts +3 -0
- package/src/libs/ui/dataviz/src/lib/chart/chart.component.ts +1 -1
- package/src/libs/ui/dataviz/src/lib/figure/figure.component.html +6 -5
- package/src/libs/ui/dataviz/src/lib/ui-dataviz.module.ts +17 -2
- package/src/libs/ui/elements/src/index.ts +0 -2
- package/src/libs/ui/elements/src/lib/api-card/api-card.component.html +18 -8
- package/src/libs/ui/elements/src/lib/api-card/api-card.component.ts +21 -1
- package/src/libs/ui/elements/src/lib/content-ghost/content-ghost.component.ts +3 -0
- package/src/libs/ui/elements/src/lib/download-item/download-item.component.html +7 -5
- package/src/libs/ui/elements/src/lib/download-item/download-item.component.ts +12 -1
- package/src/libs/ui/elements/src/lib/downloads-list/downloads-list.component.html +1 -1
- package/src/libs/ui/elements/src/lib/downloads-list/downloads-list.component.ts +57 -11
- package/src/libs/ui/elements/src/lib/error/error.component.css +24 -19
- package/src/libs/ui/elements/src/lib/error/error.component.html +11 -21
- package/src/libs/ui/elements/src/lib/error/error.component.ts +19 -0
- package/src/libs/ui/elements/src/lib/image-overlay-preview/image-overlay-preview.component.html +3 -6
- package/src/libs/ui/elements/src/lib/image-overlay-preview/image-overlay-preview.component.ts +15 -0
- package/src/libs/ui/elements/src/lib/link-card/link-card.component.html +2 -6
- package/src/libs/ui/elements/src/lib/link-card/link-card.component.ts +13 -2
- package/src/libs/ui/elements/src/lib/markdown-editor/markdown-editor.component.ts +0 -2
- package/src/libs/ui/elements/src/lib/markdown-parser/markdown-parser.component.html +4 -1
- package/src/libs/ui/elements/src/lib/markdown-parser/markdown-parser.component.ts +1 -0
- package/src/libs/ui/elements/src/lib/metadata-catalog/metadata-catalog.component.ts +4 -1
- package/src/libs/ui/elements/src/lib/metadata-contact/metadata-contact.component.html +20 -22
- package/src/libs/ui/elements/src/lib/metadata-contact/metadata-contact.component.ts +24 -0
- package/src/libs/ui/elements/src/lib/metadata-info/linkify.directive.ts +7 -3
- package/src/libs/ui/elements/src/lib/metadata-info/metadata-info.component.css +1 -1
- package/src/libs/ui/elements/src/lib/metadata-info/metadata-info.component.html +47 -26
- package/src/libs/ui/elements/src/lib/metadata-info/metadata-info.component.ts +43 -1
- package/src/libs/ui/elements/src/lib/metadata-quality/metadata-quality.component.ts +18 -1
- package/src/libs/ui/elements/src/lib/metadata-quality-item/metadata-quality-item.component.html +1 -1
- package/src/libs/ui/elements/src/lib/metadata-quality-item/metadata-quality-item.component.ts +7 -1
- package/src/libs/ui/elements/src/lib/notification/notification.component.html +10 -14
- package/src/libs/ui/elements/src/lib/notification/notification.component.ts +33 -2
- package/src/libs/ui/elements/src/lib/record-api-form/record-api-form.component.css +2 -2
- package/src/libs/ui/elements/src/lib/record-api-form/record-api-form.component.ts +44 -35
- package/src/libs/ui/elements/src/lib/related-record-card/related-record-card.component.html +4 -4
- package/src/libs/ui/elements/src/lib/related-record-card/related-record-card.component.ts +15 -0
- package/src/libs/ui/elements/src/lib/ui-elements.module.ts +6 -55
- package/src/libs/ui/elements/src/lib/user-feedback-item/time-since.pipe.ts +2 -2
- package/src/libs/ui/elements/src/lib/user-feedback-item/user-feedback-item.component.html +2 -6
- package/src/libs/ui/elements/src/lib/user-feedback-item/user-feedback-item.component.ts +22 -0
- package/src/libs/ui/elements/src/lib/user-preview/user-preview.component.html +1 -4
- package/src/libs/ui/inputs/src/index.ts +1 -1
- package/src/libs/ui/inputs/src/lib/autocomplete/autocomplete.component.css +3 -10
- package/src/libs/ui/inputs/src/lib/autocomplete/autocomplete.component.html +5 -5
- package/src/libs/ui/inputs/src/lib/autocomplete/autocomplete.component.ts +18 -2
- package/src/libs/ui/inputs/src/lib/badge/badge.component.html +2 -2
- package/src/libs/ui/inputs/src/lib/badge/badge.component.ts +15 -2
- package/src/libs/ui/inputs/src/lib/check-toggle/check-toggle.component.html +4 -1
- package/src/libs/ui/inputs/src/lib/check-toggle/check-toggle.component.ts +3 -3
- package/src/libs/ui/inputs/src/lib/chips-input/chips-input.component.ts +4 -1
- package/src/libs/ui/inputs/src/lib/copy-text-button/copy-text-button.component.html +5 -6
- package/src/libs/ui/inputs/src/lib/copy-text-button/copy-text-button.component.ts +7 -0
- package/src/libs/ui/inputs/src/lib/date-picker/date-picker.component.html +1 -3
- package/src/libs/ui/inputs/src/lib/date-picker/date-picker.component.ts +13 -2
- package/src/libs/ui/inputs/src/lib/date-range-dropdown/date-range-dropdown.component.css +5 -0
- package/src/libs/ui/inputs/src/lib/date-range-dropdown/date-range-dropdown.component.html +30 -0
- package/src/libs/ui/inputs/src/lib/date-range-dropdown/date-range-dropdown.component.ts +63 -0
- package/src/libs/ui/inputs/src/lib/date-range-picker/date-range-picker.component.html +1 -3
- package/src/libs/ui/inputs/src/lib/date-range-picker/date-range-picker.component.ts +13 -2
- package/src/libs/ui/inputs/src/lib/dropdown-multiselect/dropdown-multiselect.component.html +16 -20
- package/src/libs/ui/inputs/src/lib/dropdown-selector/dropdown-selector.component.html +7 -7
- package/src/libs/ui/inputs/src/lib/dropdown-selector/dropdown-selector.component.ts +16 -2
- package/src/libs/ui/inputs/src/lib/editable-label/editable-label.directive.ts +4 -1
- package/src/libs/ui/inputs/src/lib/file-input/file-input.component.html +14 -13
- package/src/libs/ui/inputs/src/lib/file-input/file-input.component.ts +19 -3
- package/src/libs/ui/inputs/src/lib/image-input/image-input.component.html +32 -28
- package/src/libs/ui/inputs/src/lib/image-input/image-input.component.ts +32 -3
- package/src/libs/ui/inputs/src/lib/navigation-button/navigation-button.component.html +1 -3
- package/src/libs/ui/inputs/src/lib/navigation-button/navigation-button.component.ts +4 -1
- package/src/libs/ui/inputs/src/lib/search-input/search-input.component.html +2 -2
- package/src/libs/ui/inputs/src/lib/search-input/search-input.component.ts +13 -2
- package/src/libs/ui/inputs/src/lib/star-toggle/star-toggle.component.css +0 -9
- package/src/libs/ui/inputs/src/lib/star-toggle/star-toggle.component.html +2 -6
- package/src/libs/ui/inputs/src/lib/star-toggle/star-toggle.component.ts +6 -0
- package/src/libs/ui/inputs/src/lib/switch-toggle/switch-toggle.component.html +1 -0
- package/src/libs/ui/inputs/src/lib/switch-toggle/switch-toggle.component.ts +1 -0
- package/src/libs/ui/inputs/src/lib/ui-inputs.module.ts +21 -11
- package/src/libs/ui/inputs/src/lib/url-input/url-input.component.css +1 -1
- package/src/libs/ui/inputs/src/lib/url-input/url-input.component.html +12 -21
- package/src/libs/ui/inputs/src/lib/url-input/url-input.component.ts +49 -20
- package/src/libs/ui/layout/src/index.ts +5 -0
- package/src/libs/ui/layout/src/lib/block-list/block-list.component.css +0 -16
- package/src/libs/ui/layout/src/lib/block-list/block-list.component.html +4 -12
- package/src/libs/ui/layout/src/lib/block-list/block-list.component.ts +20 -11
- package/src/libs/ui/layout/src/lib/carousel/carousel.component.css +0 -16
- package/src/libs/ui/layout/src/lib/carousel/carousel.component.html +4 -12
- package/src/libs/ui/layout/src/lib/carousel/carousel.component.ts +22 -19
- package/src/libs/ui/layout/src/lib/expandable-panel/expandable-panel.component.html +2 -4
- package/src/libs/ui/layout/src/lib/expandable-panel/expandable-panel.component.ts +8 -2
- package/src/libs/ui/layout/src/lib/expandable-panel-button/expandable-panel-button.component.html +2 -6
- package/src/libs/ui/layout/src/lib/expandable-panel-button/expandable-panel-button.component.ts +6 -0
- package/src/libs/ui/layout/src/lib/form-field-wrapper/form-field-wrapper.component.html +1 -1
- package/src/libs/ui/layout/src/lib/form-field-wrapper/form-field-wrapper.component.ts +2 -2
- package/src/libs/ui/layout/src/lib/interactive-table/interactive-table-column/interactive-table-column.component.ts +1 -0
- package/src/libs/ui/layout/src/lib/interactive-table/interactive-table.component.css +4 -8
- package/src/libs/ui/layout/src/lib/interactive-table/interactive-table.component.html +9 -9
- package/src/libs/ui/layout/src/lib/interactive-table/interactive-table.component.ts +13 -3
- package/src/libs/ui/layout/src/lib/max-lines/max-lines.component.html +1 -1
- package/src/libs/ui/layout/src/lib/paginable.interface.ts +14 -0
- package/src/libs/ui/layout/src/lib/pagination/pagination.component.css +0 -0
- package/src/libs/ui/{elements → layout}/src/lib/pagination/pagination.component.html +12 -13
- package/src/libs/ui/layout/src/lib/pagination/pagination.component.ts +45 -0
- package/src/libs/ui/layout/src/lib/pagination-buttons/pagination-buttons.component.css +0 -0
- package/src/libs/ui/layout/src/lib/pagination-buttons/pagination-buttons.component.html +51 -0
- package/src/libs/ui/layout/src/lib/pagination-buttons/pagination-buttons.component.ts +50 -0
- package/src/libs/ui/layout/src/lib/pagination-dots/pagination-dots.component.css +16 -0
- package/src/libs/ui/layout/src/lib/pagination-dots/pagination-dots.component.html +15 -0
- package/src/libs/ui/layout/src/lib/pagination-dots/pagination-dots.component.ts +31 -0
- package/src/libs/ui/layout/src/lib/previous-next-buttons/previous-next-buttons.component.html +18 -0
- package/src/libs/ui/layout/src/lib/previous-next-buttons/previous-next-buttons.component.ts +29 -0
- package/src/libs/ui/layout/src/lib/sortable-list/sortable-list.component.css +4 -2
- package/src/libs/ui/layout/src/lib/sortable-list/sortable-list.component.ts +1 -9
- package/src/libs/ui/layout/src/lib/ui-layout.module.ts +8 -15
- package/src/libs/ui/map/src/index.ts +1 -0
- package/src/libs/ui/map/src/lib/components/map-container/map-container.component.html +4 -3
- package/src/libs/ui/map/src/lib/components/map-container/map-container.component.ts +13 -2
- package/src/libs/ui/map/src/lib/components/map-legend/map-legend.component.css +5 -0
- package/src/libs/ui/map/src/lib/components/map-legend/map-legend.component.html +1 -0
- package/src/libs/ui/map/src/lib/components/map-legend/map-legend.component.ts +39 -0
- package/src/libs/ui/search/src/lib/record-preview-feed/record-preview-feed.component.html +17 -13
- package/src/libs/ui/search/src/lib/record-preview-row/record-preview-row.component.html +16 -10
- package/src/libs/ui/search/src/lib/results-list/results-layout.config.ts +1 -1
- package/src/libs/ui/search/src/lib/results-table/action-menu/action-menu.component.html +59 -26
- package/src/libs/ui/search/src/lib/results-table/action-menu/action-menu.component.ts +17 -30
- package/src/libs/ui/search/src/lib/results-table/results-table.component.html +35 -27
- package/src/libs/ui/search/src/lib/results-table/results-table.component.ts +89 -28
- package/src/libs/ui/search/src/lib/ui-search.module.ts +22 -3
- package/src/libs/ui/widgets/src/lib/loading-mask/loading-mask.component.ts +4 -6
- package/src/libs/ui/widgets/src/lib/popup-alert/popup-alert.component.html +2 -4
- package/src/libs/ui/widgets/src/lib/popup-alert/popup-alert.component.ts +8 -2
- package/src/libs/ui/widgets/src/lib/progress-bar/progress-bar.component.ts +1 -0
- package/src/libs/ui/widgets/src/lib/spinning-loader/spinning-loader.component.ts +1 -0
- package/src/libs/ui/widgets/src/lib/step-bar/step-bar.component.ts +2 -2
- package/src/libs/ui/widgets/src/lib/ui-widgets.module.ts +2 -18
- package/src/libs/util/app-config/src/lib/app-config.ts +9 -2
- package/src/libs/util/app-config/src/lib/fixtures.ts +1 -0
- package/src/libs/util/app-config/src/lib/map-layers.ts +6 -0
- package/src/libs/util/app-config/src/lib/model.ts +6 -1
- package/src/libs/util/data-fetcher/src/lib/model.ts +6 -6
- package/src/libs/util/data-fetcher/src/lib/readers/base-file.ts +1 -1
- package/src/libs/util/data-fetcher/src/lib/utils.ts +13 -11
- package/src/libs/util/i18n/src/index.ts +1 -0
- package/src/libs/util/i18n/src/lib/i18n.constants.ts +0 -43
- package/src/libs/util/i18n/src/lib/lang.service.ts +1 -1
- package/src/libs/util/i18n/src/lib/language-codes.ts +44 -0
- package/src/libs/util/shared/src/lib/links/link-classifier.service.ts +2 -0
- package/src/libs/util/shared/src/lib/links/link-utils.ts +17 -17
- package/src/libs/util/shared/src/lib/services/proxy.service.ts +7 -3
- package/src/libs/util/shared/src/lib/utils/format-fields.ts +11 -0
- package/src/libs/util/shared/src/lib/utils/index.ts +2 -0
- package/src/libs/util/shared/src/lib/utils/no-duplicate-file-name.ts +23 -0
- package/src/libs/util/shared/src/lib/utils/temporal-extent-union.ts +6 -1
- package/tailwind.base.css +17 -6
- package/translations/de.json +49 -24
- package/translations/en.json +113 -69
- package/translations/es.json +38 -13
- package/translations/fr.json +109 -65
- package/translations/it.json +41 -16
- package/translations/nl.json +38 -13
- package/translations/pt.json +38 -13
- package/translations/sk.json +39 -14
- package/esm2022/libs/feature/dataviz/src/lib/feature-dataviz.module.mjs +0 -74
- package/esm2022/libs/feature/editor/src/lib/components/record-form/form-field/form-field-date-updated/form-field-date-updated.component.mjs +0 -19
- package/esm2022/libs/ui/catalog/src/lib/ui-catalog.module.mjs +0 -57
- package/esm2022/libs/ui/elements/src/lib/pagination/pagination.component.mjs +0 -54
- package/esm2022/libs/ui/elements/src/lib/pagination-buttons/pagination-buttons.component.mjs +0 -66
- package/esm2022/libs/ui/inputs/src/lib/previous-next-buttons/previous-next-buttons.component.mjs +0 -29
- package/libs/feature/dataviz/src/lib/feature-dataviz.module.d.ts +0 -22
- package/libs/feature/dataviz/src/lib/feature-dataviz.module.d.ts.map +0 -1
- package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-date-updated/form-field-date-updated.component.d.ts +0 -9
- package/libs/feature/editor/src/lib/components/record-form/form-field/form-field-date-updated/form-field-date-updated.component.d.ts.map +0 -1
- package/libs/ui/catalog/src/lib/ui-catalog.module.d.ts +0 -17
- package/libs/ui/catalog/src/lib/ui-catalog.module.d.ts.map +0 -1
- package/libs/ui/elements/src/lib/pagination/pagination.component.d.ts +0 -16
- package/libs/ui/elements/src/lib/pagination/pagination.component.d.ts.map +0 -1
- package/libs/ui/elements/src/lib/pagination-buttons/pagination-buttons.component.d.ts +0 -17
- package/libs/ui/elements/src/lib/pagination-buttons/pagination-buttons.component.d.ts.map +0 -1
- package/libs/ui/inputs/src/lib/previous-next-buttons/previous-next-buttons.component.d.ts +0 -12
- package/libs/ui/inputs/src/lib/previous-next-buttons/previous-next-buttons.component.d.ts.map +0 -1
- package/src/libs/feature/dataviz/src/lib/feature-dataviz.module.ts +0 -48
- package/src/libs/ui/catalog/src/lib/ui-catalog.module.ts +0 -35
- package/src/libs/ui/elements/src/lib/pagination/pagination.component.ts +0 -50
- package/src/libs/ui/elements/src/lib/pagination-buttons/pagination-buttons.component.html +0 -33
- package/src/libs/ui/elements/src/lib/pagination-buttons/pagination-buttons.component.ts +0 -68
- package/src/libs/ui/inputs/src/lib/previous-next-buttons/previous-next-buttons.component.html +0 -26
- package/src/libs/ui/inputs/src/lib/previous-next-buttons/previous-next-buttons.component.ts +0 -32
- /package/src/libs/feature/editor/src/lib/components/record-form/form-field/{form-field-date-updated/form-field-date-updated.component.css → form-field-date/form-field-date.component.css} +0 -0
- /package/src/libs/feature/editor/src/lib/components/record-form/form-field/{form-field-date-updated/form-field-date-updated.component.html → form-field-date/form-field-date.component.html} +0 -0
- /package/src/libs/{ui/elements/src/lib/pagination-buttons/pagination-buttons.component.css → feature/editor/src/lib/components/record-form/form-field/form-field-spatial-toggle/form-field-spatial-toggle.component.css} +0 -0
- /package/src/libs/{ui/elements/src/lib/pagination/pagination.component.css → feature/record/src/lib/gpf-api-dl-list-item/gpf-api-dl-list-item.component.css} +0 -0
- /package/src/libs/ui/{inputs → layout}/src/lib/previous-next-buttons/previous-next-buttons.component.css +0 -0
|
@@ -1502,6 +1502,7 @@ export const elasticFullResponseFixture = () => ({
|
|
|
1502
1502
|
changeDate: '2021-10-05T12:48:57.678Z',
|
|
1503
1503
|
id: '11700',
|
|
1504
1504
|
createDate: '2021-10-05T12:48:57.678Z',
|
|
1505
|
+
publicationDate: '2021-11-05T12:48:57.678Z',
|
|
1505
1506
|
owner: '100',
|
|
1506
1507
|
groupOwner: '2',
|
|
1507
1508
|
logo: '/images/logos/81e8a591-7815-4d2f-a7da-5673192e74c9.png',
|
|
@@ -1587,6 +1588,1678 @@ export const elasticFullResponseFixture = () => ({
|
|
|
1587
1588
|
featured: false,
|
|
1588
1589
|
selected: false,
|
|
1589
1590
|
},
|
|
1591
|
+
{
|
|
1592
|
+
_index: 'gn-records',
|
|
1593
|
+
_type: '_doc',
|
|
1594
|
+
_id: '8698bf0b-fceb-4f0f-989b-111e7c4af0a4',
|
|
1595
|
+
_score: 1,
|
|
1596
|
+
_source: {
|
|
1597
|
+
docType: 'metadata',
|
|
1598
|
+
document: '',
|
|
1599
|
+
metadataIdentifier: '8698bf0b-fceb-4f0f-989b-111e7c4af0a4',
|
|
1600
|
+
standardNameObject: {
|
|
1601
|
+
default: 'GM03 2+',
|
|
1602
|
+
langger: 'GM03 2+',
|
|
1603
|
+
},
|
|
1604
|
+
indexingDate: '2024-09-20T09:36:48.937Z',
|
|
1605
|
+
dateStamp: '2022-12-16T16:15:36.615Z',
|
|
1606
|
+
mainLanguage: 'ger',
|
|
1607
|
+
otherLanguage: ['fre', 'ita', 'eng', 'roh', 'ger'],
|
|
1608
|
+
otherLanguageId: ['FR', 'IT', 'EN', 'RM', 'DE'],
|
|
1609
|
+
cl_characterSet: [
|
|
1610
|
+
{
|
|
1611
|
+
key: 'utf8',
|
|
1612
|
+
default: 'Utf8',
|
|
1613
|
+
langger: 'Utf8',
|
|
1614
|
+
langfre: 'Utf8',
|
|
1615
|
+
langita: 'UTF8',
|
|
1616
|
+
langeng: 'UTF8',
|
|
1617
|
+
langroh: 'utf8',
|
|
1618
|
+
link: 'http://standards.iso.org/ittf/PubliclyAvailableStandards/ISO_19139_Schemas/resources/codelist/ML_gmxCodelists.xml#MD_CharacterSetCode',
|
|
1619
|
+
},
|
|
1620
|
+
],
|
|
1621
|
+
resourceType: ['dataset'],
|
|
1622
|
+
OrgObject: {
|
|
1623
|
+
default: 'Bundesamt für Raumentwicklung',
|
|
1624
|
+
langger: 'Bundesamt für Raumentwicklung',
|
|
1625
|
+
langfre: 'Office fédéral du développement territorial',
|
|
1626
|
+
langita: 'Ufficio federale dello sviluppo territoriale',
|
|
1627
|
+
langeng: 'Federal Office for Spatial Development',
|
|
1628
|
+
langroh: 'Bundesamt für Raumentwicklung',
|
|
1629
|
+
},
|
|
1630
|
+
pointOfContactOrgObject: {
|
|
1631
|
+
default: 'Bundesamt für Raumentwicklung',
|
|
1632
|
+
langger: 'Bundesamt für Raumentwicklung',
|
|
1633
|
+
langfre: 'Office fédéral du développement territorial',
|
|
1634
|
+
langita: 'Ufficio federale dello sviluppo territoriale',
|
|
1635
|
+
langeng: 'Federal Office for Spatial Development',
|
|
1636
|
+
langroh: 'Bundesamt für Raumentwicklung',
|
|
1637
|
+
},
|
|
1638
|
+
contact: [
|
|
1639
|
+
{
|
|
1640
|
+
organisationObject: {
|
|
1641
|
+
default: 'Bundesamt für Raumentwicklung',
|
|
1642
|
+
langger: 'Bundesamt für Raumentwicklung',
|
|
1643
|
+
langfre: 'Office fédéral du développement territorial',
|
|
1644
|
+
langita: 'Ufficio federale dello sviluppo territoriale',
|
|
1645
|
+
langeng: 'Federal Office for Spatial Development',
|
|
1646
|
+
langroh: 'Bundesamt für Raumentwicklung',
|
|
1647
|
+
},
|
|
1648
|
+
role: 'pointOfContact',
|
|
1649
|
+
email: 'rolf.giezendanner@are.admin.ch',
|
|
1650
|
+
website: '',
|
|
1651
|
+
logo: '',
|
|
1652
|
+
individual: 'Rolf Giezendanner',
|
|
1653
|
+
position: '',
|
|
1654
|
+
phone: '',
|
|
1655
|
+
address: 'Ittigen, 3063, CH',
|
|
1656
|
+
},
|
|
1657
|
+
],
|
|
1658
|
+
cl_hierarchyLevel: [
|
|
1659
|
+
{
|
|
1660
|
+
key: 'dataset',
|
|
1661
|
+
default: 'Datenbestand',
|
|
1662
|
+
langger: 'Datenbestand',
|
|
1663
|
+
langfre: 'Jeu de données',
|
|
1664
|
+
langita: 'Dataset',
|
|
1665
|
+
langeng: 'Dataset',
|
|
1666
|
+
langroh: 'dataset',
|
|
1667
|
+
link: 'http://standards.iso.org/ittf/PubliclyAvailableStandards/ISO_19139_Schemas/resources/codelist/ML_gmxCodelists.xml#MD_ScopeCode',
|
|
1668
|
+
},
|
|
1669
|
+
],
|
|
1670
|
+
cl_geometricObjectType: [
|
|
1671
|
+
{
|
|
1672
|
+
key: 'surface',
|
|
1673
|
+
default: 'Fläche',
|
|
1674
|
+
langger: 'Fläche',
|
|
1675
|
+
langfre: 'Polygone',
|
|
1676
|
+
langita: 'Superficie',
|
|
1677
|
+
langeng: 'Surface',
|
|
1678
|
+
langroh: 'surface',
|
|
1679
|
+
link: 'http://standards.iso.org/ittf/PubliclyAvailableStandards/ISO_19139_Schemas/resources/codelist/ML_gmxCodelists.xml#MD_GeometricObjectTypeCode',
|
|
1680
|
+
},
|
|
1681
|
+
],
|
|
1682
|
+
cl_status: [
|
|
1683
|
+
{
|
|
1684
|
+
key: 'completed',
|
|
1685
|
+
default: 'Abgeschlossen',
|
|
1686
|
+
langger: 'Abgeschlossen',
|
|
1687
|
+
langfre: 'Finalisé',
|
|
1688
|
+
langita: 'Completato',
|
|
1689
|
+
langeng: 'Completed',
|
|
1690
|
+
langroh: 'completed',
|
|
1691
|
+
link: 'http://standards.iso.org/ittf/PubliclyAvailableStandards/ISO_19139_Schemas/resources/codelist/ML_gmxCodelists.xml#MD_ProgressCode',
|
|
1692
|
+
},
|
|
1693
|
+
],
|
|
1694
|
+
cl_maintenanceAndUpdateFrequency: [
|
|
1695
|
+
{
|
|
1696
|
+
key: 'asNeeded',
|
|
1697
|
+
default: 'Bei Bedarf',
|
|
1698
|
+
langger: 'Bei Bedarf',
|
|
1699
|
+
langfre: 'Lorsque nécessaire',
|
|
1700
|
+
langita: 'Secondo necessità',
|
|
1701
|
+
langeng: 'As needed',
|
|
1702
|
+
langroh: 'asNeeded',
|
|
1703
|
+
link: 'http://standards.iso.org/ittf/PubliclyAvailableStandards/ISO_19139_Schemas/resources/codelist/ML_gmxCodelists.xml#MD_MaintenanceFrequencyCode',
|
|
1704
|
+
},
|
|
1705
|
+
],
|
|
1706
|
+
cl_appraisalOfArchivalValue: [
|
|
1707
|
+
{
|
|
1708
|
+
key: 'A',
|
|
1709
|
+
default: 'archivwürdig',
|
|
1710
|
+
langger: 'archivwürdig',
|
|
1711
|
+
langfre: '(de) valeur archivistique',
|
|
1712
|
+
langita: 'of archival value',
|
|
1713
|
+
langeng: 'of archival value',
|
|
1714
|
+
langroh: 'A',
|
|
1715
|
+
link: '#CHE_AppraisalOfArchivalValueCode',
|
|
1716
|
+
},
|
|
1717
|
+
],
|
|
1718
|
+
cl_reasonForArchivingValue: [
|
|
1719
|
+
{
|
|
1720
|
+
key: 'evidenceOfBusinessPractice',
|
|
1721
|
+
default: 'Nachweis der Geschäftspraxis',
|
|
1722
|
+
langger: 'Nachweis der Geschäftspraxis',
|
|
1723
|
+
langfre: 'Preuve de la pratique courante',
|
|
1724
|
+
langita: 'Evidence of business practice',
|
|
1725
|
+
langeng: 'Evidence of business practice',
|
|
1726
|
+
langroh: 'evidenceOfBusinessPractice',
|
|
1727
|
+
link: '#CHE_ReasonForArchivingValueCode',
|
|
1728
|
+
},
|
|
1729
|
+
],
|
|
1730
|
+
cl_type: [
|
|
1731
|
+
{
|
|
1732
|
+
key: 'theme',
|
|
1733
|
+
default: 'Thema',
|
|
1734
|
+
langger: 'Thema',
|
|
1735
|
+
langfre: 'Thème',
|
|
1736
|
+
langita: 'Tema',
|
|
1737
|
+
langeng: 'Theme',
|
|
1738
|
+
langroh: 'theme',
|
|
1739
|
+
link: 'http://www.isotc211.org/2005/resources/codeList.xml#MD_KeywordTypeCode',
|
|
1740
|
+
},
|
|
1741
|
+
],
|
|
1742
|
+
cl_spatialRepresentationType: [
|
|
1743
|
+
{
|
|
1744
|
+
key: 'vector',
|
|
1745
|
+
default: 'Vektor',
|
|
1746
|
+
langger: 'Vektor',
|
|
1747
|
+
langfre: 'Vecteur',
|
|
1748
|
+
langita: 'Dati vettoriali',
|
|
1749
|
+
langeng: 'Vector',
|
|
1750
|
+
langroh: 'vector',
|
|
1751
|
+
link: 'http://standards.iso.org/ittf/PubliclyAvailableStandards/ISO_19139_Schemas/resources/codelist/ML_gmxCodelists.xml#MD_SpatialRepresentationTypeCode',
|
|
1752
|
+
},
|
|
1753
|
+
],
|
|
1754
|
+
cl_basicGeodataIDType: [
|
|
1755
|
+
{
|
|
1756
|
+
key: 'federal',
|
|
1757
|
+
default: 'Bund',
|
|
1758
|
+
langger: 'Bund',
|
|
1759
|
+
langfre: 'Fédéral',
|
|
1760
|
+
langita: 'Confederazione',
|
|
1761
|
+
langeng: 'Federal',
|
|
1762
|
+
langroh: 'federal',
|
|
1763
|
+
link: '#basicGeodataIDTypeCode',
|
|
1764
|
+
},
|
|
1765
|
+
],
|
|
1766
|
+
cl_modelType: [
|
|
1767
|
+
{
|
|
1768
|
+
key: 'INTERLIS2',
|
|
1769
|
+
default: 'INTERLIS 2',
|
|
1770
|
+
langger: 'INTERLIS 2',
|
|
1771
|
+
langfre: 'INTERLIS 2',
|
|
1772
|
+
langita: 'INTERLIS 2',
|
|
1773
|
+
langeng: 'INTERLIS 2',
|
|
1774
|
+
langroh: 'INTERLIS2',
|
|
1775
|
+
link: '#CHE_MD_modelTypeCode',
|
|
1776
|
+
},
|
|
1777
|
+
{
|
|
1778
|
+
key: 'INTERLIS1',
|
|
1779
|
+
default: 'INTERLIS 1',
|
|
1780
|
+
langger: 'INTERLIS 1',
|
|
1781
|
+
langfre: 'INTERLIS 1',
|
|
1782
|
+
langita: 'INTERLIS 1',
|
|
1783
|
+
langeng: 'INTERLIS 1',
|
|
1784
|
+
langroh: 'INTERLIS1',
|
|
1785
|
+
link: '#CHE_MD_modelTypeCode',
|
|
1786
|
+
},
|
|
1787
|
+
{
|
|
1788
|
+
key: 'UMLdiagram',
|
|
1789
|
+
default: 'UML-Diagramm',
|
|
1790
|
+
langger: 'UML-Diagramm',
|
|
1791
|
+
langfre: 'Diagramme UML',
|
|
1792
|
+
langita: 'Diagramma UML',
|
|
1793
|
+
langeng: 'UML diagram',
|
|
1794
|
+
langroh: 'UMLdiagram',
|
|
1795
|
+
link: '#CHE_MD_modelTypeCode',
|
|
1796
|
+
},
|
|
1797
|
+
{
|
|
1798
|
+
key: 'FeatureDescription',
|
|
1799
|
+
default: 'Objektbeschreibung',
|
|
1800
|
+
langger: 'Objektbeschreibung',
|
|
1801
|
+
langfre: 'Description des objets',
|
|
1802
|
+
langita: 'Descrizione di oggetto',
|
|
1803
|
+
langeng: 'Feature description',
|
|
1804
|
+
langroh: 'FeatureDescription',
|
|
1805
|
+
link: '#CHE_MD_modelTypeCode',
|
|
1806
|
+
},
|
|
1807
|
+
],
|
|
1808
|
+
cl_function: [
|
|
1809
|
+
{
|
|
1810
|
+
key: 'download',
|
|
1811
|
+
default: 'Download',
|
|
1812
|
+
langger: 'Download',
|
|
1813
|
+
langfre: 'Téléchargement',
|
|
1814
|
+
langita: 'Download',
|
|
1815
|
+
langeng: 'Download',
|
|
1816
|
+
langroh: 'download',
|
|
1817
|
+
link: 'http://standards.iso.org/ittf/PubliclyAvailableStandards/ISO_19139_Schemas/resources/codelist/ML_gmxCodelists.xml#CI_OnLineFunctionCode',
|
|
1818
|
+
},
|
|
1819
|
+
{
|
|
1820
|
+
key: 'information',
|
|
1821
|
+
default: 'Information',
|
|
1822
|
+
langger: 'Information',
|
|
1823
|
+
langfre: 'Information',
|
|
1824
|
+
langita: 'Informazioni',
|
|
1825
|
+
langeng: 'Information',
|
|
1826
|
+
langroh: 'information',
|
|
1827
|
+
link: 'http://standards.iso.org/ittf/PubliclyAvailableStandards/ISO_19139_Schemas/resources/codelist/ML_gmxCodelists.xml#CI_OnLineFunctionCode',
|
|
1828
|
+
},
|
|
1829
|
+
],
|
|
1830
|
+
cl_country: [
|
|
1831
|
+
{
|
|
1832
|
+
key: 'CH',
|
|
1833
|
+
default: 'Schweiz',
|
|
1834
|
+
langger: 'Schweiz',
|
|
1835
|
+
langfre: 'Suisse',
|
|
1836
|
+
langita: 'Svizzera',
|
|
1837
|
+
langeng: 'Switzerland',
|
|
1838
|
+
langroh: 'CH',
|
|
1839
|
+
link: 'http://standards.iso.org/ittf/PubliclyAvailableStandards/ISO_19139_Schemas/resources/codelist/ML_gmxCodelists.xml#Country',
|
|
1840
|
+
},
|
|
1841
|
+
],
|
|
1842
|
+
cl_legislationType: [
|
|
1843
|
+
{
|
|
1844
|
+
key: 'internationalObligation',
|
|
1845
|
+
default: 'internationales Abkommen',
|
|
1846
|
+
langger: 'internationales Abkommen',
|
|
1847
|
+
langfre: 'Obligation internationale',
|
|
1848
|
+
langita: 'Convenzione internazionale',
|
|
1849
|
+
langeng:
|
|
1850
|
+
'Convention, contract or other agreement on international level',
|
|
1851
|
+
langroh: 'internationalObligation',
|
|
1852
|
+
link: '#CHE_CI_LegislationCode',
|
|
1853
|
+
},
|
|
1854
|
+
{
|
|
1855
|
+
key: 'nationalDecree',
|
|
1856
|
+
default: 'nationale Verordnung',
|
|
1857
|
+
langger: 'nationale Verordnung',
|
|
1858
|
+
langfre: 'Ordonnance nationale',
|
|
1859
|
+
langita: 'Ordinanza federale',
|
|
1860
|
+
langeng: 'Other legal text on national level',
|
|
1861
|
+
langroh: 'nationalDecree',
|
|
1862
|
+
link: '#CHE_CI_LegislationCode',
|
|
1863
|
+
},
|
|
1864
|
+
],
|
|
1865
|
+
resourceTitleObject: {
|
|
1866
|
+
default: 'Alpenkonvention',
|
|
1867
|
+
langger: 'Alpenkonvention',
|
|
1868
|
+
langfre: 'Convention des Alpes',
|
|
1869
|
+
langita: 'Convenzione delle alpi',
|
|
1870
|
+
langeng: 'Alpine Convention',
|
|
1871
|
+
langroh: 'Convenziun da las Alps',
|
|
1872
|
+
},
|
|
1873
|
+
revisionDateForResource: ['2009-01-01T00:00:00.000Z'],
|
|
1874
|
+
revisionYearForResource: '2009',
|
|
1875
|
+
revisionMonthForResource: '2009-01',
|
|
1876
|
+
creationDateForResource: ['1999-01-01T00:00:00.000Z'],
|
|
1877
|
+
creationYearForResource: '1999',
|
|
1878
|
+
creationMonthForResource: '1999-01',
|
|
1879
|
+
resourceDate: [
|
|
1880
|
+
{
|
|
1881
|
+
type: 'revision',
|
|
1882
|
+
date: '2009-01-01T00:00:00.000Z',
|
|
1883
|
+
},
|
|
1884
|
+
{
|
|
1885
|
+
type: 'creation',
|
|
1886
|
+
date: '1999-01-01T00:00:00.000Z',
|
|
1887
|
+
},
|
|
1888
|
+
],
|
|
1889
|
+
resourceTemporalDateRange: [
|
|
1890
|
+
{
|
|
1891
|
+
gte: '2009-01-01T00:00:00.000Z',
|
|
1892
|
+
lte: '2009-01-01T00:00:00.000Z',
|
|
1893
|
+
},
|
|
1894
|
+
{
|
|
1895
|
+
gte: '1999-01-01T00:00:00.000Z',
|
|
1896
|
+
lte: '1999-01-01T00:00:00.000Z',
|
|
1897
|
+
},
|
|
1898
|
+
],
|
|
1899
|
+
resourceIdentifier: [
|
|
1900
|
+
{
|
|
1901
|
+
code: 'ch.are.alpenkonvention',
|
|
1902
|
+
codeSpace: '',
|
|
1903
|
+
link: '',
|
|
1904
|
+
},
|
|
1905
|
+
],
|
|
1906
|
+
resourceAbstractObject: {
|
|
1907
|
+
default:
|
|
1908
|
+
'Perimeter der Alpenkonvention in der Schweiz. Die Alpenkonvention ist ein völkerrechtlicher Vertrag zwischen den acht Alpenländern Deutschland, Frankreich, Italien, Liechtenstein, Monaco, Österreich, Schweiz, Slowenien sowie der Europäischen Union. Das Ziel des Übereinkommens ist der Schutz der Alpen durch eine sektorübergreifende, ganzheitliche und nachhaltige Politik.',
|
|
1909
|
+
langger:
|
|
1910
|
+
'Perimeter der Alpenkonvention in der Schweiz. Die Alpenkonvention ist ein völkerrechtlicher Vertrag zwischen den acht Alpenländern Deutschland, Frankreich, Italien, Liechtenstein, Monaco, Österreich, Schweiz, Slowenien sowie der Europäischen Union. Das Ziel des Übereinkommens ist der Schutz der Alpen durch eine sektorübergreifende, ganzheitliche und nachhaltige Politik.',
|
|
1911
|
+
langfre:
|
|
1912
|
+
'Périmètre de la Convention alpine en Suisse. La Convention alpine est un traité de droit international conclu par huit Etats alpins (Allemagne, Autriche, France, Italie, Liechtenstein, Monaco, Suisse, Slovénie) et l`Union européenne. L`accord vise à assurer la préservation et la protection des Alpes à travers une politique plurisectorielle, globale et durable.',
|
|
1913
|
+
langita:
|
|
1914
|
+
"Il perimetro della Convenzione delle Alpi. La Convenzione delle Alpi è un trattato internazionale tra gli otto Paesi alpini Germania, Francia, Italia, Liechtenstein, Monaco, Austria, Svizzera, Slovenia e l'Unione europea. Lo scopo della Convenzione è la conservazione e la protezione delle Alpi mediante una politica intersettoriale, globale e durevole.",
|
|
1915
|
+
langeng:
|
|
1916
|
+
'The perimeters of the Alpine Convention in Switzerland. The Alpine Convention is an international treaty between the eight Alpine countries: Germany, France, Italy, Liechtenstein, Monaco, Austria, Switzerland and Slovenia, plus the European Union. The aim of the treaty is to protect the Alps by means of cross-sectoral, integrated and sustainable policies.',
|
|
1917
|
+
langroh:
|
|
1918
|
+
"Perimeter da la Convenziun da las Alps en Svizra. La Convenziun da las Alps è in contract internaziunal tranter ils otg pajais alpins (Austria, Frantscha, Germania, Italia, Liechtenstein, Monaco, Slovenia, Svizra) e l'Uniun europeica. La convenziun ha la finamira da proteger las Alps cun agid d'ina politica intersecturiala, cumplessiva e duraivla.",
|
|
1919
|
+
},
|
|
1920
|
+
cl_resourceCharacterSet: [
|
|
1921
|
+
{
|
|
1922
|
+
key: 'utf8',
|
|
1923
|
+
default: 'Utf8',
|
|
1924
|
+
langger: 'Utf8',
|
|
1925
|
+
langfre: 'Utf8',
|
|
1926
|
+
langita: 'UTF8',
|
|
1927
|
+
langeng: 'UTF8',
|
|
1928
|
+
langroh: 'utf8',
|
|
1929
|
+
link: 'http://standards.iso.org/ittf/PubliclyAvailableStandards/ISO_19139_Schemas/resources/codelist/ML_gmxCodelists.xml#MD_CharacterSetCode',
|
|
1930
|
+
},
|
|
1931
|
+
],
|
|
1932
|
+
OrgForResourceObject: [
|
|
1933
|
+
{
|
|
1934
|
+
default: 'Bundesamt für Raumentwicklung',
|
|
1935
|
+
langger: 'Bundesamt für Raumentwicklung',
|
|
1936
|
+
langfre: 'Office fédéral du développement territorial',
|
|
1937
|
+
langita: 'Ufficio federale dello sviluppo territoriale',
|
|
1938
|
+
langeng: 'Federal Office for Spatial Development',
|
|
1939
|
+
langroh: 'Bundesamt für Raumentwicklung',
|
|
1940
|
+
},
|
|
1941
|
+
{
|
|
1942
|
+
default: 'Bundesamt für Raumentwicklung',
|
|
1943
|
+
langger: 'Bundesamt für Raumentwicklung',
|
|
1944
|
+
},
|
|
1945
|
+
],
|
|
1946
|
+
pointOfContactOrgForResourceObject: {
|
|
1947
|
+
default: 'Bundesamt für Raumentwicklung',
|
|
1948
|
+
langger: 'Bundesamt für Raumentwicklung',
|
|
1949
|
+
langfre: 'Office fédéral du développement territorial',
|
|
1950
|
+
langita: 'Ufficio federale dello sviluppo territoriale',
|
|
1951
|
+
langeng: 'Federal Office for Spatial Development',
|
|
1952
|
+
langroh: 'Bundesamt für Raumentwicklung',
|
|
1953
|
+
},
|
|
1954
|
+
contactForResource: [
|
|
1955
|
+
{
|
|
1956
|
+
organisationObject: {
|
|
1957
|
+
default: 'Bundesamt für Raumentwicklung',
|
|
1958
|
+
langger: 'Bundesamt für Raumentwicklung',
|
|
1959
|
+
langfre: 'Office fédéral du développement territorial',
|
|
1960
|
+
langita: 'Ufficio federale dello sviluppo territoriale',
|
|
1961
|
+
langeng: 'Federal Office for Spatial Development',
|
|
1962
|
+
langroh: 'Bundesamt für Raumentwicklung',
|
|
1963
|
+
},
|
|
1964
|
+
role: 'pointOfContact',
|
|
1965
|
+
email: 'rolf.giezendanner@are.admin.ch',
|
|
1966
|
+
website: '',
|
|
1967
|
+
logo: '',
|
|
1968
|
+
individual: 'Rolf Giezendanner',
|
|
1969
|
+
position: '',
|
|
1970
|
+
phone: '',
|
|
1971
|
+
address: 'Ittigen, 3063, CH',
|
|
1972
|
+
},
|
|
1973
|
+
{
|
|
1974
|
+
organisationObject: {
|
|
1975
|
+
default: 'Bundesamt für Raumentwicklung',
|
|
1976
|
+
langger: 'Bundesamt für Raumentwicklung',
|
|
1977
|
+
},
|
|
1978
|
+
role: 'owner',
|
|
1979
|
+
email: 'info@are.admin.ch',
|
|
1980
|
+
website: '',
|
|
1981
|
+
logo: '',
|
|
1982
|
+
individual: '',
|
|
1983
|
+
position: '',
|
|
1984
|
+
phone: '',
|
|
1985
|
+
address: '',
|
|
1986
|
+
},
|
|
1987
|
+
],
|
|
1988
|
+
ownerOrgForResourceObject: {
|
|
1989
|
+
default: 'Bundesamt für Raumentwicklung',
|
|
1990
|
+
langger: 'Bundesamt für Raumentwicklung',
|
|
1991
|
+
},
|
|
1992
|
+
hasOverview: 'false',
|
|
1993
|
+
resourceLanguage: ['ger', 'fre', 'ita'],
|
|
1994
|
+
inspireTheme_syn: ['Umweltüberwachung', 'Verwaltungseinheiten'],
|
|
1995
|
+
inspireTheme: [
|
|
1996
|
+
'environmental monitoring facilities',
|
|
1997
|
+
'administrative units',
|
|
1998
|
+
],
|
|
1999
|
+
inspireThemeFirst_syn: 'Umweltüberwachung',
|
|
2000
|
+
inspireThemeFirst: 'environmental monitoring facilities',
|
|
2001
|
+
inspireAnnexForFirstTheme: 'iii',
|
|
2002
|
+
inspireAnnex: ['iii', 'i'],
|
|
2003
|
+
inspireThemeUri: [
|
|
2004
|
+
'http://inspire.ec.europa.eu/theme/ef',
|
|
2005
|
+
'http://inspire.ec.europa.eu/theme/au',
|
|
2006
|
+
],
|
|
2007
|
+
inspireThemeNumber: '2',
|
|
2008
|
+
hasInspireTheme: 'true',
|
|
2009
|
+
tag: [
|
|
2010
|
+
{
|
|
2011
|
+
default: 'Umweltüberwachung',
|
|
2012
|
+
langger: 'Umweltüberwachung',
|
|
2013
|
+
langfre: 'Installations de suivi environnemental',
|
|
2014
|
+
langita: 'Impianti di monitoraggio ambientale',
|
|
2015
|
+
langeng: 'Environmental monitoring facilities',
|
|
2016
|
+
key: 'http://inspire.ec.europa.eu/theme/ef',
|
|
2017
|
+
},
|
|
2018
|
+
{
|
|
2019
|
+
default: 'Verwaltungseinheiten',
|
|
2020
|
+
langger: 'Verwaltungseinheiten',
|
|
2021
|
+
langfre: 'Unités administratives',
|
|
2022
|
+
langita: 'Unità amministrative',
|
|
2023
|
+
langeng: 'Administrative units',
|
|
2024
|
+
key: 'http://inspire.ec.europa.eu/theme/au',
|
|
2025
|
+
},
|
|
2026
|
+
{
|
|
2027
|
+
default: 'Nachhaltige Entwicklung',
|
|
2028
|
+
langger: 'Nachhaltige Entwicklung',
|
|
2029
|
+
langfre: 'développement durable',
|
|
2030
|
+
langita: 'sviluppo sostenibile',
|
|
2031
|
+
langeng: 'sustainable development',
|
|
2032
|
+
key: 'http://www.eionet.europa.eu/gemet/concept/8247',
|
|
2033
|
+
},
|
|
2034
|
+
{
|
|
2035
|
+
default: 'Raumplanung',
|
|
2036
|
+
langger: 'Raumplanung',
|
|
2037
|
+
langfre: "planification de l'espace physique",
|
|
2038
|
+
langita: 'pianificazione dello spazio fisico',
|
|
2039
|
+
langeng: 'physical planning',
|
|
2040
|
+
key: 'http://www.eionet.europa.eu/gemet/concept/6225',
|
|
2041
|
+
},
|
|
2042
|
+
{
|
|
2043
|
+
default: 'Bergschutz',
|
|
2044
|
+
langger: 'Bergschutz',
|
|
2045
|
+
langfre: 'protection de la montagne',
|
|
2046
|
+
langita: 'protezione della montagna',
|
|
2047
|
+
langeng: 'mountain protection',
|
|
2048
|
+
key: 'http://www.eionet.europa.eu/gemet/concept/10236',
|
|
2049
|
+
},
|
|
2050
|
+
{
|
|
2051
|
+
default: 'Bodenschutz',
|
|
2052
|
+
langger: 'Bodenschutz',
|
|
2053
|
+
langfre: 'conservation du sol',
|
|
2054
|
+
langita: 'conservazione del suolo',
|
|
2055
|
+
langeng: 'soil conservation',
|
|
2056
|
+
key: 'http://www.eionet.europa.eu/gemet/concept/7852',
|
|
2057
|
+
},
|
|
2058
|
+
{
|
|
2059
|
+
default: 'Umweltpolitik',
|
|
2060
|
+
langger: 'Umweltpolitik',
|
|
2061
|
+
langfre: 'politique environnementale',
|
|
2062
|
+
langita: 'politica ambientale',
|
|
2063
|
+
langeng: 'environmental policy',
|
|
2064
|
+
key: 'http://www.eionet.europa.eu/gemet/theme/11',
|
|
2065
|
+
},
|
|
2066
|
+
{
|
|
2067
|
+
default: 'Umweltpolitik',
|
|
2068
|
+
langger: 'Umweltpolitik',
|
|
2069
|
+
langfre: 'politique environnementale',
|
|
2070
|
+
langita: 'politica ambientale',
|
|
2071
|
+
langeng: 'environmental policy',
|
|
2072
|
+
key: 'http://www.eionet.europa.eu/gemet/theme/11',
|
|
2073
|
+
},
|
|
2074
|
+
{
|
|
2075
|
+
default: 'Verkehr',
|
|
2076
|
+
langger: 'Verkehr',
|
|
2077
|
+
langfre: 'transport',
|
|
2078
|
+
langita: 'trasporti',
|
|
2079
|
+
langeng: 'transport',
|
|
2080
|
+
key: 'http://www.eionet.europa.eu/gemet/theme/37',
|
|
2081
|
+
},
|
|
2082
|
+
{
|
|
2083
|
+
default: 'Verkehr',
|
|
2084
|
+
langger: 'Verkehr',
|
|
2085
|
+
langfre: 'transport',
|
|
2086
|
+
langita: 'trasporti',
|
|
2087
|
+
langeng: 'transport',
|
|
2088
|
+
key: 'http://www.eionet.europa.eu/gemet/theme/37',
|
|
2089
|
+
},
|
|
2090
|
+
{
|
|
2091
|
+
default: 'Verkehr',
|
|
2092
|
+
langger: 'Verkehr',
|
|
2093
|
+
langfre: 'transport',
|
|
2094
|
+
langita: 'trasporti',
|
|
2095
|
+
langeng: 'transport',
|
|
2096
|
+
key: 'http://www.eionet.europa.eu/gemet/theme/37',
|
|
2097
|
+
},
|
|
2098
|
+
{
|
|
2099
|
+
default: 'Aufbewahrungs- und Archivierungsplanung AAP - Bund',
|
|
2100
|
+
langger: 'Aufbewahrungs- und Archivierungsplanung AAP - Bund',
|
|
2101
|
+
langfre:
|
|
2102
|
+
"Planification de la conservation et de l'archivage AAP - Conféderation",
|
|
2103
|
+
langita:
|
|
2104
|
+
'Pianificazione della conservazione e dell’archiviazione AAP - Confederazione',
|
|
2105
|
+
langeng:
|
|
2106
|
+
'Conservation and archiving planning AAP - Confederation',
|
|
2107
|
+
key: 'http://geocat.ch/concept#94202915-c2c1-44fd-a106-71488110e399',
|
|
2108
|
+
},
|
|
2109
|
+
{
|
|
2110
|
+
default: 'opendata.swiss',
|
|
2111
|
+
langger: 'opendata.swiss',
|
|
2112
|
+
langfre: 'opendata.swiss',
|
|
2113
|
+
langita: 'opendata.swiss',
|
|
2114
|
+
langeng: 'opendata.swiss',
|
|
2115
|
+
langroh: 'opendata.swiss',
|
|
2116
|
+
key: 'http://geocat.ch/concept#e6485c01-fe69-485e-b194-035f682463db',
|
|
2117
|
+
},
|
|
2118
|
+
{
|
|
2119
|
+
default: 'Geobasisdaten',
|
|
2120
|
+
langger: 'Geobasisdaten',
|
|
2121
|
+
langfre: 'géodonnées de base',
|
|
2122
|
+
langita: 'geodati di base',
|
|
2123
|
+
langeng: 'official geodata',
|
|
2124
|
+
key: 'http://custom.shared.obj.ch/concept#ab642d3d-d74f-400c-bb01-81c6dde26247',
|
|
2125
|
+
},
|
|
2126
|
+
{
|
|
2127
|
+
default: 'e-geo.ch',
|
|
2128
|
+
langger: 'e-geo.ch',
|
|
2129
|
+
langfre: 'e-geo.ch',
|
|
2130
|
+
langita: 'e-geo.ch',
|
|
2131
|
+
langeng: 'e-geo.ch',
|
|
2132
|
+
key: 'http://custom.shared.obj.ch/concept#948082ad-0adf-4d3c-8c4f-685f9d4d9372',
|
|
2133
|
+
},
|
|
2134
|
+
{
|
|
2135
|
+
default: 'BGDI Bundesgeodaten-Infrastruktur',
|
|
2136
|
+
langger: 'BGDI Bundesgeodaten-Infrastruktur',
|
|
2137
|
+
langfre:
|
|
2138
|
+
'IFDG l’Infrastructure Fédérale de données géographiques',
|
|
2139
|
+
langita: 'IFDG Infrastruttura federale dei dati geografici',
|
|
2140
|
+
langeng: 'FSDI Federal Spatial Data Infrastructure',
|
|
2141
|
+
key: 'http://custom.shared.obj.ch/concept#ae677a16-f81a-4533-9243-a87831115079',
|
|
2142
|
+
},
|
|
2143
|
+
],
|
|
2144
|
+
tagNumber: '16',
|
|
2145
|
+
isOpenData: 'true',
|
|
2146
|
+
'keywordType-theme': [
|
|
2147
|
+
{
|
|
2148
|
+
default: 'Umweltüberwachung',
|
|
2149
|
+
langger: 'Umweltüberwachung',
|
|
2150
|
+
langfre: 'Installations de suivi environnemental',
|
|
2151
|
+
langita: 'Impianti di monitoraggio ambientale',
|
|
2152
|
+
langeng: 'Environmental monitoring facilities',
|
|
2153
|
+
link: 'http://inspire.ec.europa.eu/theme/ef',
|
|
2154
|
+
},
|
|
2155
|
+
{
|
|
2156
|
+
default: 'Verwaltungseinheiten',
|
|
2157
|
+
langger: 'Verwaltungseinheiten',
|
|
2158
|
+
langfre: 'Unités administratives',
|
|
2159
|
+
langita: 'Unità amministrative',
|
|
2160
|
+
langeng: 'Administrative units',
|
|
2161
|
+
link: 'http://inspire.ec.europa.eu/theme/au',
|
|
2162
|
+
},
|
|
2163
|
+
{
|
|
2164
|
+
default: 'Nachhaltige Entwicklung',
|
|
2165
|
+
langger: 'Nachhaltige Entwicklung',
|
|
2166
|
+
langfre: 'développement durable',
|
|
2167
|
+
langita: 'sviluppo sostenibile',
|
|
2168
|
+
langeng: 'sustainable development',
|
|
2169
|
+
link: 'http://www.eionet.europa.eu/gemet/concept/8247',
|
|
2170
|
+
},
|
|
2171
|
+
{
|
|
2172
|
+
default: 'Raumplanung',
|
|
2173
|
+
langger: 'Raumplanung',
|
|
2174
|
+
langfre: "planification de l'espace physique",
|
|
2175
|
+
langita: 'pianificazione dello spazio fisico',
|
|
2176
|
+
langeng: 'physical planning',
|
|
2177
|
+
link: 'http://www.eionet.europa.eu/gemet/concept/6225',
|
|
2178
|
+
},
|
|
2179
|
+
{
|
|
2180
|
+
default: 'Bergschutz',
|
|
2181
|
+
langger: 'Bergschutz',
|
|
2182
|
+
langfre: 'protection de la montagne',
|
|
2183
|
+
langita: 'protezione della montagna',
|
|
2184
|
+
langeng: 'mountain protection',
|
|
2185
|
+
link: 'http://www.eionet.europa.eu/gemet/concept/10236',
|
|
2186
|
+
},
|
|
2187
|
+
{
|
|
2188
|
+
default: 'Bodenschutz',
|
|
2189
|
+
langger: 'Bodenschutz',
|
|
2190
|
+
langfre: 'conservation du sol',
|
|
2191
|
+
langita: 'conservazione del suolo',
|
|
2192
|
+
langeng: 'soil conservation',
|
|
2193
|
+
link: 'http://www.eionet.europa.eu/gemet/concept/7852',
|
|
2194
|
+
},
|
|
2195
|
+
{
|
|
2196
|
+
default: 'Umweltpolitik',
|
|
2197
|
+
langger: 'Umweltpolitik',
|
|
2198
|
+
langfre: 'politique environnementale',
|
|
2199
|
+
langita: 'politica ambientale',
|
|
2200
|
+
langeng: 'environmental policy',
|
|
2201
|
+
link: 'http://www.eionet.europa.eu/gemet/theme/11',
|
|
2202
|
+
},
|
|
2203
|
+
{
|
|
2204
|
+
default: 'Umweltpolitik',
|
|
2205
|
+
langger: 'Umweltpolitik',
|
|
2206
|
+
langfre: 'politique environnementale',
|
|
2207
|
+
langita: 'politica ambientale',
|
|
2208
|
+
langeng: 'environmental policy',
|
|
2209
|
+
link: 'http://www.eionet.europa.eu/gemet/theme/11',
|
|
2210
|
+
},
|
|
2211
|
+
{
|
|
2212
|
+
default: 'Verkehr',
|
|
2213
|
+
langger: 'Verkehr',
|
|
2214
|
+
langfre: 'transport',
|
|
2215
|
+
langita: 'trasporti',
|
|
2216
|
+
langeng: 'transport',
|
|
2217
|
+
link: 'http://www.eionet.europa.eu/gemet/theme/37',
|
|
2218
|
+
},
|
|
2219
|
+
{
|
|
2220
|
+
default: 'Verkehr',
|
|
2221
|
+
langger: 'Verkehr',
|
|
2222
|
+
langfre: 'transport',
|
|
2223
|
+
langita: 'trasporti',
|
|
2224
|
+
langeng: 'transport',
|
|
2225
|
+
link: 'http://www.eionet.europa.eu/gemet/theme/37',
|
|
2226
|
+
},
|
|
2227
|
+
{
|
|
2228
|
+
default: 'Verkehr',
|
|
2229
|
+
langger: 'Verkehr',
|
|
2230
|
+
langfre: 'transport',
|
|
2231
|
+
langita: 'trasporti',
|
|
2232
|
+
langeng: 'transport',
|
|
2233
|
+
link: 'http://www.eionet.europa.eu/gemet/theme/37',
|
|
2234
|
+
},
|
|
2235
|
+
{
|
|
2236
|
+
default: 'Aufbewahrungs- und Archivierungsplanung AAP - Bund',
|
|
2237
|
+
langger: 'Aufbewahrungs- und Archivierungsplanung AAP - Bund',
|
|
2238
|
+
langfre:
|
|
2239
|
+
"Planification de la conservation et de l'archivage AAP - Conféderation",
|
|
2240
|
+
langita:
|
|
2241
|
+
'Pianificazione della conservazione e dell’archiviazione AAP - Confederazione',
|
|
2242
|
+
langeng:
|
|
2243
|
+
'Conservation and archiving planning AAP - Confederation',
|
|
2244
|
+
link: 'http://geocat.ch/concept#94202915-c2c1-44fd-a106-71488110e399',
|
|
2245
|
+
},
|
|
2246
|
+
{
|
|
2247
|
+
default: 'opendata.swiss',
|
|
2248
|
+
langger: 'opendata.swiss',
|
|
2249
|
+
langfre: 'opendata.swiss',
|
|
2250
|
+
langita: 'opendata.swiss',
|
|
2251
|
+
langeng: 'opendata.swiss',
|
|
2252
|
+
langroh: 'opendata.swiss',
|
|
2253
|
+
link: 'http://geocat.ch/concept#e6485c01-fe69-485e-b194-035f682463db',
|
|
2254
|
+
},
|
|
2255
|
+
{
|
|
2256
|
+
default: 'Geobasisdaten',
|
|
2257
|
+
langger: 'Geobasisdaten',
|
|
2258
|
+
langfre: 'géodonnées de base',
|
|
2259
|
+
langita: 'geodati di base',
|
|
2260
|
+
langeng: 'official geodata',
|
|
2261
|
+
link: 'http://custom.shared.obj.ch/concept#ab642d3d-d74f-400c-bb01-81c6dde26247',
|
|
2262
|
+
},
|
|
2263
|
+
{
|
|
2264
|
+
default: 'e-geo.ch',
|
|
2265
|
+
langger: 'e-geo.ch',
|
|
2266
|
+
langfre: 'e-geo.ch',
|
|
2267
|
+
langita: 'e-geo.ch',
|
|
2268
|
+
langeng: 'e-geo.ch',
|
|
2269
|
+
link: 'http://custom.shared.obj.ch/concept#948082ad-0adf-4d3c-8c4f-685f9d4d9372',
|
|
2270
|
+
},
|
|
2271
|
+
{
|
|
2272
|
+
default: 'BGDI Bundesgeodaten-Infrastruktur',
|
|
2273
|
+
langger: 'BGDI Bundesgeodaten-Infrastruktur',
|
|
2274
|
+
langfre:
|
|
2275
|
+
'IFDG l’Infrastructure Fédérale de données géographiques',
|
|
2276
|
+
langita: 'IFDG Infrastruttura federale dei dati geografici',
|
|
2277
|
+
langeng: 'FSDI Federal Spatial Data Infrastructure',
|
|
2278
|
+
link: 'http://custom.shared.obj.ch/concept#ae677a16-f81a-4533-9243-a87831115079',
|
|
2279
|
+
},
|
|
2280
|
+
],
|
|
2281
|
+
'th_httpinspireeceuropaeutheme-themeNumber': '2',
|
|
2282
|
+
'th_httpinspireeceuropaeutheme-theme': [
|
|
2283
|
+
{
|
|
2284
|
+
default: 'Umweltüberwachung',
|
|
2285
|
+
langger: 'Umweltüberwachung',
|
|
2286
|
+
langfre: 'Installations de suivi environnemental',
|
|
2287
|
+
langita: 'Impianti di monitoraggio ambientale',
|
|
2288
|
+
langeng: 'Environmental monitoring facilities',
|
|
2289
|
+
link: 'http://inspire.ec.europa.eu/theme/ef',
|
|
2290
|
+
},
|
|
2291
|
+
{
|
|
2292
|
+
default: 'Verwaltungseinheiten',
|
|
2293
|
+
langger: 'Verwaltungseinheiten',
|
|
2294
|
+
langfre: 'Unités administratives',
|
|
2295
|
+
langita: 'Unità amministrative',
|
|
2296
|
+
langeng: 'Administrative units',
|
|
2297
|
+
link: 'http://inspire.ec.europa.eu/theme/au',
|
|
2298
|
+
},
|
|
2299
|
+
],
|
|
2300
|
+
th_gemetNumber: '9',
|
|
2301
|
+
th_gemet: [
|
|
2302
|
+
{
|
|
2303
|
+
default: 'Nachhaltige Entwicklung',
|
|
2304
|
+
langger: 'Nachhaltige Entwicklung',
|
|
2305
|
+
langfre: 'développement durable',
|
|
2306
|
+
langita: 'sviluppo sostenibile',
|
|
2307
|
+
langeng: 'sustainable development',
|
|
2308
|
+
link: 'http://www.eionet.europa.eu/gemet/concept/8247',
|
|
2309
|
+
},
|
|
2310
|
+
{
|
|
2311
|
+
default: 'Raumplanung',
|
|
2312
|
+
langger: 'Raumplanung',
|
|
2313
|
+
langfre: "planification de l'espace physique",
|
|
2314
|
+
langita: 'pianificazione dello spazio fisico',
|
|
2315
|
+
langeng: 'physical planning',
|
|
2316
|
+
link: 'http://www.eionet.europa.eu/gemet/concept/6225',
|
|
2317
|
+
},
|
|
2318
|
+
{
|
|
2319
|
+
default: 'Bergschutz',
|
|
2320
|
+
langger: 'Bergschutz',
|
|
2321
|
+
langfre: 'protection de la montagne',
|
|
2322
|
+
langita: 'protezione della montagna',
|
|
2323
|
+
langeng: 'mountain protection',
|
|
2324
|
+
link: 'http://www.eionet.europa.eu/gemet/concept/10236',
|
|
2325
|
+
},
|
|
2326
|
+
{
|
|
2327
|
+
default: 'Bodenschutz',
|
|
2328
|
+
langger: 'Bodenschutz',
|
|
2329
|
+
langfre: 'conservation du sol',
|
|
2330
|
+
langita: 'conservazione del suolo',
|
|
2331
|
+
langeng: 'soil conservation',
|
|
2332
|
+
link: 'http://www.eionet.europa.eu/gemet/concept/7852',
|
|
2333
|
+
},
|
|
2334
|
+
{
|
|
2335
|
+
default: 'Umweltpolitik',
|
|
2336
|
+
langger: 'Umweltpolitik',
|
|
2337
|
+
langfre: 'politique environnementale',
|
|
2338
|
+
langita: 'politica ambientale',
|
|
2339
|
+
langeng: 'environmental policy',
|
|
2340
|
+
link: 'http://www.eionet.europa.eu/gemet/theme/11',
|
|
2341
|
+
},
|
|
2342
|
+
{
|
|
2343
|
+
default: 'Umweltpolitik',
|
|
2344
|
+
langger: 'Umweltpolitik',
|
|
2345
|
+
langfre: 'politique environnementale',
|
|
2346
|
+
langita: 'politica ambientale',
|
|
2347
|
+
langeng: 'environmental policy',
|
|
2348
|
+
link: 'http://www.eionet.europa.eu/gemet/theme/11',
|
|
2349
|
+
},
|
|
2350
|
+
{
|
|
2351
|
+
default: 'Verkehr',
|
|
2352
|
+
langger: 'Verkehr',
|
|
2353
|
+
langfre: 'transport',
|
|
2354
|
+
langita: 'trasporti',
|
|
2355
|
+
langeng: 'transport',
|
|
2356
|
+
link: 'http://www.eionet.europa.eu/gemet/theme/37',
|
|
2357
|
+
},
|
|
2358
|
+
{
|
|
2359
|
+
default: 'Verkehr',
|
|
2360
|
+
langger: 'Verkehr',
|
|
2361
|
+
langfre: 'transport',
|
|
2362
|
+
langita: 'trasporti',
|
|
2363
|
+
langeng: 'transport',
|
|
2364
|
+
link: 'http://www.eionet.europa.eu/gemet/theme/37',
|
|
2365
|
+
},
|
|
2366
|
+
{
|
|
2367
|
+
default: 'Verkehr',
|
|
2368
|
+
langger: 'Verkehr',
|
|
2369
|
+
langfre: 'transport',
|
|
2370
|
+
langita: 'trasporti',
|
|
2371
|
+
langeng: 'transport',
|
|
2372
|
+
link: 'http://www.eionet.europa.eu/gemet/theme/37',
|
|
2373
|
+
},
|
|
2374
|
+
],
|
|
2375
|
+
'th_geocat-chNumber': '5',
|
|
2376
|
+
'th_geocat-ch': [
|
|
2377
|
+
{
|
|
2378
|
+
default: 'Aufbewahrungs- und Archivierungsplanung AAP - Bund',
|
|
2379
|
+
langger: 'Aufbewahrungs- und Archivierungsplanung AAP - Bund',
|
|
2380
|
+
langfre:
|
|
2381
|
+
"Planification de la conservation et de l'archivage AAP - Conféderation",
|
|
2382
|
+
langita:
|
|
2383
|
+
'Pianificazione della conservazione e dell’archiviazione AAP - Confederazione',
|
|
2384
|
+
langeng:
|
|
2385
|
+
'Conservation and archiving planning AAP - Confederation',
|
|
2386
|
+
link: 'http://geocat.ch/concept#94202915-c2c1-44fd-a106-71488110e399',
|
|
2387
|
+
},
|
|
2388
|
+
{
|
|
2389
|
+
default: 'opendata.swiss',
|
|
2390
|
+
langger: 'opendata.swiss',
|
|
2391
|
+
langfre: 'opendata.swiss',
|
|
2392
|
+
langita: 'opendata.swiss',
|
|
2393
|
+
langeng: 'opendata.swiss',
|
|
2394
|
+
langroh: 'opendata.swiss',
|
|
2395
|
+
link: 'http://geocat.ch/concept#e6485c01-fe69-485e-b194-035f682463db',
|
|
2396
|
+
},
|
|
2397
|
+
{
|
|
2398
|
+
default: 'Geobasisdaten',
|
|
2399
|
+
langger: 'Geobasisdaten',
|
|
2400
|
+
langfre: 'géodonnées de base',
|
|
2401
|
+
langita: 'geodati di base',
|
|
2402
|
+
langeng: 'official geodata',
|
|
2403
|
+
link: 'http://custom.shared.obj.ch/concept#ab642d3d-d74f-400c-bb01-81c6dde26247',
|
|
2404
|
+
},
|
|
2405
|
+
{
|
|
2406
|
+
default: 'e-geo.ch',
|
|
2407
|
+
langger: 'e-geo.ch',
|
|
2408
|
+
langfre: 'e-geo.ch',
|
|
2409
|
+
langita: 'e-geo.ch',
|
|
2410
|
+
langeng: 'e-geo.ch',
|
|
2411
|
+
link: 'http://custom.shared.obj.ch/concept#948082ad-0adf-4d3c-8c4f-685f9d4d9372',
|
|
2412
|
+
},
|
|
2413
|
+
{
|
|
2414
|
+
default: 'BGDI Bundesgeodaten-Infrastruktur',
|
|
2415
|
+
langger: 'BGDI Bundesgeodaten-Infrastruktur',
|
|
2416
|
+
langfre:
|
|
2417
|
+
'IFDG l’Infrastructure Fédérale de données géographiques',
|
|
2418
|
+
langita: 'IFDG Infrastruttura federale dei dati geografici',
|
|
2419
|
+
langeng: 'FSDI Federal Spatial Data Infrastructure',
|
|
2420
|
+
link: 'http://custom.shared.obj.ch/concept#ae677a16-f81a-4533-9243-a87831115079',
|
|
2421
|
+
},
|
|
2422
|
+
],
|
|
2423
|
+
allKeywords: {
|
|
2424
|
+
'th_httpinspireeceuropaeutheme-theme': {
|
|
2425
|
+
id: 'geonetwork.thesaurus.external.theme.httpinspireeceuropaeutheme-theme',
|
|
2426
|
+
title: 'GEMET - INSPIRE themes, version 1.0',
|
|
2427
|
+
theme: 'theme',
|
|
2428
|
+
link: 'https://www.geocat.ch/geonetwork/srv/api/registries/vocabularies/external.theme.httpinspireeceuropaeutheme-theme',
|
|
2429
|
+
keywords: [
|
|
2430
|
+
{
|
|
2431
|
+
default: 'Umweltüberwachung',
|
|
2432
|
+
langger: 'Umweltüberwachung',
|
|
2433
|
+
langfre: 'Installations de suivi environnemental',
|
|
2434
|
+
langita: 'Impianti di monitoraggio ambientale',
|
|
2435
|
+
langeng: 'Environmental monitoring facilities',
|
|
2436
|
+
link: 'http://inspire.ec.europa.eu/theme/ef',
|
|
2437
|
+
},
|
|
2438
|
+
{
|
|
2439
|
+
default: 'Verwaltungseinheiten',
|
|
2440
|
+
langger: 'Verwaltungseinheiten',
|
|
2441
|
+
langfre: 'Unités administratives',
|
|
2442
|
+
langita: 'Unità amministrative',
|
|
2443
|
+
langeng: 'Administrative units',
|
|
2444
|
+
link: 'http://inspire.ec.europa.eu/theme/au',
|
|
2445
|
+
},
|
|
2446
|
+
],
|
|
2447
|
+
},
|
|
2448
|
+
th_gemet: {
|
|
2449
|
+
id: 'geonetwork.thesaurus.external.theme.gemet',
|
|
2450
|
+
title: 'GEMET',
|
|
2451
|
+
theme: 'theme',
|
|
2452
|
+
link: 'https://www.geocat.ch/geonetwork/srv/api/registries/vocabularies/external.theme.gemet',
|
|
2453
|
+
keywords: [
|
|
2454
|
+
{
|
|
2455
|
+
default: 'Nachhaltige Entwicklung',
|
|
2456
|
+
langger: 'Nachhaltige Entwicklung',
|
|
2457
|
+
langfre: 'développement durable',
|
|
2458
|
+
langita: 'sviluppo sostenibile',
|
|
2459
|
+
langeng: 'sustainable development',
|
|
2460
|
+
link: 'http://www.eionet.europa.eu/gemet/concept/8247',
|
|
2461
|
+
},
|
|
2462
|
+
{
|
|
2463
|
+
default: 'Raumplanung',
|
|
2464
|
+
langger: 'Raumplanung',
|
|
2465
|
+
langfre: "planification de l'espace physique",
|
|
2466
|
+
langita: 'pianificazione dello spazio fisico',
|
|
2467
|
+
langeng: 'physical planning',
|
|
2468
|
+
link: 'http://www.eionet.europa.eu/gemet/concept/6225',
|
|
2469
|
+
},
|
|
2470
|
+
{
|
|
2471
|
+
default: 'Bergschutz',
|
|
2472
|
+
langger: 'Bergschutz',
|
|
2473
|
+
langfre: 'protection de la montagne',
|
|
2474
|
+
langita: 'protezione della montagna',
|
|
2475
|
+
langeng: 'mountain protection',
|
|
2476
|
+
link: 'http://www.eionet.europa.eu/gemet/concept/10236',
|
|
2477
|
+
},
|
|
2478
|
+
{
|
|
2479
|
+
default: 'Bodenschutz',
|
|
2480
|
+
langger: 'Bodenschutz',
|
|
2481
|
+
langfre: 'conservation du sol',
|
|
2482
|
+
langita: 'conservazione del suolo',
|
|
2483
|
+
langeng: 'soil conservation',
|
|
2484
|
+
link: 'http://www.eionet.europa.eu/gemet/concept/7852',
|
|
2485
|
+
},
|
|
2486
|
+
{
|
|
2487
|
+
default: 'Umweltpolitik',
|
|
2488
|
+
langger: 'Umweltpolitik',
|
|
2489
|
+
langfre: 'politique environnementale',
|
|
2490
|
+
langita: 'politica ambientale',
|
|
2491
|
+
langeng: 'environmental policy',
|
|
2492
|
+
link: 'http://www.eionet.europa.eu/gemet/theme/11',
|
|
2493
|
+
},
|
|
2494
|
+
{
|
|
2495
|
+
default: 'Umweltpolitik',
|
|
2496
|
+
langger: 'Umweltpolitik',
|
|
2497
|
+
langfre: 'politique environnementale',
|
|
2498
|
+
langita: 'politica ambientale',
|
|
2499
|
+
langeng: 'environmental policy',
|
|
2500
|
+
link: 'http://www.eionet.europa.eu/gemet/theme/11',
|
|
2501
|
+
},
|
|
2502
|
+
{
|
|
2503
|
+
default: 'Verkehr',
|
|
2504
|
+
langger: 'Verkehr',
|
|
2505
|
+
langfre: 'transport',
|
|
2506
|
+
langita: 'trasporti',
|
|
2507
|
+
langeng: 'transport',
|
|
2508
|
+
link: 'http://www.eionet.europa.eu/gemet/theme/37',
|
|
2509
|
+
},
|
|
2510
|
+
{
|
|
2511
|
+
default: 'Verkehr',
|
|
2512
|
+
langger: 'Verkehr',
|
|
2513
|
+
langfre: 'transport',
|
|
2514
|
+
langita: 'trasporti',
|
|
2515
|
+
langeng: 'transport',
|
|
2516
|
+
link: 'http://www.eionet.europa.eu/gemet/theme/37',
|
|
2517
|
+
},
|
|
2518
|
+
{
|
|
2519
|
+
default: 'Verkehr',
|
|
2520
|
+
langger: 'Verkehr',
|
|
2521
|
+
langfre: 'transport',
|
|
2522
|
+
langita: 'trasporti',
|
|
2523
|
+
langeng: 'transport',
|
|
2524
|
+
link: 'http://www.eionet.europa.eu/gemet/theme/37',
|
|
2525
|
+
},
|
|
2526
|
+
],
|
|
2527
|
+
},
|
|
2528
|
+
'th_geocat-ch': {
|
|
2529
|
+
id: 'geonetwork.thesaurus.local.theme.geocat.ch',
|
|
2530
|
+
title: 'geocat.ch',
|
|
2531
|
+
theme: 'theme',
|
|
2532
|
+
link: 'https://www.geocat.ch/geonetwork/srv/api/registries/vocabularies/local.theme.geocat.ch',
|
|
2533
|
+
keywords: [
|
|
2534
|
+
{
|
|
2535
|
+
default: 'Aufbewahrungs- und Archivierungsplanung AAP - Bund',
|
|
2536
|
+
langger: 'Aufbewahrungs- und Archivierungsplanung AAP - Bund',
|
|
2537
|
+
langfre:
|
|
2538
|
+
"Planification de la conservation et de l'archivage AAP - Conféderation",
|
|
2539
|
+
langita:
|
|
2540
|
+
'Pianificazione della conservazione e dell’archiviazione AAP - Confederazione',
|
|
2541
|
+
langeng:
|
|
2542
|
+
'Conservation and archiving planning AAP - Confederation',
|
|
2543
|
+
link: 'http://geocat.ch/concept#94202915-c2c1-44fd-a106-71488110e399',
|
|
2544
|
+
},
|
|
2545
|
+
{
|
|
2546
|
+
default: 'opendata.swiss',
|
|
2547
|
+
langger: 'opendata.swiss',
|
|
2548
|
+
langfre: 'opendata.swiss',
|
|
2549
|
+
langita: 'opendata.swiss',
|
|
2550
|
+
langeng: 'opendata.swiss',
|
|
2551
|
+
langroh: 'opendata.swiss',
|
|
2552
|
+
link: 'http://geocat.ch/concept#e6485c01-fe69-485e-b194-035f682463db',
|
|
2553
|
+
},
|
|
2554
|
+
{
|
|
2555
|
+
default: 'Geobasisdaten',
|
|
2556
|
+
langger: 'Geobasisdaten',
|
|
2557
|
+
langfre: 'géodonnées de base',
|
|
2558
|
+
langita: 'geodati di base',
|
|
2559
|
+
langeng: 'official geodata',
|
|
2560
|
+
link: 'http://custom.shared.obj.ch/concept#ab642d3d-d74f-400c-bb01-81c6dde26247',
|
|
2561
|
+
},
|
|
2562
|
+
{
|
|
2563
|
+
default: 'e-geo.ch',
|
|
2564
|
+
langger: 'e-geo.ch',
|
|
2565
|
+
langfre: 'e-geo.ch',
|
|
2566
|
+
langita: 'e-geo.ch',
|
|
2567
|
+
langeng: 'e-geo.ch',
|
|
2568
|
+
link: 'http://custom.shared.obj.ch/concept#948082ad-0adf-4d3c-8c4f-685f9d4d9372',
|
|
2569
|
+
},
|
|
2570
|
+
{
|
|
2571
|
+
default: 'BGDI Bundesgeodaten-Infrastruktur',
|
|
2572
|
+
langger: 'BGDI Bundesgeodaten-Infrastruktur',
|
|
2573
|
+
langfre:
|
|
2574
|
+
'IFDG l’Infrastructure Fédérale de données géographiques',
|
|
2575
|
+
langita: 'IFDG Infrastruttura federale dei dati geografici',
|
|
2576
|
+
langeng: 'FSDI Federal Spatial Data Infrastructure',
|
|
2577
|
+
link: 'http://custom.shared.obj.ch/concept#ae677a16-f81a-4533-9243-a87831115079',
|
|
2578
|
+
},
|
|
2579
|
+
],
|
|
2580
|
+
},
|
|
2581
|
+
},
|
|
2582
|
+
'th_httpinspireeceuropaeutheme-theme_tree': {
|
|
2583
|
+
default: ['Umweltüberwachung', 'Verwaltungseinheiten'],
|
|
2584
|
+
key: [
|
|
2585
|
+
'http://inspire.ec.europa.eu/theme/au',
|
|
2586
|
+
'http://inspire.ec.europa.eu/theme/ef',
|
|
2587
|
+
],
|
|
2588
|
+
},
|
|
2589
|
+
th_gemet_tree: {
|
|
2590
|
+
default: [
|
|
2591
|
+
'Allgemeine Angelegenheiten',
|
|
2592
|
+
'Allgemeine Angelegenheiten^Nachhaltige Entwicklung',
|
|
2593
|
+
'Boden',
|
|
2594
|
+
'Boden^Bodenschutz',
|
|
2595
|
+
'Natürliche Lebensräume, Landschaft, Ökosysteme',
|
|
2596
|
+
'Natürliche Lebensräume, Landschaft, Ökosysteme^Bergschutz',
|
|
2597
|
+
'Natürliche Lebensräume, Landschaft, Ökosysteme^Naturgebietschutz',
|
|
2598
|
+
'Natürliche Lebensräume, Landschaft, Ökosysteme^Naturgebietschutz^Bergschutz',
|
|
2599
|
+
'Natürliche Lebensräume, Landschaft, Ökosysteme^Raumplanung',
|
|
2600
|
+
'Natürliche Lebensräume, Landschaft, Ökosysteme^Umweltschutz',
|
|
2601
|
+
'Natürliche Lebensräume, Landschaft, Ökosysteme^Umweltschutz^Bodenschutz',
|
|
2602
|
+
'Umweltpolitik',
|
|
2603
|
+
'Umweltpolitik^Bergschutz',
|
|
2604
|
+
'Umweltpolitik^Bodenschutz',
|
|
2605
|
+
'Umweltpolitik^Nachhaltige Entwicklung',
|
|
2606
|
+
'Umweltpolitik^Naturgebietschutz',
|
|
2607
|
+
'Umweltpolitik^Naturgebietschutz^Bergschutz',
|
|
2608
|
+
'Umweltpolitik^Raumplanung',
|
|
2609
|
+
'Umweltpolitik^Umweltentwicklung',
|
|
2610
|
+
'Umweltpolitik^Umweltentwicklung^Nachhaltige Entwicklung',
|
|
2611
|
+
'Umweltpolitik^Umweltplanung',
|
|
2612
|
+
'Umweltpolitik^Umweltplanung^Raumplanung',
|
|
2613
|
+
'Umweltpolitik^Umweltpolitik',
|
|
2614
|
+
'Umweltpolitik^Umweltpolitik^Umweltentwicklung',
|
|
2615
|
+
'Umweltpolitik^Umweltpolitik^Umweltentwicklung^Nachhaltige Entwicklung',
|
|
2616
|
+
'Umweltpolitik^Umweltschutz',
|
|
2617
|
+
'Umweltpolitik^Umweltschutz^Bodenschutz',
|
|
2618
|
+
'Umweltpolitik^Umweltschutz^Naturgebietschutz',
|
|
2619
|
+
'Umweltpolitik^Umweltschutz^Naturgebietschutz^Bergschutz',
|
|
2620
|
+
'Umweltpolitik^Umweltschutz^Umweltschutz',
|
|
2621
|
+
'Umweltpolitik^Umweltschutz^Umweltschutz^Bodenschutz',
|
|
2622
|
+
'Verkehr',
|
|
2623
|
+
'Verwaltung, Organisation, Institutionen, Planung, Politik und -vollzug, immaterielle Massnahmen',
|
|
2624
|
+
'Verwaltung, Organisation, Institutionen, Planung, Politik und -vollzug, immaterielle Massnahmen^Entwicklungspolitik',
|
|
2625
|
+
'Verwaltung, Organisation, Institutionen, Planung, Politik und -vollzug, immaterielle Massnahmen^Entwicklungspolitik^Nachhaltige Entwicklung',
|
|
2626
|
+
'Verwaltung, Organisation, Institutionen, Planung, Politik und -vollzug, immaterielle Massnahmen^Klimapolitik',
|
|
2627
|
+
'Verwaltung, Organisation, Institutionen, Planung, Politik und -vollzug, immaterielle Massnahmen^Klimapolitik^Umweltpolitik',
|
|
2628
|
+
'Verwaltung, Organisation, Institutionen, Planung, Politik und -vollzug, immaterielle Massnahmen^Klimapolitik^Umweltpolitik^Umweltentwicklung',
|
|
2629
|
+
'Verwaltung, Organisation, Institutionen, Planung, Politik und -vollzug, immaterielle Massnahmen^Klimapolitik^Umweltpolitik^Umweltentwicklung^Nachhaltige Entwicklung',
|
|
2630
|
+
'Verwaltung, Organisation, Institutionen, Planung, Politik und -vollzug, immaterielle Massnahmen^Management',
|
|
2631
|
+
'Verwaltung, Organisation, Institutionen, Planung, Politik und -vollzug, immaterielle Massnahmen^Management^Politische Instrumente',
|
|
2632
|
+
'Verwaltung, Organisation, Institutionen, Planung, Politik und -vollzug, immaterielle Massnahmen^Management^Politische Instrumente^Klimapolitik',
|
|
2633
|
+
'Verwaltung, Organisation, Institutionen, Planung, Politik und -vollzug, immaterielle Massnahmen^Management^Politische Instrumente^Klimapolitik^Umweltpolitik',
|
|
2634
|
+
'Verwaltung, Organisation, Institutionen, Planung, Politik und -vollzug, immaterielle Massnahmen^Management^Politische Instrumente^Klimapolitik^Umweltpolitik^Umweltentwicklung',
|
|
2635
|
+
'Verwaltung, Organisation, Institutionen, Planung, Politik und -vollzug, immaterielle Massnahmen^Management^Politische Instrumente^Klimapolitik^Umweltpolitik^Umweltentwicklung^Nachhaltige Entwicklung',
|
|
2636
|
+
'Verwaltung, Organisation, Institutionen, Planung, Politik und -vollzug, immaterielle Massnahmen^Politik',
|
|
2637
|
+
'Verwaltung, Organisation, Institutionen, Planung, Politik und -vollzug, immaterielle Massnahmen^Politik^Entwicklungspolitik',
|
|
2638
|
+
'Verwaltung, Organisation, Institutionen, Planung, Politik und -vollzug, immaterielle Massnahmen^Politik^Entwicklungspolitik^Nachhaltige Entwicklung',
|
|
2639
|
+
'Verwaltung, Organisation, Institutionen, Planung, Politik und -vollzug, immaterielle Massnahmen^Politische Instrumente',
|
|
2640
|
+
'Verwaltung, Organisation, Institutionen, Planung, Politik und -vollzug, immaterielle Massnahmen^Politische Instrumente^Klimapolitik',
|
|
2641
|
+
'Verwaltung, Organisation, Institutionen, Planung, Politik und -vollzug, immaterielle Massnahmen^Politische Instrumente^Klimapolitik^Umweltpolitik',
|
|
2642
|
+
'Verwaltung, Organisation, Institutionen, Planung, Politik und -vollzug, immaterielle Massnahmen^Politische Instrumente^Klimapolitik^Umweltpolitik^Umweltentwicklung',
|
|
2643
|
+
'Verwaltung, Organisation, Institutionen, Planung, Politik und -vollzug, immaterielle Massnahmen^Politische Instrumente^Klimapolitik^Umweltpolitik^Umweltentwicklung^Nachhaltige Entwicklung',
|
|
2644
|
+
],
|
|
2645
|
+
key: [
|
|
2646
|
+
'http://www.eionet.europa.eu/gemet/theme/1',
|
|
2647
|
+
'http://www.eionet.europa.eu/gemet/theme/11',
|
|
2648
|
+
'http://www.eionet.europa.eu/gemet/theme/11^http://www.eionet.europa.eu/gemet/concept/10032',
|
|
2649
|
+
'http://www.eionet.europa.eu/gemet/theme/11^http://www.eionet.europa.eu/gemet/concept/10032^http://www.eionet.europa.eu/gemet/concept/10236',
|
|
2650
|
+
'http://www.eionet.europa.eu/gemet/theme/11^http://www.eionet.europa.eu/gemet/concept/10236',
|
|
2651
|
+
'http://www.eionet.europa.eu/gemet/theme/11^http://www.eionet.europa.eu/gemet/concept/2790',
|
|
2652
|
+
'http://www.eionet.europa.eu/gemet/theme/11^http://www.eionet.europa.eu/gemet/concept/2790^http://www.eionet.europa.eu/gemet/concept/7852',
|
|
2653
|
+
'http://www.eionet.europa.eu/gemet/theme/11^http://www.eionet.europa.eu/gemet/concept/2805',
|
|
2654
|
+
'http://www.eionet.europa.eu/gemet/theme/11^http://www.eionet.europa.eu/gemet/concept/2805^http://www.eionet.europa.eu/gemet/concept/8247',
|
|
2655
|
+
'http://www.eionet.europa.eu/gemet/theme/11^http://www.eionet.europa.eu/gemet/concept/2889',
|
|
2656
|
+
'http://www.eionet.europa.eu/gemet/theme/11^http://www.eionet.europa.eu/gemet/concept/2889^http://www.eionet.europa.eu/gemet/concept/6225',
|
|
2657
|
+
'http://www.eionet.europa.eu/gemet/theme/11^http://www.eionet.europa.eu/gemet/concept/2892',
|
|
2658
|
+
'http://www.eionet.europa.eu/gemet/theme/11^http://www.eionet.europa.eu/gemet/concept/2892^http://www.eionet.europa.eu/gemet/concept/2805',
|
|
2659
|
+
'http://www.eionet.europa.eu/gemet/theme/11^http://www.eionet.europa.eu/gemet/concept/2892^http://www.eionet.europa.eu/gemet/concept/2805^http://www.eionet.europa.eu/gemet/concept/8247',
|
|
2660
|
+
'http://www.eionet.europa.eu/gemet/theme/11^http://www.eionet.europa.eu/gemet/concept/2900',
|
|
2661
|
+
'http://www.eionet.europa.eu/gemet/theme/11^http://www.eionet.europa.eu/gemet/concept/2900^http://www.eionet.europa.eu/gemet/concept/10032',
|
|
2662
|
+
'http://www.eionet.europa.eu/gemet/theme/11^http://www.eionet.europa.eu/gemet/concept/2900^http://www.eionet.europa.eu/gemet/concept/10032^http://www.eionet.europa.eu/gemet/concept/10236',
|
|
2663
|
+
'http://www.eionet.europa.eu/gemet/theme/11^http://www.eionet.europa.eu/gemet/concept/2900^http://www.eionet.europa.eu/gemet/concept/2790',
|
|
2664
|
+
'http://www.eionet.europa.eu/gemet/theme/11^http://www.eionet.europa.eu/gemet/concept/2900^http://www.eionet.europa.eu/gemet/concept/2790^http://www.eionet.europa.eu/gemet/concept/7852',
|
|
2665
|
+
'http://www.eionet.europa.eu/gemet/theme/11^http://www.eionet.europa.eu/gemet/concept/6225',
|
|
2666
|
+
'http://www.eionet.europa.eu/gemet/theme/11^http://www.eionet.europa.eu/gemet/concept/7852',
|
|
2667
|
+
'http://www.eionet.europa.eu/gemet/theme/11^http://www.eionet.europa.eu/gemet/concept/8247',
|
|
2668
|
+
'http://www.eionet.europa.eu/gemet/theme/15',
|
|
2669
|
+
'http://www.eionet.europa.eu/gemet/theme/15^http://www.eionet.europa.eu/gemet/concept/8247',
|
|
2670
|
+
'http://www.eionet.europa.eu/gemet/theme/1^http://www.eionet.europa.eu/gemet/concept/15097',
|
|
2671
|
+
'http://www.eionet.europa.eu/gemet/theme/1^http://www.eionet.europa.eu/gemet/concept/15097^http://www.eionet.europa.eu/gemet/concept/2892',
|
|
2672
|
+
'http://www.eionet.europa.eu/gemet/theme/1^http://www.eionet.europa.eu/gemet/concept/15097^http://www.eionet.europa.eu/gemet/concept/2892^http://www.eionet.europa.eu/gemet/concept/2805',
|
|
2673
|
+
'http://www.eionet.europa.eu/gemet/theme/1^http://www.eionet.europa.eu/gemet/concept/15097^http://www.eionet.europa.eu/gemet/concept/2892^http://www.eionet.europa.eu/gemet/concept/2805^http://www.eionet.europa.eu/gemet/concept/8247',
|
|
2674
|
+
'http://www.eionet.europa.eu/gemet/theme/1^http://www.eionet.europa.eu/gemet/concept/15116',
|
|
2675
|
+
'http://www.eionet.europa.eu/gemet/theme/1^http://www.eionet.europa.eu/gemet/concept/15116^http://www.eionet.europa.eu/gemet/concept/8247',
|
|
2676
|
+
'http://www.eionet.europa.eu/gemet/theme/1^http://www.eionet.europa.eu/gemet/concept/4985',
|
|
2677
|
+
'http://www.eionet.europa.eu/gemet/theme/1^http://www.eionet.europa.eu/gemet/concept/4985^http://www.eionet.europa.eu/gemet/concept/6373',
|
|
2678
|
+
'http://www.eionet.europa.eu/gemet/theme/1^http://www.eionet.europa.eu/gemet/concept/4985^http://www.eionet.europa.eu/gemet/concept/6373^http://www.eionet.europa.eu/gemet/concept/15097',
|
|
2679
|
+
'http://www.eionet.europa.eu/gemet/theme/1^http://www.eionet.europa.eu/gemet/concept/4985^http://www.eionet.europa.eu/gemet/concept/6373^http://www.eionet.europa.eu/gemet/concept/15097^http://www.eionet.europa.eu/gemet/concept/2892',
|
|
2680
|
+
'http://www.eionet.europa.eu/gemet/theme/1^http://www.eionet.europa.eu/gemet/concept/4985^http://www.eionet.europa.eu/gemet/concept/6373^http://www.eionet.europa.eu/gemet/concept/15097^http://www.eionet.europa.eu/gemet/concept/2892^http://www.eionet.europa.eu/gemet/concept/2805',
|
|
2681
|
+
'http://www.eionet.europa.eu/gemet/theme/1^http://www.eionet.europa.eu/gemet/concept/4985^http://www.eionet.europa.eu/gemet/concept/6373^http://www.eionet.europa.eu/gemet/concept/15097^http://www.eionet.europa.eu/gemet/concept/2892^http://www.eionet.europa.eu/gemet/concept/2805^http://www.eionet.europa.eu/gemet/concept/8247',
|
|
2682
|
+
'http://www.eionet.europa.eu/gemet/theme/1^http://www.eionet.europa.eu/gemet/concept/6370',
|
|
2683
|
+
'http://www.eionet.europa.eu/gemet/theme/1^http://www.eionet.europa.eu/gemet/concept/6370^http://www.eionet.europa.eu/gemet/concept/15116',
|
|
2684
|
+
'http://www.eionet.europa.eu/gemet/theme/1^http://www.eionet.europa.eu/gemet/concept/6370^http://www.eionet.europa.eu/gemet/concept/15116^http://www.eionet.europa.eu/gemet/concept/8247',
|
|
2685
|
+
'http://www.eionet.europa.eu/gemet/theme/1^http://www.eionet.europa.eu/gemet/concept/6373',
|
|
2686
|
+
'http://www.eionet.europa.eu/gemet/theme/1^http://www.eionet.europa.eu/gemet/concept/6373^http://www.eionet.europa.eu/gemet/concept/15097',
|
|
2687
|
+
'http://www.eionet.europa.eu/gemet/theme/1^http://www.eionet.europa.eu/gemet/concept/6373^http://www.eionet.europa.eu/gemet/concept/15097^http://www.eionet.europa.eu/gemet/concept/2892',
|
|
2688
|
+
'http://www.eionet.europa.eu/gemet/theme/1^http://www.eionet.europa.eu/gemet/concept/6373^http://www.eionet.europa.eu/gemet/concept/15097^http://www.eionet.europa.eu/gemet/concept/2892^http://www.eionet.europa.eu/gemet/concept/2805',
|
|
2689
|
+
'http://www.eionet.europa.eu/gemet/theme/1^http://www.eionet.europa.eu/gemet/concept/6373^http://www.eionet.europa.eu/gemet/concept/15097^http://www.eionet.europa.eu/gemet/concept/2892^http://www.eionet.europa.eu/gemet/concept/2805^http://www.eionet.europa.eu/gemet/concept/8247',
|
|
2690
|
+
'http://www.eionet.europa.eu/gemet/theme/23',
|
|
2691
|
+
'http://www.eionet.europa.eu/gemet/theme/23^http://www.eionet.europa.eu/gemet/concept/10032',
|
|
2692
|
+
'http://www.eionet.europa.eu/gemet/theme/23^http://www.eionet.europa.eu/gemet/concept/10032^http://www.eionet.europa.eu/gemet/concept/10236',
|
|
2693
|
+
'http://www.eionet.europa.eu/gemet/theme/23^http://www.eionet.europa.eu/gemet/concept/10236',
|
|
2694
|
+
'http://www.eionet.europa.eu/gemet/theme/23^http://www.eionet.europa.eu/gemet/concept/2790',
|
|
2695
|
+
'http://www.eionet.europa.eu/gemet/theme/23^http://www.eionet.europa.eu/gemet/concept/2790^http://www.eionet.europa.eu/gemet/concept/7852',
|
|
2696
|
+
'http://www.eionet.europa.eu/gemet/theme/23^http://www.eionet.europa.eu/gemet/concept/6225',
|
|
2697
|
+
'http://www.eionet.europa.eu/gemet/theme/35',
|
|
2698
|
+
'http://www.eionet.europa.eu/gemet/theme/35^http://www.eionet.europa.eu/gemet/concept/7852',
|
|
2699
|
+
'http://www.eionet.europa.eu/gemet/theme/37',
|
|
2700
|
+
],
|
|
2701
|
+
},
|
|
2702
|
+
'th_geocat-ch_tree': {
|
|
2703
|
+
default: [
|
|
2704
|
+
'Aufbewahrungs- und Archivierungsplanung AAP - Bund',
|
|
2705
|
+
'BGDI Bundesgeodaten-Infrastruktur',
|
|
2706
|
+
'Geobasisdaten',
|
|
2707
|
+
'e-geo.ch',
|
|
2708
|
+
'opendata.swiss',
|
|
2709
|
+
],
|
|
2710
|
+
key: [
|
|
2711
|
+
'http://custom.shared.obj.ch/concept#948082ad-0adf-4d3c-8c4f-685f9d4d9372',
|
|
2712
|
+
'http://custom.shared.obj.ch/concept#ab642d3d-d74f-400c-bb01-81c6dde26247',
|
|
2713
|
+
'http://custom.shared.obj.ch/concept#ae677a16-f81a-4533-9243-a87831115079',
|
|
2714
|
+
'http://geocat.ch/concept#94202915-c2c1-44fd-a106-71488110e399',
|
|
2715
|
+
'http://geocat.ch/concept#e6485c01-fe69-485e-b194-035f682463db',
|
|
2716
|
+
],
|
|
2717
|
+
},
|
|
2718
|
+
cl_topic: [
|
|
2719
|
+
{
|
|
2720
|
+
key: 'planningCadastre',
|
|
2721
|
+
default: 'Planungsunterlagen, Kataster',
|
|
2722
|
+
langger: 'Planungsunterlagen, Kataster',
|
|
2723
|
+
langfre: 'Cadastre, aménagement',
|
|
2724
|
+
langita: 'Pianificazione del territorio e catasto',
|
|
2725
|
+
langeng: 'Planning cadastre',
|
|
2726
|
+
langroh: 'planningCadastre',
|
|
2727
|
+
},
|
|
2728
|
+
{
|
|
2729
|
+
key: 'planningCadastre_Planning',
|
|
2730
|
+
default: 'E1 Raumplanung, Raumentwicklung',
|
|
2731
|
+
langger: 'E1 Raumplanung, Raumentwicklung',
|
|
2732
|
+
langfre: 'E1 Développement territorial',
|
|
2733
|
+
langita: 'E1 Pianificazione e sviluppo territoriale',
|
|
2734
|
+
langeng: 'E1 Spatial Planning, Spatial Development',
|
|
2735
|
+
langroh: 'planningCadastre_Planning',
|
|
2736
|
+
},
|
|
2737
|
+
],
|
|
2738
|
+
resolutionScaleDenominator: ['25000'],
|
|
2739
|
+
MD_LegalConstraintsOtherConstraintsObject: [
|
|
2740
|
+
{
|
|
2741
|
+
default: 'Opendata BY: Freie Nutzung. Quellenangabe ist Pflicht.',
|
|
2742
|
+
langger: 'Opendata BY: Freie Nutzung. Quellenangabe ist Pflicht.',
|
|
2743
|
+
langfre:
|
|
2744
|
+
'Opendata BY: Utilisation libre. Obligation d’indiquer la source.',
|
|
2745
|
+
langita:
|
|
2746
|
+
'Opendata BY: Libero utilizzo. Indicazione della fonte obbligatoria.',
|
|
2747
|
+
langeng: 'Opendata BY: Open use. Must provide the source.',
|
|
2748
|
+
link: 'https://opendata.swiss/en/terms-of-use/#terms_by',
|
|
2749
|
+
},
|
|
2750
|
+
],
|
|
2751
|
+
licenseObject: [
|
|
2752
|
+
{
|
|
2753
|
+
default: 'Opendata BY: Freie Nutzung. Quellenangabe ist Pflicht.',
|
|
2754
|
+
langger: 'Opendata BY: Freie Nutzung. Quellenangabe ist Pflicht.',
|
|
2755
|
+
langfre:
|
|
2756
|
+
'Opendata BY: Utilisation libre. Obligation d’indiquer la source.',
|
|
2757
|
+
langita:
|
|
2758
|
+
'Opendata BY: Libero utilizzo. Indicazione della fonte obbligatoria.',
|
|
2759
|
+
langeng: 'Opendata BY: Open use. Must provide the source.',
|
|
2760
|
+
link: 'https://opendata.swiss/en/terms-of-use/#terms_by',
|
|
2761
|
+
},
|
|
2762
|
+
],
|
|
2763
|
+
hasBoundingPolygon: 'true',
|
|
2764
|
+
shape: {
|
|
2765
|
+
type: 'Polygon',
|
|
2766
|
+
coordinates: [
|
|
2767
|
+
[
|
|
2768
|
+
[6.756, 47.5176],
|
|
2769
|
+
[10.5418, 47.478],
|
|
2770
|
+
[10.4463, 45.7887],
|
|
2771
|
+
[6.7771, 45.8271],
|
|
2772
|
+
[6.756, 47.5176],
|
|
2773
|
+
],
|
|
2774
|
+
],
|
|
2775
|
+
},
|
|
2776
|
+
extentDescriptionObject: [
|
|
2777
|
+
{
|
|
2778
|
+
default: 'Alpenkonvention',
|
|
2779
|
+
langger: 'Alpenkonvention',
|
|
2780
|
+
langfre: 'Convention des Alpes',
|
|
2781
|
+
langita: 'Convenzione delle alpi',
|
|
2782
|
+
langeng: 'Alpine Convention',
|
|
2783
|
+
},
|
|
2784
|
+
],
|
|
2785
|
+
geom: {
|
|
2786
|
+
type: 'Polygon',
|
|
2787
|
+
coordinates: [
|
|
2788
|
+
[
|
|
2789
|
+
[6.755991, 45.788744],
|
|
2790
|
+
[10.541824, 45.788744],
|
|
2791
|
+
[10.541824, 47.517566],
|
|
2792
|
+
[6.755991, 47.517566],
|
|
2793
|
+
[6.755991, 45.788744],
|
|
2794
|
+
],
|
|
2795
|
+
],
|
|
2796
|
+
},
|
|
2797
|
+
location: '46.653155,8.6489075',
|
|
2798
|
+
coordinateSystem: ['EPSG:21781'],
|
|
2799
|
+
crsDetails: [
|
|
2800
|
+
{
|
|
2801
|
+
code: 'EPSG:21781',
|
|
2802
|
+
codeSpace: '',
|
|
2803
|
+
name: 'EPSG:21781',
|
|
2804
|
+
url: '',
|
|
2805
|
+
},
|
|
2806
|
+
],
|
|
2807
|
+
lineageObject: {
|
|
2808
|
+
default:
|
|
2809
|
+
'Digitalisiert nach den administrativen Einheiten der Schweiz, die im Anhang des Übereinkommens erscheinen.',
|
|
2810
|
+
langger:
|
|
2811
|
+
'Digitalisiert nach den administrativen Einheiten der Schweiz, die im Anhang des Übereinkommens erscheinen.',
|
|
2812
|
+
},
|
|
2813
|
+
format: ['ESRI Shapefile (SHP)'],
|
|
2814
|
+
linkUrl: [
|
|
2815
|
+
'https://map.geo.admin.ch/?layers=ch.are.alpenkonvention',
|
|
2816
|
+
'https://wms.geo.admin.ch/?SERVICE=WMS&VERSION=1.3.0&REQUEST=GetCapabilities&lang=de',
|
|
2817
|
+
'https://wmts.geo.admin.ch/EPSG/3857/1.0.0/WMTSCapabilities.xml?lang=de',
|
|
2818
|
+
'https://www.are.admin.ch/are/de/home/laendliche-raeume-und-berggebiete/internationale-zusammenarbeit/alpenkonvention.html',
|
|
2819
|
+
'https://data.geo.admin.ch/browser/index.html#/collections/ch.are.alpenkonvention',
|
|
2820
|
+
'https://www.are.admin.ch/are/de/home/raumentwicklung-und-raumplanung/grundlagen-und-daten/minimale-geodatenmodelle/alpenkonvention.html',
|
|
2821
|
+
'http://map.are.admin.ch/?Y=660000&X=190000&zoom=1&bgLayer=ch.swisstopo.pixelkarte-grau&layers=ch.are.alpenkonvention&layers_opacity=0.2&layers_visibility=true&lang=de',
|
|
2822
|
+
'http://www.alpconv.org',
|
|
2823
|
+
'http://map.geo.admin.ch/?selectedNode=LT1_1&Y=660000&X=190000&zoom=1&bgLayer=ch.swisstopo.pixelkarte-farbe&layers=ch.are.alpenkonvention&layers_opacity=0.6&layers_visibility=true&lang=de',
|
|
2824
|
+
'http://www.admin.ch/ch/d/sr/0_700_1/app1.html',
|
|
2825
|
+
'https://api3.geo.admin.ch/rest/services/api/MapServer/ch.are.alpenkonvention',
|
|
2826
|
+
'https://opendata.swiss/de/perma/8698bf0b-fceb-4f0f-989b-111e7c4af0a4@bundesamt-fur-raumentwicklung-are',
|
|
2827
|
+
],
|
|
2828
|
+
linkProtocol: [
|
|
2829
|
+
'MAP:Preview',
|
|
2830
|
+
'OGC:WMS',
|
|
2831
|
+
'OGC:WMTS',
|
|
2832
|
+
'WWW:LINK',
|
|
2833
|
+
'WWW:DOWNLOAD-URL',
|
|
2834
|
+
'WWW:DOWNLOAD-URL',
|
|
2835
|
+
'CHTOPO:specialised-geoportal',
|
|
2836
|
+
'WWW:LINK',
|
|
2837
|
+
'WWW:LINK',
|
|
2838
|
+
'WWW:LINK',
|
|
2839
|
+
'ESRI:REST',
|
|
2840
|
+
'OPENDATA:SWISS',
|
|
2841
|
+
],
|
|
2842
|
+
linkUrlProtocolMAPPreview:
|
|
2843
|
+
'https://map.geo.admin.ch/?layers=ch.are.alpenkonvention',
|
|
2844
|
+
link: [
|
|
2845
|
+
{
|
|
2846
|
+
protocol: 'MAP:Preview',
|
|
2847
|
+
urlObject: {
|
|
2848
|
+
default:
|
|
2849
|
+
'https://map.geo.admin.ch/?layers=ch.are.alpenkonvention',
|
|
2850
|
+
langger:
|
|
2851
|
+
'https://map.geo.admin.ch/?layers=ch.are.alpenkonvention',
|
|
2852
|
+
langfre:
|
|
2853
|
+
'https://map.geo.admin.ch/?layers=ch.are.alpenkonvention',
|
|
2854
|
+
langita:
|
|
2855
|
+
'https://map.geo.admin.ch/?layers=ch.are.alpenkonvention',
|
|
2856
|
+
langeng:
|
|
2857
|
+
'https://map.geo.admin.ch/?layers=ch.are.alpenkonvention',
|
|
2858
|
+
langroh:
|
|
2859
|
+
'https://map.geo.admin.ch/?layers=ch.are.alpenkonvention',
|
|
2860
|
+
},
|
|
2861
|
+
nameObject: {
|
|
2862
|
+
default: 'Vorschau map.geo.admin.ch',
|
|
2863
|
+
langger: 'Vorschau map.geo.admin.ch',
|
|
2864
|
+
langfre: 'Aperçu map.geo.admin.ch',
|
|
2865
|
+
langita: 'Previsione map.geo.admin.ch',
|
|
2866
|
+
langeng: 'Preview map.geo.admin.ch',
|
|
2867
|
+
},
|
|
2868
|
+
descriptionObject: {
|
|
2869
|
+
default: 'Vorschau map.geo.admin.ch',
|
|
2870
|
+
langger: 'Vorschau map.geo.admin.ch',
|
|
2871
|
+
langfre: 'Aperçu map.geo.admin.ch',
|
|
2872
|
+
langita: 'Previsione map.geo.admin.ch',
|
|
2873
|
+
langeng: 'Preview map.geo.admin.ch',
|
|
2874
|
+
},
|
|
2875
|
+
function: '',
|
|
2876
|
+
applicationProfile: '',
|
|
2877
|
+
group: 0,
|
|
2878
|
+
},
|
|
2879
|
+
{
|
|
2880
|
+
protocol: 'OGC:WMS',
|
|
2881
|
+
urlObject: {
|
|
2882
|
+
default:
|
|
2883
|
+
'https://wms.geo.admin.ch/?SERVICE=WMS&VERSION=1.3.0&REQUEST=GetCapabilities&lang=de',
|
|
2884
|
+
langger:
|
|
2885
|
+
'https://wms.geo.admin.ch/?SERVICE=WMS&VERSION=1.3.0&REQUEST=GetCapabilities&lang=de',
|
|
2886
|
+
langfre:
|
|
2887
|
+
'https://wms.geo.admin.ch/?SERVICE=WMS&VERSION=1.3.0&REQUEST=GetCapabilities&lang=fr',
|
|
2888
|
+
langita:
|
|
2889
|
+
'https://wms.geo.admin.ch/?SERVICE=WMS&VERSION=1.3.0&REQUEST=GetCapabilities&lang=it',
|
|
2890
|
+
langeng:
|
|
2891
|
+
'https://wms.geo.admin.ch/?SERVICE=WMS&VERSION=1.3.0&REQUEST=GetCapabilities&lang=en',
|
|
2892
|
+
langroh:
|
|
2893
|
+
'https://wms.geo.admin.ch/?SERVICE=WMS&VERSION=1.3.0&REQUEST=GetCapabilities&lang=de',
|
|
2894
|
+
},
|
|
2895
|
+
nameObject: {
|
|
2896
|
+
default: 'ch.are.alpenkonvention',
|
|
2897
|
+
langger: 'ch.are.alpenkonvention',
|
|
2898
|
+
langfre: 'ch.are.alpenkonvention',
|
|
2899
|
+
langita: 'ch.are.alpenkonvention',
|
|
2900
|
+
langeng: 'ch.are.alpenkonvention',
|
|
2901
|
+
langroh: 'ch.are.alpenkonvention',
|
|
2902
|
+
},
|
|
2903
|
+
descriptionObject: {
|
|
2904
|
+
default: 'WMS-BGDI Dienst, Layer "Alpenkonvention"',
|
|
2905
|
+
langger: 'WMS-BGDI Dienst, Layer "Alpenkonvention"',
|
|
2906
|
+
langfre: 'Service WMS-IFDG, couche "Convention des Alpes"',
|
|
2907
|
+
langita: 'Servizio WMS-IFDG, strato "Convenzione delle alpi"',
|
|
2908
|
+
langeng: 'WMS-FSDI service, layer "Alpine Convention"',
|
|
2909
|
+
langroh: 'WMS-BGDI Dienst, Layer "Alpenkonvention"',
|
|
2910
|
+
},
|
|
2911
|
+
function: '',
|
|
2912
|
+
applicationProfile: '',
|
|
2913
|
+
group: 0,
|
|
2914
|
+
},
|
|
2915
|
+
{
|
|
2916
|
+
protocol: 'OGC:WMTS',
|
|
2917
|
+
urlObject: {
|
|
2918
|
+
default:
|
|
2919
|
+
'https://wmts.geo.admin.ch/EPSG/3857/1.0.0/WMTSCapabilities.xml?lang=de',
|
|
2920
|
+
langger:
|
|
2921
|
+
'https://wmts.geo.admin.ch/EPSG/3857/1.0.0/WMTSCapabilities.xml?lang=de',
|
|
2922
|
+
langfre:
|
|
2923
|
+
'https://wmts.geo.admin.ch/EPSG/3857/1.0.0/WMTSCapabilities.xml?lang=fr',
|
|
2924
|
+
langita:
|
|
2925
|
+
'https://wmts.geo.admin.ch/EPSG/3857/1.0.0/WMTSCapabilities.xml?lang=it',
|
|
2926
|
+
langeng:
|
|
2927
|
+
'https://wmts.geo.admin.ch/EPSG/3857/1.0.0/WMTSCapabilities.xml?lang=en',
|
|
2928
|
+
langroh:
|
|
2929
|
+
'https://wmts.geo.admin.ch/EPSG/3857/1.0.0/WMTSCapabilities.xml?lang=de',
|
|
2930
|
+
},
|
|
2931
|
+
nameObject: {
|
|
2932
|
+
default: 'ch.are.alpenkonvention',
|
|
2933
|
+
langger: 'ch.are.alpenkonvention',
|
|
2934
|
+
langfre: 'ch.are.alpenkonvention',
|
|
2935
|
+
langita: 'ch.are.alpenkonvention',
|
|
2936
|
+
langeng: 'ch.are.alpenkonvention',
|
|
2937
|
+
langroh: 'ch.are.alpenkonvention',
|
|
2938
|
+
},
|
|
2939
|
+
descriptionObject: {
|
|
2940
|
+
default: 'WMTS-BGDI Dienst, Layer "Alpenkonvention"',
|
|
2941
|
+
langger: 'WMTS-BGDI Dienst, Layer "Alpenkonvention"',
|
|
2942
|
+
langfre:
|
|
2943
|
+
'Service WMTS-IFDG, couche , Layer "Convention des Alpes"',
|
|
2944
|
+
langita: 'Servizio WMTS-IFDG, strato "Convenzione delle alpi"',
|
|
2945
|
+
langeng: 'WMTS-FSDI service, layer "Alpine Convention"',
|
|
2946
|
+
langroh: 'WMTS-BGDI Dienst, Layer "Alpenkonvention"',
|
|
2947
|
+
},
|
|
2948
|
+
function: '',
|
|
2949
|
+
applicationProfile: '',
|
|
2950
|
+
group: 0,
|
|
2951
|
+
},
|
|
2952
|
+
{
|
|
2953
|
+
protocol: 'WWW:LINK',
|
|
2954
|
+
urlObject: {
|
|
2955
|
+
default:
|
|
2956
|
+
'https://www.are.admin.ch/are/de/home/laendliche-raeume-und-berggebiete/internationale-zusammenarbeit/alpenkonvention.html',
|
|
2957
|
+
langger:
|
|
2958
|
+
'https://www.are.admin.ch/are/de/home/laendliche-raeume-und-berggebiete/internationale-zusammenarbeit/alpenkonvention.html',
|
|
2959
|
+
langfre:
|
|
2960
|
+
'https://www.are.admin.ch/are/fr/home/espaces-ruraux-et-regions-de-montagne/cooperation-internationale/la-convention-alpine.html',
|
|
2961
|
+
langita:
|
|
2962
|
+
'https://www.are.admin.ch/are/it/home/spazi-rurali-e-regioni-di-montagna/cooperazione-internazionale/la-convenzione-delle-alpi.html',
|
|
2963
|
+
},
|
|
2964
|
+
nameObject: {},
|
|
2965
|
+
descriptionObject: {
|
|
2966
|
+
default: 'Webseite des ARE über die Alpenkonvention',
|
|
2967
|
+
langger: 'Webseite des ARE über die Alpenkonvention',
|
|
2968
|
+
langfre: "Page web de l'ARE sur la Convention alpine",
|
|
2969
|
+
},
|
|
2970
|
+
function: '',
|
|
2971
|
+
applicationProfile: '',
|
|
2972
|
+
group: 1,
|
|
2973
|
+
},
|
|
2974
|
+
{
|
|
2975
|
+
protocol: 'WWW:DOWNLOAD-URL',
|
|
2976
|
+
urlObject: {
|
|
2977
|
+
default:
|
|
2978
|
+
'https://data.geo.admin.ch/browser/index.html#/collections/ch.are.alpenkonvention',
|
|
2979
|
+
langger:
|
|
2980
|
+
'https://data.geo.admin.ch/browser/index.html#/collections/ch.are.alpenkonvention',
|
|
2981
|
+
},
|
|
2982
|
+
nameObject: {},
|
|
2983
|
+
descriptionObject: {
|
|
2984
|
+
default: 'Download von data.geo.admin.ch',
|
|
2985
|
+
langger: 'Download von data.geo.admin.ch',
|
|
2986
|
+
langfre: 'Serveur de téléchargement de geo.admin.ch',
|
|
2987
|
+
langita: 'Server di download di geo.admin.ch',
|
|
2988
|
+
langeng: 'Download server from geo.admin.ch',
|
|
2989
|
+
},
|
|
2990
|
+
function: 'download',
|
|
2991
|
+
applicationProfile: '',
|
|
2992
|
+
group: 1,
|
|
2993
|
+
},
|
|
2994
|
+
{
|
|
2995
|
+
protocol: 'WWW:DOWNLOAD-URL',
|
|
2996
|
+
urlObject: {
|
|
2997
|
+
default:
|
|
2998
|
+
'https://www.are.admin.ch/are/de/home/raumentwicklung-und-raumplanung/grundlagen-und-daten/minimale-geodatenmodelle/alpenkonvention.html',
|
|
2999
|
+
langger:
|
|
3000
|
+
'https://www.are.admin.ch/are/de/home/raumentwicklung-und-raumplanung/grundlagen-und-daten/minimale-geodatenmodelle/alpenkonvention.html',
|
|
3001
|
+
langfre:
|
|
3002
|
+
'https://www.are.admin.ch/are/fr/home/developpement-et-amenagement-du-territoire/bases-et-donnees/modeles-de-geodonnees-minimaux/convention-alpine.html',
|
|
3003
|
+
langita:
|
|
3004
|
+
'https://www.are.admin.ch/are/it/home/sviluppo-e-pianificazione-del-territorio/basi-e-dati/modelli-di-geodati-minimi/convenzione-delle-alpi.html',
|
|
3005
|
+
},
|
|
3006
|
+
nameObject: {},
|
|
3007
|
+
descriptionObject: {
|
|
3008
|
+
default: 'Minimales Geodatenmodell in INTERLIS 2.3',
|
|
3009
|
+
langger: 'Minimales Geodatenmodell in INTERLIS 2.3',
|
|
3010
|
+
langfre: 'Modèle de données minimal en INTERLIS 2.3',
|
|
3011
|
+
},
|
|
3012
|
+
function: '',
|
|
3013
|
+
applicationProfile: '',
|
|
3014
|
+
group: 2,
|
|
3015
|
+
},
|
|
3016
|
+
{
|
|
3017
|
+
protocol: 'CHTOPO:specialised-geoportal',
|
|
3018
|
+
urlObject: {
|
|
3019
|
+
default:
|
|
3020
|
+
'http://map.are.admin.ch/?Y=660000&X=190000&zoom=1&bgLayer=ch.swisstopo.pixelkarte-grau&layers=ch.are.alpenkonvention&layers_opacity=0.2&layers_visibility=true&lang=de',
|
|
3021
|
+
langger:
|
|
3022
|
+
'http://map.are.admin.ch/?Y=660000&X=190000&zoom=1&bgLayer=ch.swisstopo.pixelkarte-grau&layers=ch.are.alpenkonvention&layers_opacity=0.2&layers_visibility=true&lang=de',
|
|
3023
|
+
langfre:
|
|
3024
|
+
'http://map.are.admin.ch/?Y=660000&X=190000&zoom=1&bgLayer=ch.swisstopo.pixelkarte-grau&layers=ch.are.alpenkonvention&layers_opacity=0.2&layers_visibility=true&lang=fr',
|
|
3025
|
+
},
|
|
3026
|
+
nameObject: {},
|
|
3027
|
+
descriptionObject: {
|
|
3028
|
+
default: 'Web-GIS ARE',
|
|
3029
|
+
langger: 'Web-GIS ARE',
|
|
3030
|
+
langfre: 'Web-SIG ARE',
|
|
3031
|
+
},
|
|
3032
|
+
function: '',
|
|
3033
|
+
applicationProfile: '',
|
|
3034
|
+
group: 3,
|
|
3035
|
+
},
|
|
3036
|
+
{
|
|
3037
|
+
protocol: 'WWW:LINK',
|
|
3038
|
+
urlObject: {
|
|
3039
|
+
default: 'http://www.alpconv.org',
|
|
3040
|
+
langger: 'http://www.alpconv.org',
|
|
3041
|
+
langfre: 'http://www.alpconv.org',
|
|
3042
|
+
langita: 'http://www.alpconv.org',
|
|
3043
|
+
langeng: 'http://www.alpconv.org',
|
|
3044
|
+
langroh: 'http://www.alpconv.org',
|
|
3045
|
+
},
|
|
3046
|
+
nameObject: {},
|
|
3047
|
+
descriptionObject: {
|
|
3048
|
+
default: 'Offizielle Homepage der Alpenkonvention',
|
|
3049
|
+
langger: 'Offizielle Homepage der Alpenkonvention',
|
|
3050
|
+
langfre: 'Site web officiel de la Convention alpine',
|
|
3051
|
+
langita: 'Pagina web ufficiale della Convenzione delle alpi',
|
|
3052
|
+
langeng: 'Official Website of the Alpine Convention',
|
|
3053
|
+
},
|
|
3054
|
+
function: 'information',
|
|
3055
|
+
applicationProfile: '',
|
|
3056
|
+
group: 4,
|
|
3057
|
+
},
|
|
3058
|
+
{
|
|
3059
|
+
protocol: 'WWW:LINK',
|
|
3060
|
+
urlObject: {
|
|
3061
|
+
default:
|
|
3062
|
+
'http://map.geo.admin.ch/?selectedNode=LT1_1&Y=660000&X=190000&zoom=1&bgLayer=ch.swisstopo.pixelkarte-farbe&layers=ch.are.alpenkonvention&layers_opacity=0.6&layers_visibility=true&lang=de',
|
|
3063
|
+
langger:
|
|
3064
|
+
'http://map.geo.admin.ch/?selectedNode=LT1_1&Y=660000&X=190000&zoom=1&bgLayer=ch.swisstopo.pixelkarte-farbe&layers=ch.are.alpenkonvention&layers_opacity=0.6&layers_visibility=true&lang=de',
|
|
3065
|
+
langfre:
|
|
3066
|
+
'http://map.geo.admin.ch/?selectedNode=LT1_1&Y=660000&X=190000&zoom=1&bgLayer=ch.swisstopo.pixelkarte-farbe&layers=ch.are.alpenkonvention&layers_opacity=0.56&layers_visibility=true&lang=fr',
|
|
3067
|
+
},
|
|
3068
|
+
nameObject: {},
|
|
3069
|
+
descriptionObject: {
|
|
3070
|
+
default: 'Die Alpenkonvention im Bundesgeoportal',
|
|
3071
|
+
langger: 'Die Alpenkonvention im Bundesgeoportal',
|
|
3072
|
+
langfre: 'La convention alpine dans le géoportail fédéral',
|
|
3073
|
+
},
|
|
3074
|
+
function: 'information',
|
|
3075
|
+
applicationProfile: '',
|
|
3076
|
+
group: 5,
|
|
3077
|
+
},
|
|
3078
|
+
{
|
|
3079
|
+
protocol: 'WWW:LINK',
|
|
3080
|
+
urlObject: {
|
|
3081
|
+
default: 'http://www.admin.ch/ch/d/sr/0_700_1/app1.html',
|
|
3082
|
+
langger: 'http://www.admin.ch/ch/d/sr/0_700_1/app1.html',
|
|
3083
|
+
langfre: 'http://www.admin.ch/ch/f/rs/0_700_1/app1.html',
|
|
3084
|
+
langita: 'http://www.admin.ch/ch/i/rs/0_700_1/app1.html',
|
|
3085
|
+
},
|
|
3086
|
+
nameObject: {},
|
|
3087
|
+
descriptionObject: {
|
|
3088
|
+
default:
|
|
3089
|
+
'Liste der administrativen Einheiten des Alpenraumes in der schweizerischen Eidgenossenschaft',
|
|
3090
|
+
langger:
|
|
3091
|
+
'Liste der administrativen Einheiten des Alpenraumes in der schweizerischen Eidgenossenschaft',
|
|
3092
|
+
langfre:
|
|
3093
|
+
"Liste des unités administratives de l'espace alpin dans la Confédération suisse",
|
|
3094
|
+
langita:
|
|
3095
|
+
'Elenco delle unità amministrative dello spazio alpino nella Confederazione Svizzera',
|
|
3096
|
+
},
|
|
3097
|
+
function: 'information',
|
|
3098
|
+
applicationProfile: '',
|
|
3099
|
+
group: 6,
|
|
3100
|
+
},
|
|
3101
|
+
{
|
|
3102
|
+
protocol: 'ESRI:REST',
|
|
3103
|
+
urlObject: {
|
|
3104
|
+
default:
|
|
3105
|
+
'https://api3.geo.admin.ch/rest/services/api/MapServer/ch.are.alpenkonvention',
|
|
3106
|
+
langger:
|
|
3107
|
+
'https://api3.geo.admin.ch/rest/services/api/MapServer/ch.are.alpenkonvention',
|
|
3108
|
+
langfre:
|
|
3109
|
+
'https://api3.geo.admin.ch/rest/services/api/MapServer/ch.are.alpenkonvention',
|
|
3110
|
+
langita:
|
|
3111
|
+
'https://api3.geo.admin.ch/rest/services/api/MapServer/ch.are.alpenkonvention',
|
|
3112
|
+
langeng:
|
|
3113
|
+
'https://api3.geo.admin.ch/rest/services/api/MapServer/ch.are.alpenkonvention',
|
|
3114
|
+
langroh:
|
|
3115
|
+
'https://api3.geo.admin.ch/rest/services/api/MapServer/ch.are.alpenkonvention',
|
|
3116
|
+
},
|
|
3117
|
+
nameObject: {
|
|
3118
|
+
default: 'RESTful API von geo.admin.ch',
|
|
3119
|
+
langger: 'RESTful API von geo.admin.ch',
|
|
3120
|
+
langfre: 'RESTful API de geo.admin.ch',
|
|
3121
|
+
langita: 'RESTful API da geo.admin.ch',
|
|
3122
|
+
langeng: 'RESTful API from geo.admin.ch',
|
|
3123
|
+
langroh: 'RESTful API dad geo.admin.ch',
|
|
3124
|
+
},
|
|
3125
|
+
descriptionObject: {
|
|
3126
|
+
default: 'RESTful API von geo.admin.ch',
|
|
3127
|
+
langger: 'RESTful API von geo.admin.ch',
|
|
3128
|
+
langfre: 'RESTful API de geo.admin.ch',
|
|
3129
|
+
langita: 'RESTful API da geo.admin.ch',
|
|
3130
|
+
langeng: 'RESTful API from geo.admin.ch',
|
|
3131
|
+
langroh: 'RESTful API dad geo.admin.ch',
|
|
3132
|
+
},
|
|
3133
|
+
function: '',
|
|
3134
|
+
applicationProfile: '',
|
|
3135
|
+
group: 6,
|
|
3136
|
+
},
|
|
3137
|
+
{
|
|
3138
|
+
protocol: 'OPENDATA:SWISS',
|
|
3139
|
+
urlObject: {
|
|
3140
|
+
default:
|
|
3141
|
+
'https://opendata.swiss/de/perma/8698bf0b-fceb-4f0f-989b-111e7c4af0a4@bundesamt-fur-raumentwicklung-are',
|
|
3142
|
+
langger:
|
|
3143
|
+
'https://opendata.swiss/de/perma/8698bf0b-fceb-4f0f-989b-111e7c4af0a4@bundesamt-fur-raumentwicklung-are',
|
|
3144
|
+
langfre:
|
|
3145
|
+
'https://opendata.swiss/fr/perma/8698bf0b-fceb-4f0f-989b-111e7c4af0a4@bundesamt-fur-raumentwicklung-are',
|
|
3146
|
+
langita:
|
|
3147
|
+
'https://opendata.swiss/it/perma/8698bf0b-fceb-4f0f-989b-111e7c4af0a4@bundesamt-fur-raumentwicklung-are',
|
|
3148
|
+
langeng:
|
|
3149
|
+
'https://opendata.swiss/en/perma/8698bf0b-fceb-4f0f-989b-111e7c4af0a4@bundesamt-fur-raumentwicklung-are',
|
|
3150
|
+
},
|
|
3151
|
+
nameObject: {
|
|
3152
|
+
default: 'Permalink opendata.swiss',
|
|
3153
|
+
langger: 'Permalink opendata.swiss',
|
|
3154
|
+
langfre: 'Permalink opendata.swiss',
|
|
3155
|
+
langita: 'Permalink opendata.swiss',
|
|
3156
|
+
langeng: 'Permalink opendata.swiss',
|
|
3157
|
+
},
|
|
3158
|
+
descriptionObject: {
|
|
3159
|
+
default: 'Permalink opendata.swiss',
|
|
3160
|
+
langger: 'Permalink opendata.swiss',
|
|
3161
|
+
langfre: 'Permalink opendata.swiss',
|
|
3162
|
+
langita: 'Permalink opendata.swiss',
|
|
3163
|
+
langeng: 'Permalink opendata.swiss',
|
|
3164
|
+
},
|
|
3165
|
+
function: '',
|
|
3166
|
+
applicationProfile: '',
|
|
3167
|
+
group: 6,
|
|
3168
|
+
},
|
|
3169
|
+
],
|
|
3170
|
+
linkUrlProtocolOGCWMS:
|
|
3171
|
+
'https://wms.geo.admin.ch/?SERVICE=WMS&VERSION=1.3.0&REQUEST=GetCapabilities&lang=de',
|
|
3172
|
+
linkUrlProtocolOGCWMTS:
|
|
3173
|
+
'https://wmts.geo.admin.ch/EPSG/3857/1.0.0/WMTSCapabilities.xml?lang=de',
|
|
3174
|
+
linkUrlProtocolWWWLINK: [
|
|
3175
|
+
'https://www.are.admin.ch/are/de/home/laendliche-raeume-und-berggebiete/internationale-zusammenarbeit/alpenkonvention.html',
|
|
3176
|
+
'http://www.alpconv.org',
|
|
3177
|
+
'http://map.geo.admin.ch/?selectedNode=LT1_1&Y=660000&X=190000&zoom=1&bgLayer=ch.swisstopo.pixelkarte-farbe&layers=ch.are.alpenkonvention&layers_opacity=0.6&layers_visibility=true&lang=de',
|
|
3178
|
+
'http://www.admin.ch/ch/d/sr/0_700_1/app1.html',
|
|
3179
|
+
],
|
|
3180
|
+
linkUrlProtocolWWWDOWNLOADURL: [
|
|
3181
|
+
'https://data.geo.admin.ch/browser/index.html#/collections/ch.are.alpenkonvention',
|
|
3182
|
+
'https://www.are.admin.ch/are/de/home/raumentwicklung-und-raumplanung/grundlagen-und-daten/minimale-geodatenmodelle/alpenkonvention.html',
|
|
3183
|
+
],
|
|
3184
|
+
linkUrlProtocolCHTOPOspecialisedgeoportal:
|
|
3185
|
+
'http://map.are.admin.ch/?Y=660000&X=190000&zoom=1&bgLayer=ch.swisstopo.pixelkarte-grau&layers=ch.are.alpenkonvention&layers_opacity=0.2&layers_visibility=true&lang=de',
|
|
3186
|
+
linkUrlProtocolESRIREST:
|
|
3187
|
+
'https://api3.geo.admin.ch/rest/services/api/MapServer/ch.are.alpenkonvention',
|
|
3188
|
+
linkUrlProtocolOPENDATASWISS:
|
|
3189
|
+
'https://opendata.swiss/de/perma/8698bf0b-fceb-4f0f-989b-111e7c4af0a4@bundesamt-fur-raumentwicklung-are',
|
|
3190
|
+
recordGroup: '8698bf0b-fceb-4f0f-989b-111e7c4af0a4',
|
|
3191
|
+
'valid_schematron-rules-url-check': '1',
|
|
3192
|
+
'valid_schematron-rules-iso-che': '1',
|
|
3193
|
+
recordOwner: 'ARE admin',
|
|
3194
|
+
valid_inspire: '-1',
|
|
3195
|
+
uuid: '8698bf0b-fceb-4f0f-989b-111e7c4af0a4',
|
|
3196
|
+
displayOrder: '0',
|
|
3197
|
+
groupPublishedId: ['0', '22', '1'],
|
|
3198
|
+
popularity: 1056,
|
|
3199
|
+
userinfo: 'AREadmin|admin|ARE|UserAdmin',
|
|
3200
|
+
groupPublished: ['intranet', 'ARE', 'all'],
|
|
3201
|
+
isPublishedToAll: 'true',
|
|
3202
|
+
record: 'record',
|
|
3203
|
+
draft: 'n',
|
|
3204
|
+
changeDate: '2022-12-16T16:16:01.912Z',
|
|
3205
|
+
'valid_schematron-rules-geobasisdatensatz': '1',
|
|
3206
|
+
xlink: [
|
|
3207
|
+
'local://srv/api/registries/entries/b407586c-c3b4-4620-8df1-5518ac7d656f?lang=ger,fre,ita,eng,roh&process=gmd:role/gmd:CI_RoleCode/@codeListValue~pointOfContact',
|
|
3208
|
+
'local://srv/api/registries/entries/b407586c-c3b4-4620-8df1-5518ac7d656f?lang=ger,fre,ita,eng,roh&process=gmd:role/gmd:CI_RoleCode/@codeListValue~pointOfContact',
|
|
3209
|
+
'local://srv/api/registries/entries/2f6a598e-a704-47bf-86fa-0cbbb08f0d12?lang=ger,fre,ita,eng,roh&process=gmd:role/gmd:CI_RoleCode/@codeListValue~owner',
|
|
3210
|
+
'local://srv/api/registries/vocabularies/keyword?skipdescriptivekeywords=true&thesaurus=local.theme.geocat.ch&id=http%3A%2F%2Fgeocat.ch%2Fconcept%2394202915-c2c1-44fd-a106-71488110e399%2Chttp%3A%2F%2Fgeocat.ch%2Fconcept%23e6485c01-fe69-485e-b194-035f682463db%2Chttp%3A%2F%2Fcustom.shared.obj.ch%2Fconcept%23ab642d3d-d74f-400c-bb01-81c6dde26247%2Chttp%3A%2F%2Fcustom.shared.obj.ch%2Fconcept%23948082ad-0adf-4d3c-8c4f-685f9d4d9372&lang=ger,fre,ita,eng,roh',
|
|
3211
|
+
'local://srv/api/registries/vocabularies/keyword?skipdescriptivekeywords=true&thesaurus=local.theme.geocat.ch&id=&lang=ger,fre,ita,eng,roh',
|
|
3212
|
+
'local://srv/api/registries/vocabularies/keyword?skipdescriptivekeywords=true&thesaurus=local.theme.geocat.ch&id=&lang=ger,fre,ita,eng,roh',
|
|
3213
|
+
'local://srv/api/registries/vocabularies/keyword?skipdescriptivekeywords=true&thesaurus=local.theme.geocat.ch&id=&lang=ger,fre,ita,eng,roh',
|
|
3214
|
+
'local://srv/api/registries/vocabularies/keyword?skipdescriptivekeywords=true&thesaurus=external.theme.gemet&id=http%3A%2F%2Fwww.eionet.europa.eu%2Fgemet%2Fconcept%2F8247&lang=ger,fre,ita,eng,roh',
|
|
3215
|
+
'local://srv/api/registries/vocabularies/keyword?skipdescriptivekeywords=true&thesaurus=external.theme.gemet&id=http%3A%2F%2Fwww.eionet.europa.eu%2Fgemet%2Fconcept%2F6225&lang=ger,fre,ita,eng,roh',
|
|
3216
|
+
'local://srv/api/registries/vocabularies/keyword?skipdescriptivekeywords=true&thesaurus=external.theme.gemet&id=http%3A%2F%2Fwww.eionet.europa.eu%2Fgemet%2Fconcept%2F10236&lang=ger,fre,ita,eng,roh',
|
|
3217
|
+
'local://srv/api/registries/vocabularies/keyword?skipdescriptivekeywords=true&thesaurus=external.theme.gemet&id=http%3A%2F%2Fwww.eionet.europa.eu%2Fgemet%2Fconcept%2F7852&lang=ger,fre,ita,eng,roh',
|
|
3218
|
+
'local://srv/api/registries/vocabularies/keyword?skipdescriptivekeywords=true&thesaurus=external.theme.gemet&id=http%3A%2F%2Fwww.eionet.europa.eu%2Fgemet%2Ftheme%2F11&lang=ger,fre,ita,eng,roh',
|
|
3219
|
+
'local://srv/api/registries/vocabularies/keyword?skipdescriptivekeywords=true&thesaurus=external.theme.gemet&id=http%3A%2F%2Fwww.eionet.europa.eu%2Fgemet%2Ftheme%2F11&lang=ger,fre,ita,eng,roh',
|
|
3220
|
+
'local://srv/api/registries/vocabularies/keyword?skipdescriptivekeywords=true&thesaurus=external.theme.gemet&id=http%3A%2F%2Fwww.eionet.europa.eu%2Fgemet%2Ftheme%2F37&lang=ger,fre,ita,eng,roh',
|
|
3221
|
+
'local://srv/api/registries/vocabularies/keyword?skipdescriptivekeywords=true&thesaurus=external.theme.gemet&id=http%3A%2F%2Fwww.eionet.europa.eu%2Fgemet%2Ftheme%2F37&lang=ger,fre,ita,eng,roh',
|
|
3222
|
+
'local://srv/api/registries/vocabularies/keyword?skipdescriptivekeywords=true&thesaurus=external.theme.gemet&id=http%3A%2F%2Fwww.eionet.europa.eu%2Fgemet%2Ftheme%2F37&lang=ger,fre,ita,eng,roh',
|
|
3223
|
+
'local://srv/api/registries/vocabularies/keyword?skipdescriptivekeywords=true&thesaurus=external.theme.httpinspireeceuropaeutheme-theme&id=http%3A%2F%2Finspire.ec.europa.eu%2Ftheme%2Fef&lang=ger,fre,ita,eng,roh',
|
|
3224
|
+
'local://srv/api/registries/vocabularies/keyword?skipdescriptivekeywords=true&thesaurus=external.theme.httpinspireeceuropaeutheme-theme&id=http%3A%2F%2Finspire.ec.europa.eu%2Ftheme%2Fau&lang=ger,fre,ita,eng,roh',
|
|
3225
|
+
'https://www.geocat.ch/geonetwork/srv/api/registries/vocabularies/local.theme.geocat.ch',
|
|
3226
|
+
'https://opendata.swiss/en/terms-of-use/#terms_by',
|
|
3227
|
+
'local://srv/api/registries/entries/geocatch-subtpl-extent-custom-15?lang=ger,fre,ita,eng,roh&',
|
|
3228
|
+
'local://srv/api/registries/entries/5533f00e-57f9-4f4d-b2a2-560fee4b32ad?lang=ger,fre,ita,eng,roh&',
|
|
3229
|
+
],
|
|
3230
|
+
id: '39253641',
|
|
3231
|
+
valid_xsd: '1',
|
|
3232
|
+
createDate: '2021-04-12T07:50:54Z',
|
|
3233
|
+
owner: '800',
|
|
3234
|
+
'valid_schematron-rules-iso': '1',
|
|
3235
|
+
groupOwner: '22',
|
|
3236
|
+
logo: '/images/harvesting/047a5cb4-b942-41dc-9ffa-ffd229da064d.png',
|
|
3237
|
+
'valid_schematron-rules-geonetwork': '0',
|
|
3238
|
+
hasxlinks: 'true',
|
|
3239
|
+
'valid_schematron-rules-aap': '0',
|
|
3240
|
+
featureOfRecord: 'record',
|
|
3241
|
+
extra: 'recover_from_tueday_ok',
|
|
3242
|
+
documentStandard: 'iso19139.che',
|
|
3243
|
+
valid: '1',
|
|
3244
|
+
isTemplate: 'n',
|
|
3245
|
+
rating: '0',
|
|
3246
|
+
'valid_schematron-rules-bgdi': '1',
|
|
3247
|
+
isHarvested: 'false',
|
|
3248
|
+
groupWebsite: 'http://www.are.admin.ch',
|
|
3249
|
+
userSavedCount: '0',
|
|
3250
|
+
sourceCatalogue: '7ea582d4-9ddf-422e-b28f-29760a4c0147',
|
|
3251
|
+
},
|
|
3252
|
+
edit: false,
|
|
3253
|
+
canReview: false,
|
|
3254
|
+
owner: false,
|
|
3255
|
+
isPublishedToAll: true,
|
|
3256
|
+
view: true,
|
|
3257
|
+
notify: false,
|
|
3258
|
+
download: true,
|
|
3259
|
+
dynamic: true,
|
|
3260
|
+
featured: false,
|
|
3261
|
+
selected: false,
|
|
3262
|
+
},
|
|
1590
3263
|
],
|
|
1591
3264
|
},
|
|
1592
3265
|
})
|