geonetwork-ui 2.1.0-initial
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 +55 -0
- package/esm2022/geonetwork-ui.mjs +5 -0
- package/esm2022/index.mjs +24 -0
- package/esm2022/libs/api/metadata-converter/src/index.mjs +5 -0
- package/esm2022/libs/api/metadata-converter/src/lib/common/distribution.mapper.mjs +20 -0
- package/esm2022/libs/api/metadata-converter/src/lib/convert-utils.mjs +19 -0
- package/esm2022/libs/api/metadata-converter/src/lib/function-utils.mjs +40 -0
- package/esm2022/libs/api/metadata-converter/src/lib/gn4/atomic-operations.mjs +49 -0
- package/esm2022/libs/api/metadata-converter/src/lib/gn4/gn4.field.mapper.mjs +265 -0
- package/esm2022/libs/api/metadata-converter/src/lib/gn4/gn4.metadata.mapper.mjs +49 -0
- package/esm2022/libs/api/metadata-converter/src/lib/gn4/metadata-url.service.mjs +29 -0
- package/esm2022/libs/api/metadata-converter/src/lib/gn4/types/elasticsearch.model.mjs +12 -0
- package/esm2022/libs/api/metadata-converter/src/lib/gn4/types/index.mjs +4 -0
- package/esm2022/libs/api/metadata-converter/src/lib/gn4/types/metadata.model.mjs +2 -0
- package/esm2022/libs/api/metadata-converter/src/lib/gn4/types/search.model.mjs +11 -0
- package/esm2022/libs/api/metadata-converter/src/lib/iso19139/codelists/role.mapper.mjs +48 -0
- package/esm2022/libs/api/metadata-converter/src/lib/iso19139/codelists/status.mapper.mjs +18 -0
- package/esm2022/libs/api/metadata-converter/src/lib/iso19139/codelists/update-frequency.mapper.mjs +64 -0
- package/esm2022/libs/api/metadata-converter/src/lib/iso19139/converter.mjs +122 -0
- package/esm2022/libs/api/metadata-converter/src/lib/iso19139/read-parts.mjs +329 -0
- package/esm2022/libs/api/metadata-converter/src/lib/iso19139/write-parts.mjs +366 -0
- package/esm2022/libs/api/metadata-converter/src/lib/metadata-base.mapper.mjs +14 -0
- package/esm2022/libs/api/metadata-converter/src/lib/xml-utils.mjs +300 -0
- package/esm2022/libs/api/repository/src/index.mjs +3 -0
- package/esm2022/libs/api/repository/src/lib/gn4/auth/auth.service.mjs +63 -0
- package/esm2022/libs/api/repository/src/lib/gn4/auth/avatar.service.interface.mjs +3 -0
- package/esm2022/libs/api/repository/src/lib/gn4/auth/gravatar.service.mjs +25 -0
- package/esm2022/libs/api/repository/src/lib/gn4/auth/index.mjs +4 -0
- package/esm2022/libs/api/repository/src/lib/gn4/elasticsearch/constant.mjs +31 -0
- package/esm2022/libs/api/repository/src/lib/gn4/elasticsearch/elasticsearch.service.mjs +444 -0
- package/esm2022/libs/api/repository/src/lib/gn4/elasticsearch/index.mjs +3 -0
- package/esm2022/libs/api/repository/src/lib/gn4/favorites/favorites.service.mjs +66 -0
- package/esm2022/libs/api/repository/src/lib/gn4/gn4-repository.mjs +69 -0
- package/esm2022/libs/api/repository/src/lib/gn4/index.mjs +7 -0
- package/esm2022/libs/api/repository/src/lib/gn4/organizations/index.mjs +7 -0
- package/esm2022/libs/api/repository/src/lib/gn4/organizations/organizations-from-groups.service.mjs +103 -0
- package/esm2022/libs/api/repository/src/lib/gn4/organizations/organizations-from-metadata.service.mjs +185 -0
- package/esm2022/libs/api/repository/src/lib/gn4/settings/gn4-settings.service.mjs +23 -0
- package/esm2022/libs/api/repository/src/lib/metadata-language.mjs +3 -0
- package/esm2022/libs/api/repository/src/lib/repository-url.mjs +10 -0
- package/esm2022/libs/common/domain/src/lib/dataviz-configuration.model.mjs +9 -0
- package/esm2022/libs/common/domain/src/lib/organizations.service.interface.mjs +3 -0
- package/esm2022/libs/common/domain/src/lib/record/contact.model.mjs +24 -0
- package/esm2022/libs/common/domain/src/lib/record/index.mjs +4 -0
- package/esm2022/libs/common/domain/src/lib/record/metadata.model.mjs +24 -0
- package/esm2022/libs/common/domain/src/lib/record/organization.model.mjs +2 -0
- package/esm2022/libs/common/domain/src/lib/records-repository.interface.mjs +3 -0
- package/esm2022/libs/common/domain/src/lib/search/aggregation.model.mjs +2 -0
- package/esm2022/libs/common/domain/src/lib/search/filter.model.mjs +2 -0
- package/esm2022/libs/common/domain/src/lib/search/index.mjs +5 -0
- package/esm2022/libs/common/domain/src/lib/search/search.model.mjs +2 -0
- package/esm2022/libs/common/domain/src/lib/search/sort-by.model.mjs +7 -0
- package/esm2022/libs/common/domain/src/lib/user.model.mjs +2 -0
- package/esm2022/libs/data-access/gn4/src/fixtures/index.mjs +3 -0
- package/esm2022/libs/data-access/gn4/src/fixtures/site.fixtures.mjs +61 -0
- package/esm2022/libs/data-access/gn4/src/fixtures/ui.fixtures.mjs +5 -0
- package/esm2022/libs/data-access/gn4/src/index.mjs +3 -0
- package/esm2022/libs/data-access/gn4/src/openapi/api/api.mjs +90 -0
- package/esm2022/libs/data-access/gn4/src/openapi/api/customstyle.api.service.mjs +151 -0
- package/esm2022/libs/data-access/gn4/src/openapi/api/groups.api.service.mjs +285 -0
- package/esm2022/libs/data-access/gn4/src/openapi/api/harvesters.api.service.mjs +128 -0
- package/esm2022/libs/data-access/gn4/src/openapi/api/identifiers.api.service.mjs +195 -0
- package/esm2022/libs/data-access/gn4/src/openapi/api/languages.api.service.mjs +117 -0
- package/esm2022/libs/data-access/gn4/src/openapi/api/links.api.service.mjs +238 -0
- package/esm2022/libs/data-access/gn4/src/openapi/api/logos.api.service.mjs +183 -0
- package/esm2022/libs/data-access/gn4/src/openapi/api/mapservers.api.service.mjs +351 -0
- package/esm2022/libs/data-access/gn4/src/openapi/api/me.api.service.mjs +117 -0
- package/esm2022/libs/data-access/gn4/src/openapi/api/operations.api.service.mjs +117 -0
- package/esm2022/libs/data-access/gn4/src/openapi/api/pages.api.service.mjs +193 -0
- package/esm2022/libs/data-access/gn4/src/openapi/api/processes.api.service.mjs +274 -0
- package/esm2022/libs/data-access/gn4/src/openapi/api/records.api.service.mjs +3105 -0
- package/esm2022/libs/data-access/gn4/src/openapi/api/regions.api.service.mjs +156 -0
- package/esm2022/libs/data-access/gn4/src/openapi/api/registries.api.service.mjs +780 -0
- package/esm2022/libs/data-access/gn4/src/openapi/api/related.api.service.mjs +132 -0
- package/esm2022/libs/data-access/gn4/src/openapi/api/search.api.service.mjs +128 -0
- package/esm2022/libs/data-access/gn4/src/openapi/api/selections.api.service.mjs +190 -0
- package/esm2022/libs/data-access/gn4/src/openapi/api/site.api.service.mjs +576 -0
- package/esm2022/libs/data-access/gn4/src/openapi/api/sources.api.service.mjs +150 -0
- package/esm2022/libs/data-access/gn4/src/openapi/api/standards.api.service.mjs +412 -0
- package/esm2022/libs/data-access/gn4/src/openapi/api/status.api.service.mjs +145 -0
- package/esm2022/libs/data-access/gn4/src/openapi/api/tags.api.service.mjs +183 -0
- package/esm2022/libs/data-access/gn4/src/openapi/api/tools.api.service.mjs +420 -0
- package/esm2022/libs/data-access/gn4/src/openapi/api/ui.api.service.mjs +182 -0
- package/esm2022/libs/data-access/gn4/src/openapi/api/userfeedback.api.service.mjs +405 -0
- package/esm2022/libs/data-access/gn4/src/openapi/api/users.api.service.mjs +533 -0
- package/esm2022/libs/data-access/gn4/src/openapi/api/usersearches.api.service.mjs +343 -0
- package/esm2022/libs/data-access/gn4/src/openapi/api/userselections.api.service.mjs +258 -0
- package/esm2022/libs/data-access/gn4/src/openapi/api.module.mjs +41 -0
- package/esm2022/libs/data-access/gn4/src/openapi/configuration.mjs +72 -0
- package/esm2022/libs/data-access/gn4/src/openapi/encoder.mjs +19 -0
- package/esm2022/libs/data-access/gn4/src/openapi/index.mjs +6 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/address.api.model.mjs +13 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/anonymousMapserver.api.model.mjs +2 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/associated.api.model.mjs +2 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/associatedSiblingMetadataItem.api.model.mjs +2 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/attributeTable.api.model.mjs +2 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/batchEditParameter.api.model.mjs +13 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/batchEditing.api.model.mjs +2 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/category.api.model.mjs +13 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/categoryResponse.api.model.mjs +13 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/children.api.model.mjs +2 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/codelist.api.model.mjs +2 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/crs.api.model.mjs +13 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/dataset.api.model.mjs +2 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/description.api.model.mjs +2 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/element.api.model.mjs +2 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/entry.api.model.mjs +13 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/extentDto.api.model.mjs +13 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/externalResourceManagementProperties.api.model.mjs +13 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/fCRelatedMetadataItem.api.model.mjs +2 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/fcat.api.model.mjs +2 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/featureResponse.api.model.mjs +13 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/featureType.api.model.mjs +2 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/field.api.model.mjs +13 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/grantedAuthority.api.model.mjs +13 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/group.api.model.mjs +2 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/groupOperations.api.model.mjs +13 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/groupPrivilege.api.model.mjs +33 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/hasfeaturecats.api.model.mjs +2 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/hassource.api.model.mjs +2 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/iProcessingReport.api.model.mjs +13 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/iSODate.api.model.mjs +13 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/infoReport.api.model.mjs +13 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/inlineObject1.api.model.mjs +13 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/inlineObject2.api.model.mjs +13 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/inlineObject3.api.model.mjs +13 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/isoLanguage.api.model.mjs +13 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/keywordBean.api.model.mjs +13 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/link.api.model.mjs +8 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/linkStatus.api.model.mjs +2 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/listRegionsResponse.api.model.mjs +2 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/localizedString.api.model.mjs +13 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/logFileResponse.api.model.mjs +13 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/mapServer.api.model.mjs +13 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/meResponse.api.model.mjs +13 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/metadataCategory.api.model.mjs +13 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/metadataIdentifierTemplate.api.model.mjs +13 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/metadataLink.api.model.mjs +13 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/metadataProcessingReport.api.model.mjs +2 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/metadataReplacementProcessingReport.api.model.mjs +2 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/metadataResource.api.model.mjs +8 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/metadataSchema.api.model.mjs +2 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/metadataStatus.api.model.mjs +2 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/metadataStatusResponse.api.model.mjs +2 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/metadataWorkflowStatusResponse.api.model.mjs +2 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/models.mjs +110 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/multilingualValue.api.model.mjs +2 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/online.api.model.mjs +2 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/operation.api.model.mjs +23 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/ownerResponse.api.model.mjs +13 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/pageJSONWrapper.api.model.mjs +39 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/pageLink.api.model.mjs +2 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/pageable.api.model.mjs +2 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/paginatedUserSearchResponse.api.model.mjs +2 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/parent.api.model.mjs +2 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/passwordUpdateParameter.api.model.mjs +13 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/processingReport.api.model.mjs +2 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/ratingAverage.api.model.mjs +13 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/ratingCriteria.api.model.mjs +13 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/regionResponse.api.model.mjs +13 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/related.api.model.mjs +2 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/relatedLinkItem.api.model.mjs +2 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/relatedMetadataItem.api.model.mjs +2 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/relatedResponse.api.model.mjs +2 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/relatedSiblingMetadataItem.api.model.mjs +2 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/relatedThumbnailItem.api.model.mjs +2 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/replaceEntryChange.api.model.mjs +13 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/replaceReport.api.model.mjs +2 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/report.api.model.mjs +13 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/reports.api.model.mjs +2 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/savedQuery.api.model.mjs +13 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/section.api.model.mjs +2 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/selection.api.model.mjs +13 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/service.api.model.mjs +2 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/setting.api.model.mjs +21 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/settingsListResponse.api.model.mjs +2 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/sharingParameter.api.model.mjs +2 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/sharingResponse.api.model.mjs +2 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/siblings.api.model.mjs +2 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/simpleMetadataProcessingReport.api.model.mjs +2 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/siteInformation.api.model.mjs +13 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/sort.api.model.mjs +13 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/source.api.model.mjs +2 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/status.api.model.mjs +22 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/statusValue.api.model.mjs +32 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/suggestionType.api.model.mjs +13 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/systemInfo.api.model.mjs +13 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/thumbnail.api.model.mjs +2 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/transferRequest.api.model.mjs +13 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/uiSetting.api.model.mjs +13 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/user.api.model.mjs +13 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/userDto.api.model.mjs +2 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/userFeedbackDTO.api.model.mjs +13 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/userGroup.api.model.mjs +13 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/userGroupId.api.model.mjs +24 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/userGroupsResponse.api.model.mjs +13 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/userRegisterDto.api.model.mjs +2 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/userSearchDto.api.model.mjs +13 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/userSecurity.api.model.mjs +19 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/values.api.model.mjs +13 -0
- package/esm2022/libs/data-access/gn4/src/openapi/model/xsltMetadataProcessingReport.api.model.mjs +2 -0
- package/esm2022/libs/data-access/gn4/src/openapi/variables.mjs +9 -0
- package/esm2022/libs/feature/auth/src/index.mjs +2 -0
- package/esm2022/libs/feature/auth/src/lib/feature-auth.module.mjs +17 -0
- package/esm2022/libs/feature/catalog/src/index.mjs +8 -0
- package/esm2022/libs/feature/catalog/src/lib/feature-catalog.module.mjs +84 -0
- package/esm2022/libs/feature/catalog/src/lib/organisations/organisations.component.mjs +81 -0
- package/esm2022/libs/feature/catalog/src/lib/records/records.service.mjs +23 -0
- package/esm2022/libs/feature/catalog/src/lib/site-title/site-title.component.mjs +22 -0
- package/esm2022/libs/feature/catalog/src/lib/source-label/source-label.component.mjs +22 -0
- package/esm2022/libs/feature/catalog/src/lib/sources/sources.model.mjs +2 -0
- package/esm2022/libs/feature/catalog/src/lib/sources/sources.service.mjs +28 -0
- package/esm2022/libs/feature/dataviz/src/index.mjs +7 -0
- package/esm2022/libs/feature/dataviz/src/lib/chart-view/chart-view.component.mjs +187 -0
- package/esm2022/libs/feature/dataviz/src/lib/feature-dataviz.module.mjs +68 -0
- package/esm2022/libs/feature/dataviz/src/lib/figure/figure-container/figure-container.component.mjs +36 -0
- package/esm2022/libs/feature/dataviz/src/lib/figure/figure.service.mjs +31 -0
- package/esm2022/libs/feature/dataviz/src/lib/geo-table-view/geo-table-view.component.mjs +109 -0
- package/esm2022/libs/feature/dataviz/src/lib/service/data.service.mjs +147 -0
- package/esm2022/libs/feature/dataviz/src/lib/table-view/table-view.component.mjs +74 -0
- package/esm2022/libs/feature/editor/src/index.mjs +7 -0
- package/esm2022/libs/feature/editor/src/lib/components/wizard/wizard.component.mjs +75 -0
- package/esm2022/libs/feature/editor/src/lib/components/wizard-field/wizard-field.component.mjs +169 -0
- package/esm2022/libs/feature/editor/src/lib/components/wizard-summarize/wizard-summarize.component.mjs +53 -0
- package/esm2022/libs/feature/editor/src/lib/feature-editor.module.mjs +60 -0
- package/esm2022/libs/feature/editor/src/lib/models/index.mjs +3 -0
- package/esm2022/libs/feature/editor/src/lib/models/wizard-field.model.mjs +2 -0
- package/esm2022/libs/feature/editor/src/lib/models/wizard-field.type.mjs +9 -0
- package/esm2022/libs/feature/editor/src/lib/record-form/record-form.component.mjs +24 -0
- package/esm2022/libs/feature/editor/src/lib/services/editor.service.mjs +86 -0
- package/esm2022/libs/feature/editor/src/lib/services/wizard.service.mjs +87 -0
- package/esm2022/libs/feature/map/src/index.mjs +20 -0
- package/esm2022/libs/feature/map/src/lib/+state/map.actions.mjs +8 -0
- package/esm2022/libs/feature/map/src/lib/+state/map.effects.mjs +15 -0
- package/esm2022/libs/feature/map/src/lib/+state/map.facade.mjs +34 -0
- package/esm2022/libs/feature/map/src/lib/+state/map.models.mjs +2 -0
- package/esm2022/libs/feature/map/src/lib/+state/map.reducer.mjs +58 -0
- package/esm2022/libs/feature/map/src/lib/+state/map.selectors.mjs +6 -0
- package/esm2022/libs/feature/map/src/lib/add-layer-from-catalog/add-layer-from-catalog.component.mjs +45 -0
- package/esm2022/libs/feature/map/src/lib/add-layer-from-catalog/add-layer-record-preview/add-layer-record-preview.component.mjs +59 -0
- package/esm2022/libs/feature/map/src/lib/constant/index.mjs +2 -0
- package/esm2022/libs/feature/map/src/lib/constant/map-options.mjs +8 -0
- package/esm2022/libs/feature/map/src/lib/constant/style.constant.mjs +17 -0
- package/esm2022/libs/feature/map/src/lib/feature-info/feature-info.service.mjs +38 -0
- package/esm2022/libs/feature/map/src/lib/feature-map.module.mjs +103 -0
- package/esm2022/libs/feature/map/src/lib/layers-panel/layers-panel.component.mjs +26 -0
- package/esm2022/libs/feature/map/src/lib/manager/map-instance.directive.mjs +19 -0
- package/esm2022/libs/feature/map/src/lib/manager/map-manager.service.mjs +19 -0
- package/esm2022/libs/feature/map/src/lib/map-container/map-container.component.mjs +27 -0
- package/esm2022/libs/feature/map/src/lib/map-context/component/map-context.component.mjs +46 -0
- package/esm2022/libs/feature/map/src/lib/map-context/map-context.model.mjs +9 -0
- package/esm2022/libs/feature/map/src/lib/map-context/map-context.service.mjs +211 -0
- package/esm2022/libs/feature/map/src/lib/style/index.mjs +3 -0
- package/esm2022/libs/feature/map/src/lib/style/map-style.fixtures.mjs +43 -0
- package/esm2022/libs/feature/map/src/lib/style/map-style.service.mjs +96 -0
- package/esm2022/libs/feature/map/src/lib/utils/index.mjs +4 -0
- package/esm2022/libs/feature/map/src/lib/utils/map-utils-wms.service.mjs +38 -0
- package/esm2022/libs/feature/map/src/lib/utils/map-utils.service.mjs +180 -0
- package/esm2022/libs/feature/map/src/lib/utils/projections.mjs +2 -0
- package/esm2022/libs/feature/record/src/index.mjs +10 -0
- package/esm2022/libs/feature/record/src/lib/data-view/data-view.component.mjs +54 -0
- package/esm2022/libs/feature/record/src/lib/data-view-permalink/data-view-permalink.component.mjs +61 -0
- package/esm2022/libs/feature/record/src/lib/data-view-share/data-view-share.component.mjs +25 -0
- package/esm2022/libs/feature/record/src/lib/data-view-web-component/data-view-web-component.component.mjs +52 -0
- package/esm2022/libs/feature/record/src/lib/external-viewer-button/external-viewer-button.component.mjs +49 -0
- package/esm2022/libs/feature/record/src/lib/feature-record.module.mjs +106 -0
- package/esm2022/libs/feature/record/src/lib/gn-ui-version.token.mjs +3 -0
- package/esm2022/libs/feature/record/src/lib/map-view/map-view.component.mjs +135 -0
- package/esm2022/libs/feature/record/src/lib/state/index.mjs +3 -0
- package/esm2022/libs/feature/record/src/lib/state/mdview.actions.mjs +9 -0
- package/esm2022/libs/feature/record/src/lib/state/mdview.effects.mjs +30 -0
- package/esm2022/libs/feature/record/src/lib/state/mdview.facade.mjs +61 -0
- package/esm2022/libs/feature/record/src/lib/state/mdview.reducer.mjs +39 -0
- package/esm2022/libs/feature/record/src/lib/state/mdview.selectors.mjs +11 -0
- package/esm2022/libs/feature/router/src/index.mjs +2 -0
- package/esm2022/libs/feature/router/src/lib/default/SearchRouteReuseStrategy.mjs +21 -0
- package/esm2022/libs/feature/router/src/lib/default/constants.mjs +10 -0
- package/esm2022/libs/feature/router/src/lib/default/container/search-router.container.directive.mjs +40 -0
- package/esm2022/libs/feature/router/src/lib/default/index.mjs +8 -0
- package/esm2022/libs/feature/router/src/lib/default/router.config.mjs +3 -0
- package/esm2022/libs/feature/router/src/lib/default/router.module.mjs +66 -0
- package/esm2022/libs/feature/router/src/lib/default/router.service.mjs +46 -0
- package/esm2022/libs/feature/router/src/lib/default/services/router-search.service.mjs +56 -0
- package/esm2022/libs/feature/router/src/lib/default/state/router.actions.mjs +5 -0
- package/esm2022/libs/feature/router/src/lib/default/state/router.effects.mjs +114 -0
- package/esm2022/libs/feature/router/src/lib/default/state/router.facade.mjs +58 -0
- package/esm2022/libs/feature/router/src/lib/default/state/router.selectors.mjs +14 -0
- package/esm2022/libs/feature/search/src/index.mjs +21 -0
- package/esm2022/libs/feature/search/src/lib/constants.mjs +36 -0
- package/esm2022/libs/feature/search/src/lib/facets/facets-container/facets-container.component.mjs +64 -0
- package/esm2022/libs/feature/search/src/lib/facets/facets.module.mjs +21 -0
- package/esm2022/libs/feature/search/src/lib/facets/facets.service.mjs +232 -0
- package/esm2022/libs/feature/search/src/lib/favorites/favorite-star/favorite-star.component.mjs +104 -0
- package/esm2022/libs/feature/search/src/lib/feature-search.module.mjs +131 -0
- package/esm2022/libs/feature/search/src/lib/filter-dropdown/filter-dropdown.component.mjs +42 -0
- package/esm2022/libs/feature/search/src/lib/fuzzy-search/fuzzy-search.component.mjs +71 -0
- package/esm2022/libs/feature/search/src/lib/records-metrics/records-metrics.component.mjs +44 -0
- package/esm2022/libs/feature/search/src/lib/results-hits-number/results-hits.container.component.mjs +18 -0
- package/esm2022/libs/feature/search/src/lib/results-layout/results-layout.component.mjs +33 -0
- package/esm2022/libs/feature/search/src/lib/results-list/results-list.container.component.mjs +70 -0
- package/esm2022/libs/feature/search/src/lib/sort-by/sort-by.component.mjs +53 -0
- package/esm2022/libs/feature/search/src/lib/state/actions.mjs +208 -0
- package/esm2022/libs/feature/search/src/lib/state/container/search-state.container.directive.mjs +28 -0
- package/esm2022/libs/feature/search/src/lib/state/effects.mjs +107 -0
- package/esm2022/libs/feature/search/src/lib/state/reducer.mjs +286 -0
- package/esm2022/libs/feature/search/src/lib/state/search.facade.mjs +126 -0
- package/esm2022/libs/feature/search/src/lib/state/selectors.mjs +27 -0
- package/esm2022/libs/feature/search/src/lib/utils/operators/search.operator.mjs +31 -0
- package/esm2022/libs/feature/search/src/lib/utils/service/fields.mjs +230 -0
- package/esm2022/libs/feature/search/src/lib/utils/service/fields.service.mjs +73 -0
- package/esm2022/libs/feature/search/src/lib/utils/service/search.service.mjs +34 -0
- package/esm2022/libs/ui/catalog/src/index.mjs +6 -0
- package/esm2022/libs/ui/catalog/src/lib/catalog-title/catalog-title.component.mjs +18 -0
- package/esm2022/libs/ui/catalog/src/lib/language-switcher/language-switcher.component.mjs +46 -0
- package/esm2022/libs/ui/catalog/src/lib/organisation-preview/organisation-preview.component.mjs +27 -0
- package/esm2022/libs/ui/catalog/src/lib/organisations-sort/organisations-sort.component.mjs +40 -0
- package/esm2022/libs/ui/catalog/src/lib/ui-catalog.module.mjs +54 -0
- package/esm2022/libs/ui/dataviz/src/index.mjs +6 -0
- package/esm2022/libs/ui/dataviz/src/lib/chart/chart.component.mjs +165 -0
- package/esm2022/libs/ui/dataviz/src/lib/figure/figure.component.mjs +35 -0
- package/esm2022/libs/ui/dataviz/src/lib/table/table.component.mjs +61 -0
- package/esm2022/libs/ui/dataviz/src/lib/table/table.fixtures.mjs +40 -0
- package/esm2022/libs/ui/dataviz/src/lib/ui-dataviz.module.mjs +19 -0
- package/esm2022/libs/ui/elements/src/index.mjs +21 -0
- package/esm2022/libs/ui/elements/src/lib/api-card/api-card.component.mjs +15 -0
- package/esm2022/libs/ui/elements/src/lib/avatar/avatar.component.mjs +19 -0
- package/esm2022/libs/ui/elements/src/lib/content-ghost/content-ghost.component.mjs +19 -0
- package/esm2022/libs/ui/elements/src/lib/download-item/download-item.component.mjs +30 -0
- package/esm2022/libs/ui/elements/src/lib/downloads-list/downloads-list.component.mjs +82 -0
- package/esm2022/libs/ui/elements/src/lib/link-card/link-card.component.mjs +15 -0
- package/esm2022/libs/ui/elements/src/lib/metadata-catalog/metadata-catalog.component.mjs +14 -0
- package/esm2022/libs/ui/elements/src/lib/metadata-contact/metadata-contact.component.mjs +35 -0
- package/esm2022/libs/ui/elements/src/lib/metadata-info/linkify.directive.mjs +43 -0
- package/esm2022/libs/ui/elements/src/lib/metadata-info/metadata-info.component.mjs +49 -0
- package/esm2022/libs/ui/elements/src/lib/metadata-quality/metadata-quality.component.mjs +64 -0
- package/esm2022/libs/ui/elements/src/lib/metadata-quality-item/metadata-quality-item.component.mjs +23 -0
- package/esm2022/libs/ui/elements/src/lib/pagination/pagination.component.mjs +54 -0
- package/esm2022/libs/ui/elements/src/lib/pagination-buttons/pagination-buttons.component.mjs +66 -0
- package/esm2022/libs/ui/elements/src/lib/related-record-card/related-record-card.component.mjs +18 -0
- package/esm2022/libs/ui/elements/src/lib/search-results-error/search-results-error.component.mjs +29 -0
- package/esm2022/libs/ui/elements/src/lib/thumbnail/thumbnail.component.mjs +92 -0
- package/esm2022/libs/ui/elements/src/lib/ui-elements.module.mjs +144 -0
- package/esm2022/libs/ui/elements/src/lib/user-preview/user-preview.component.mjs +20 -0
- package/esm2022/libs/ui/inputs/src/index.mjs +19 -0
- package/esm2022/libs/ui/inputs/src/lib/autocomplete/autocomplete.component.mjs +126 -0
- package/esm2022/libs/ui/inputs/src/lib/button/button.component.mjs +74 -0
- package/esm2022/libs/ui/inputs/src/lib/check-toggle/check-toggle.component.mjs +29 -0
- package/esm2022/libs/ui/inputs/src/lib/chips-input/chips-input.component.mjs +78 -0
- package/esm2022/libs/ui/inputs/src/lib/copy-text-button/copy-text-button.component.mjs +30 -0
- package/esm2022/libs/ui/inputs/src/lib/drag-and-drop-file-input/drag-and-drop-file-input.component.mjs +36 -0
- package/esm2022/libs/ui/inputs/src/lib/dropdown-multiselect/dropdown-multiselect.component.mjs +190 -0
- package/esm2022/libs/ui/inputs/src/lib/dropdown-multiselect/dropdown-multiselect.model.mjs +2 -0
- package/esm2022/libs/ui/inputs/src/lib/dropdown-selector/dropdown-selector.component.mjs +176 -0
- package/esm2022/libs/ui/inputs/src/lib/dropdown-selector/dropdown-selector.model.mjs +2 -0
- package/esm2022/libs/ui/inputs/src/lib/form-field/form-field-array/form-field-array.component.mjs +11 -0
- package/esm2022/libs/ui/inputs/src/lib/form-field/form-field-file/form-field-file.component.mjs +27 -0
- package/esm2022/libs/ui/inputs/src/lib/form-field/form-field-object/form-field-object.component.mjs +11 -0
- package/esm2022/libs/ui/inputs/src/lib/form-field/form-field-rich/form-field-rich.component.mjs +27 -0
- package/esm2022/libs/ui/inputs/src/lib/form-field/form-field-simple/form-field-simple.component.mjs +49 -0
- package/esm2022/libs/ui/inputs/src/lib/form-field/form-field-spatial-extent/form-field-spatial-extent.component.mjs +11 -0
- package/esm2022/libs/ui/inputs/src/lib/form-field/form-field-temporal-extent/form-field-temporal-extent.component.mjs +11 -0
- package/esm2022/libs/ui/inputs/src/lib/form-field/form-field.component.mjs +74 -0
- package/esm2022/libs/ui/inputs/src/lib/form-field/form-field.model.mjs +2 -0
- package/esm2022/libs/ui/inputs/src/lib/form-field/index.mjs +10 -0
- package/esm2022/libs/ui/inputs/src/lib/navigation-button/navigation-button.component.mjs +16 -0
- package/esm2022/libs/ui/inputs/src/lib/star-toggle/star-toggle.component.mjs +40 -0
- package/esm2022/libs/ui/inputs/src/lib/text-area/text-area.component.mjs +41 -0
- package/esm2022/libs/ui/inputs/src/lib/text-input/text-input.component.mjs +41 -0
- package/esm2022/libs/ui/inputs/src/lib/ui-inputs.module.mjs +149 -0
- package/esm2022/libs/ui/inputs/src/lib/viewport-intersector/viewport-intersector.component.mjs +46 -0
- package/esm2022/libs/ui/layout/src/index.mjs +7 -0
- package/esm2022/libs/ui/layout/src/lib/anchor-link/anchor-link.directive.mjs +64 -0
- package/esm2022/libs/ui/layout/src/lib/carousel/carousel.component.mjs +44 -0
- package/esm2022/libs/ui/layout/src/lib/expandable-panel/expandable-panel.component.mjs +31 -0
- package/esm2022/libs/ui/layout/src/lib/expandable-panel-button/expandable-panel-button.component.mjs +23 -0
- package/esm2022/libs/ui/layout/src/lib/sticky-header/sticky-header.component.mjs +80 -0
- package/esm2022/libs/ui/layout/src/lib/ui-layout.module.mjs +45 -0
- package/esm2022/libs/ui/map/src/index.mjs +4 -0
- package/esm2022/libs/ui/map/src/lib/components/feature-detail/feature-detail.component.mjs +19 -0
- package/esm2022/libs/ui/map/src/lib/components/map/map.component.mjs +40 -0
- package/esm2022/libs/ui/map/src/lib/ui-map.module.mjs +33 -0
- package/esm2022/libs/ui/search/src/index.mjs +21 -0
- package/esm2022/libs/ui/search/src/lib/facets/facet-block/facet-block.component.mjs +125 -0
- package/esm2022/libs/ui/search/src/lib/facets/facet-item/facet-item.component.mjs +64 -0
- package/esm2022/libs/ui/search/src/lib/facets/facet-list/facet-list.component.mjs +48 -0
- package/esm2022/libs/ui/search/src/lib/facets/facets.model.mjs +2 -0
- package/esm2022/libs/ui/search/src/lib/facets/facets.module.mjs +23 -0
- package/esm2022/libs/ui/search/src/lib/facets/fixtures/aggregations-model-response.mjs +50 -0
- package/esm2022/libs/ui/search/src/lib/facets/fixtures/index.mjs +2 -0
- package/esm2022/libs/ui/search/src/lib/record-metric/record-metric.component.mjs +25 -0
- package/esm2022/libs/ui/search/src/lib/record-preview/record-preview.component.mjs +62 -0
- package/esm2022/libs/ui/search/src/lib/record-preview-card/record-preview-card.component.mjs +13 -0
- package/esm2022/libs/ui/search/src/lib/record-preview-feed/record-preview-feed.component.mjs +36 -0
- package/esm2022/libs/ui/search/src/lib/record-preview-list/record-preview-list.component.mjs +15 -0
- package/esm2022/libs/ui/search/src/lib/record-preview-row/record-preview-row.component.mjs +20 -0
- package/esm2022/libs/ui/search/src/lib/record-preview-text/record-preview-text.component.mjs +13 -0
- package/esm2022/libs/ui/search/src/lib/record-preview-title/record-preview-title.component.mjs +13 -0
- package/esm2022/libs/ui/search/src/lib/record-table/record-table.component.mjs +91 -0
- package/esm2022/libs/ui/search/src/lib/results-hits-number/results-hits-number.component.mjs +17 -0
- package/esm2022/libs/ui/search/src/lib/results-list/results-layout.config.mjs +27 -0
- package/esm2022/libs/ui/search/src/lib/results-list/results-list.component.mjs +30 -0
- package/esm2022/libs/ui/search/src/lib/results-list-item/results-list-item.component.mjs +52 -0
- package/esm2022/libs/ui/search/src/lib/ui-search.module.mjs +130 -0
- package/esm2022/libs/ui/widgets/src/index.mjs +9 -0
- package/esm2022/libs/ui/widgets/src/lib/badge/badge.component.mjs +17 -0
- package/esm2022/libs/ui/widgets/src/lib/color-scale/color-scale.component.mjs +11 -0
- package/esm2022/libs/ui/widgets/src/lib/loading-mask/loading-mask.component.mjs +14 -0
- package/esm2022/libs/ui/widgets/src/lib/popup-alert/popup-alert.component.mjs +50 -0
- package/esm2022/libs/ui/widgets/src/lib/progress-bar/progress-bar.component.mjs +44 -0
- package/esm2022/libs/ui/widgets/src/lib/spinning-loader/spinning-loader.component.mjs +11 -0
- package/esm2022/libs/ui/widgets/src/lib/step-bar/step-bar.component.mjs +55 -0
- package/esm2022/libs/ui/widgets/src/lib/ui-widgets.module.mjs +82 -0
- package/esm2022/libs/util/app-config/src/index.mjs +4 -0
- package/esm2022/libs/util/app-config/src/lib/app-config.mjs +219 -0
- package/esm2022/libs/util/app-config/src/lib/constants.mjs +439 -0
- package/esm2022/libs/util/app-config/src/lib/fixtures.mjs +160 -0
- package/esm2022/libs/util/app-config/src/lib/i18n/file-with-overrides.translate.loader.mjs +18 -0
- package/esm2022/libs/util/app-config/src/lib/model.mjs +2 -0
- package/esm2022/libs/util/app-config/src/lib/parse-utils.mjs +88 -0
- package/esm2022/libs/util/data-fetcher/src/index.mjs +5 -0
- package/esm2022/libs/util/data-fetcher/src/lib/data-fetcher.mjs +61 -0
- package/esm2022/libs/util/data-fetcher/src/lib/headers.mjs +22 -0
- package/esm2022/libs/util/data-fetcher/src/lib/model.mjs +54 -0
- package/esm2022/libs/util/data-fetcher/src/lib/readers/base-file.mjs +37 -0
- package/esm2022/libs/util/data-fetcher/src/lib/readers/base.mjs +62 -0
- package/esm2022/libs/util/data-fetcher/src/lib/readers/csv.mjs +37 -0
- package/esm2022/libs/util/data-fetcher/src/lib/readers/excel.mjs +24 -0
- package/esm2022/libs/util/data-fetcher/src/lib/readers/geojson.mjs +21 -0
- package/esm2022/libs/util/data-fetcher/src/lib/readers/gml.mjs +36 -0
- package/esm2022/libs/util/data-fetcher/src/lib/readers/json.mjs +19 -0
- package/esm2022/libs/util/data-fetcher/src/lib/sql-utils.mjs +93 -0
- package/esm2022/libs/util/data-fetcher/src/lib/utils.mjs +205 -0
- package/esm2022/libs/util/i18n/src/index.mjs +8 -0
- package/esm2022/libs/util/i18n/src/lib/embedded.translate.loader.mjs +17 -0
- package/esm2022/libs/util/i18n/src/lib/file.translate.loader.mjs +14 -0
- package/esm2022/libs/util/i18n/src/lib/i18n.constants.mjs +64 -0
- package/esm2022/libs/util/i18n/src/lib/i18n.interceptor.mjs +24 -0
- package/esm2022/libs/util/i18n/src/lib/lang.service.mjs +31 -0
- package/esm2022/libs/util/i18n/src/lib/testing/test.translate.loader.mjs +24 -0
- package/esm2022/libs/util/i18n/src/lib/testing/test.translate.module.mjs +109 -0
- package/esm2022/libs/util/i18n/src/lib/testing/translations.model.mjs +6 -0
- package/esm2022/libs/util/i18n/src/lib/translate.loader.utils.mjs +8 -0
- package/esm2022/libs/util/i18n/src/lib/util-i18n.module.mjs +37 -0
- package/esm2022/libs/util/shared/src/index.mjs +7 -0
- package/esm2022/libs/util/shared/src/lib/image-fallback.directive.mjs +27 -0
- package/esm2022/libs/util/shared/src/lib/links/index.mjs +3 -0
- package/esm2022/libs/util/shared/src/lib/links/link-classifier.service.mjs +60 -0
- package/esm2022/libs/util/shared/src/lib/links/link-utils.mjs +183 -0
- package/esm2022/libs/util/shared/src/lib/pipes/SafePipe.mjs +34 -0
- package/esm2022/libs/util/shared/src/lib/pipes/index.mjs +2 -0
- package/esm2022/libs/util/shared/src/lib/services/index.mjs +4 -0
- package/esm2022/libs/util/shared/src/lib/services/log.service.mjs +22 -0
- package/esm2022/libs/util/shared/src/lib/services/proxy.service.mjs +42 -0
- package/esm2022/libs/util/shared/src/lib/services/theme.service.mjs +86 -0
- package/esm2022/libs/util/shared/src/lib/util-shared.module.mjs +19 -0
- package/esm2022/libs/util/shared/src/lib/utils/event.mjs +12 -0
- package/esm2022/libs/util/shared/src/lib/utils/geojson.mjs +21 -0
- package/esm2022/libs/util/shared/src/lib/utils/index.mjs +8 -0
- package/esm2022/libs/util/shared/src/lib/utils/parse.mjs +33 -0
- package/esm2022/libs/util/shared/src/lib/utils/remove-whitespace.mjs +4 -0
- package/esm2022/libs/util/shared/src/lib/utils/sort-by.mjs +14 -0
- package/esm2022/libs/util/shared/src/lib/utils/strip-html.mjs +5 -0
- package/esm2022/libs/util/shared/src/lib/utils/url.mjs +18 -0
- package/esm2022/translations/de.json +270 -0
- package/esm2022/translations/en.json +289 -0
- package/esm2022/translations/es.json +289 -0
- package/esm2022/translations/fr.json +289 -0
- package/esm2022/translations/it.json +289 -0
- package/esm2022/translations/nl.json +289 -0
- package/esm2022/translations/pt.json +289 -0
- package/fesm2022/geonetwork-ui.mjs +27093 -0
- package/fesm2022/geonetwork-ui.mjs.map +1 -0
- package/geonetwork-ui.d.ts.map +1 -0
- package/index.d.ts +23 -0
- package/index.d.ts.map +1 -0
- package/index.ts +23 -0
- package/libs/api/metadata-converter/src/index.d.ts +5 -0
- package/libs/api/metadata-converter/src/index.d.ts.map +1 -0
- package/libs/api/metadata-converter/src/lib/common/distribution.mapper.d.ts +4 -0
- package/libs/api/metadata-converter/src/lib/common/distribution.mapper.d.ts.map +1 -0
- package/libs/api/metadata-converter/src/lib/convert-utils.d.ts +2 -0
- package/libs/api/metadata-converter/src/lib/convert-utils.d.ts.map +1 -0
- package/libs/api/metadata-converter/src/lib/function-utils.d.ts +27 -0
- package/libs/api/metadata-converter/src/lib/function-utils.d.ts.map +1 -0
- package/libs/api/metadata-converter/src/lib/gn4/atomic-operations.d.ts +17 -0
- package/libs/api/metadata-converter/src/lib/gn4/atomic-operations.d.ts.map +1 -0
- package/libs/api/metadata-converter/src/lib/gn4/gn4.field.mapper.d.ts +25 -0
- package/libs/api/metadata-converter/src/lib/gn4/gn4.field.mapper.d.ts.map +1 -0
- package/libs/api/metadata-converter/src/lib/gn4/gn4.metadata.mapper.d.ts +16 -0
- package/libs/api/metadata-converter/src/lib/gn4/gn4.metadata.mapper.d.ts.map +1 -0
- package/libs/api/metadata-converter/src/lib/gn4/metadata-url.service.d.ts +12 -0
- package/libs/api/metadata-converter/src/lib/gn4/metadata-url.service.d.ts.map +1 -0
- package/libs/api/metadata-converter/src/lib/gn4/types/elasticsearch.model.d.ts +37 -0
- package/libs/api/metadata-converter/src/lib/gn4/types/elasticsearch.model.d.ts.map +1 -0
- package/libs/api/metadata-converter/src/lib/gn4/types/index.d.ts +4 -0
- package/libs/api/metadata-converter/src/lib/gn4/types/index.d.ts.map +1 -0
- package/libs/api/metadata-converter/src/lib/gn4/types/metadata.model.d.ts +192 -0
- package/libs/api/metadata-converter/src/lib/gn4/types/metadata.model.d.ts.map +1 -0
- package/libs/api/metadata-converter/src/lib/gn4/types/search.model.d.ts +78 -0
- package/libs/api/metadata-converter/src/lib/gn4/types/search.model.d.ts.map +1 -0
- package/libs/api/metadata-converter/src/lib/iso19139/codelists/role.mapper.d.ts +3 -0
- package/libs/api/metadata-converter/src/lib/iso19139/codelists/role.mapper.d.ts.map +1 -0
- package/libs/api/metadata-converter/src/lib/iso19139/codelists/status.mapper.d.ts +3 -0
- package/libs/api/metadata-converter/src/lib/iso19139/codelists/status.mapper.d.ts.map +1 -0
- package/libs/api/metadata-converter/src/lib/iso19139/codelists/update-frequency.mapper.d.ts +3 -0
- package/libs/api/metadata-converter/src/lib/iso19139/codelists/update-frequency.mapper.d.ts.map +1 -0
- package/libs/api/metadata-converter/src/lib/iso19139/converter.d.ts +4 -0
- package/libs/api/metadata-converter/src/lib/iso19139/converter.d.ts.map +1 -0
- package/libs/api/metadata-converter/src/lib/iso19139/read-parts.d.ts +29 -0
- package/libs/api/metadata-converter/src/lib/iso19139/read-parts.d.ts.map +1 -0
- package/libs/api/metadata-converter/src/lib/iso19139/write-parts.d.ts +24 -0
- package/libs/api/metadata-converter/src/lib/iso19139/write-parts.d.ts.map +1 -0
- package/libs/api/metadata-converter/src/lib/metadata-base.mapper.d.ts +13 -0
- package/libs/api/metadata-converter/src/lib/metadata-base.mapper.d.ts.map +1 -0
- package/libs/api/metadata-converter/src/lib/xml-utils.d.ts +43 -0
- package/libs/api/metadata-converter/src/lib/xml-utils.d.ts.map +1 -0
- package/libs/api/repository/src/index.d.ts +3 -0
- package/libs/api/repository/src/index.d.ts.map +1 -0
- package/libs/api/repository/src/lib/gn4/auth/auth.service.d.ts +26 -0
- package/libs/api/repository/src/lib/gn4/auth/auth.service.d.ts.map +1 -0
- package/libs/api/repository/src/lib/gn4/auth/avatar.service.interface.d.ts +5 -0
- package/libs/api/repository/src/lib/gn4/auth/avatar.service.interface.d.ts.map +1 -0
- package/libs/api/repository/src/lib/gn4/auth/gravatar.service.d.ts +14 -0
- package/libs/api/repository/src/lib/gn4/auth/gravatar.service.d.ts.map +1 -0
- package/libs/api/repository/src/lib/gn4/auth/index.d.ts +4 -0
- package/libs/api/repository/src/lib/gn4/auth/index.d.ts.map +1 -0
- package/libs/api/repository/src/lib/gn4/elasticsearch/constant.d.ts +11 -0
- package/libs/api/repository/src/lib/gn4/elasticsearch/constant.d.ts.map +1 -0
- package/libs/api/repository/src/lib/gn4/elasticsearch/elasticsearch.service.d.ts +66 -0
- package/libs/api/repository/src/lib/gn4/elasticsearch/elasticsearch.service.d.ts.map +1 -0
- package/libs/api/repository/src/lib/gn4/elasticsearch/index.d.ts +3 -0
- package/libs/api/repository/src/lib/gn4/elasticsearch/index.d.ts.map +1 -0
- package/libs/api/repository/src/lib/gn4/favorites/favorites.service.d.ts +20 -0
- package/libs/api/repository/src/lib/gn4/favorites/favorites.service.d.ts.map +1 -0
- package/libs/api/repository/src/lib/gn4/gn4-repository.d.ts +24 -0
- package/libs/api/repository/src/lib/gn4/gn4-repository.d.ts.map +1 -0
- package/libs/api/repository/src/lib/gn4/index.d.ts +7 -0
- package/libs/api/repository/src/lib/gn4/index.d.ts.map +1 -0
- package/libs/api/repository/src/lib/gn4/organizations/index.d.ts +6 -0
- package/libs/api/repository/src/lib/gn4/organizations/index.d.ts.map +1 -0
- package/libs/api/repository/src/lib/gn4/organizations/organizations-from-groups.service.d.ts +28 -0
- package/libs/api/repository/src/lib/gn4/organizations/organizations-from-groups.service.d.ts.map +1 -0
- package/libs/api/repository/src/lib/gn4/organizations/organizations-from-metadata.service.d.ts +40 -0
- package/libs/api/repository/src/lib/gn4/organizations/organizations-from-metadata.service.d.ts.map +1 -0
- package/libs/api/repository/src/lib/gn4/settings/gn4-settings.service.d.ts +12 -0
- package/libs/api/repository/src/lib/gn4/settings/gn4-settings.service.d.ts.map +1 -0
- package/libs/api/repository/src/lib/metadata-language.d.ts +3 -0
- package/libs/api/repository/src/lib/metadata-language.d.ts.map +1 -0
- package/libs/api/repository/src/lib/repository-url.d.ts +3 -0
- package/libs/api/repository/src/lib/repository-url.d.ts.map +1 -0
- package/libs/common/domain/src/lib/dataviz-configuration.model.d.ts +10 -0
- package/libs/common/domain/src/lib/dataviz-configuration.model.d.ts.map +1 -0
- package/libs/common/domain/src/lib/organizations.service.interface.d.ts +12 -0
- package/libs/common/domain/src/lib/organizations.service.interface.d.ts.map +1 -0
- package/libs/common/domain/src/lib/record/contact.model.d.ts +14 -0
- package/libs/common/domain/src/lib/record/contact.model.d.ts.map +1 -0
- package/libs/common/domain/src/lib/record/index.d.ts +4 -0
- package/libs/common/domain/src/lib/record/index.d.ts.map +1 -0
- package/libs/common/domain/src/lib/record/metadata.model.d.ts +111 -0
- package/libs/common/domain/src/lib/record/metadata.model.d.ts.map +1 -0
- package/libs/common/domain/src/lib/record/organization.model.d.ts +8 -0
- package/libs/common/domain/src/lib/record/organization.model.d.ts.map +1 -0
- package/libs/common/domain/src/lib/records-repository.interface.d.ts +12 -0
- package/libs/common/domain/src/lib/records-repository.interface.d.ts.map +1 -0
- package/libs/common/domain/src/lib/search/aggregation.model.d.ts +44 -0
- package/libs/common/domain/src/lib/search/aggregation.model.d.ts.map +1 -0
- package/libs/common/domain/src/lib/search/filter.model.d.ts +6 -0
- package/libs/common/domain/src/lib/search/filter.model.d.ts.map +1 -0
- package/libs/common/domain/src/lib/search/index.d.ts +5 -0
- package/libs/common/domain/src/lib/search/index.d.ts.map +1 -0
- package/libs/common/domain/src/lib/search/search.model.d.ts +21 -0
- package/libs/common/domain/src/lib/search/search.model.d.ts.map +1 -0
- package/libs/common/domain/src/lib/search/sort-by.model.d.ts +3 -0
- package/libs/common/domain/src/lib/search/sort-by.model.d.ts.map +1 -0
- package/libs/common/domain/src/lib/user.model.d.ts +11 -0
- package/libs/common/domain/src/lib/user.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/fixtures/index.d.ts +3 -0
- package/libs/data-access/gn4/src/fixtures/index.d.ts.map +1 -0
- package/libs/data-access/gn4/src/fixtures/site.fixtures.d.ts +61 -0
- package/libs/data-access/gn4/src/fixtures/site.fixtures.d.ts.map +1 -0
- package/libs/data-access/gn4/src/fixtures/ui.fixtures.d.ts +5 -0
- package/libs/data-access/gn4/src/fixtures/ui.fixtures.d.ts.map +1 -0
- package/libs/data-access/gn4/src/index.d.ts +3 -0
- package/libs/data-access/gn4/src/index.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/api/api.d.ts +60 -0
- package/libs/data-access/gn4/src/openapi/api/api.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/api/customstyle.api.service.d.ts +54 -0
- package/libs/data-access/gn4/src/openapi/api/customstyle.api.service.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/api/groups.api.service.d.ts +116 -0
- package/libs/data-access/gn4/src/openapi/api/groups.api.service.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/api/harvesters.api.service.d.ts +33 -0
- package/libs/data-access/gn4/src/openapi/api/harvesters.api.service.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/api/identifiers.api.service.d.ts +65 -0
- package/libs/data-access/gn4/src/openapi/api/identifiers.api.service.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/api/languages.api.service.d.ts +33 -0
- package/libs/data-access/gn4/src/openapi/api/languages.api.service.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/api/links.api.service.d.ts +86 -0
- package/libs/data-access/gn4/src/openapi/api/links.api.service.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/api/logos.api.service.d.ts +63 -0
- package/libs/data-access/gn4/src/openapi/api/logos.api.service.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/api/mapservers.api.service.d.ts +137 -0
- package/libs/data-access/gn4/src/openapi/api/mapservers.api.service.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/api/me.api.service.d.ts +33 -0
- package/libs/data-access/gn4/src/openapi/api/me.api.service.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/api/operations.api.service.d.ts +33 -0
- package/libs/data-access/gn4/src/openapi/api/operations.api.service.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/api/pages.api.service.d.ts +70 -0
- package/libs/data-access/gn4/src/openapi/api/pages.api.service.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/api/processes.api.service.d.ts +109 -0
- package/libs/data-access/gn4/src/openapi/api/processes.api.service.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/api/records.api.service.d.ts +1433 -0
- package/libs/data-access/gn4/src/openapi/api/records.api.service.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/api/regions.api.service.d.ts +50 -0
- package/libs/data-access/gn4/src/openapi/api/regions.api.service.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/api/registries.api.service.d.ts +313 -0
- package/libs/data-access/gn4/src/openapi/api/registries.api.service.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/api/related.api.service.d.ts +41 -0
- package/libs/data-access/gn4/src/openapi/api/related.api.service.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/api/search.api.service.d.ts +34 -0
- package/libs/data-access/gn4/src/openapi/api/search.api.service.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/api/selections.api.service.d.ts +64 -0
- package/libs/data-access/gn4/src/openapi/api/selections.api.service.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/api/site.api.service.d.ts +284 -0
- package/libs/data-access/gn4/src/openapi/api/site.api.service.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/api/sources.api.service.d.ts +50 -0
- package/libs/data-access/gn4/src/openapi/api/sources.api.service.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/api/standards.api.service.d.ts +196 -0
- package/libs/data-access/gn4/src/openapi/api/standards.api.service.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/api/status.api.service.d.ts +47 -0
- package/libs/data-access/gn4/src/openapi/api/status.api.service.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/api/tags.api.service.d.ts +63 -0
- package/libs/data-access/gn4/src/openapi/api/tags.api.service.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/api/tools.api.service.d.ts +213 -0
- package/libs/data-access/gn4/src/openapi/api/tools.api.service.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/api/ui.api.service.d.ts +63 -0
- package/libs/data-access/gn4/src/openapi/api/ui.api.service.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/api/userfeedback.api.service.d.ts +172 -0
- package/libs/data-access/gn4/src/openapi/api/userfeedback.api.service.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/api/users.api.service.d.ts +246 -0
- package/libs/data-access/gn4/src/openapi/api/users.api.service.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/api/usersearches.api.service.d.ts +144 -0
- package/libs/data-access/gn4/src/openapi/api/usersearches.api.service.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/api/userselections.api.service.d.ts +97 -0
- package/libs/data-access/gn4/src/openapi/api/userselections.api.service.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/api.module.d.ts +12 -0
- package/libs/data-access/gn4/src/openapi/api.module.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/configuration.d.ts +81 -0
- package/libs/data-access/gn4/src/openapi/configuration.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/encoder.d.ts +12 -0
- package/libs/data-access/gn4/src/openapi/encoder.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/index.d.ts +6 -0
- package/libs/data-access/gn4/src/openapi/index.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/address.api.model.d.ts +20 -0
- package/libs/data-access/gn4/src/openapi/model/address.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/anonymousMapserver.api.model.d.ts +29 -0
- package/libs/data-access/gn4/src/openapi/model/anonymousMapserver.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/associated.api.model.d.ts +16 -0
- package/libs/data-access/gn4/src/openapi/model/associated.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/associatedSiblingMetadataItem.api.model.d.ts +26 -0
- package/libs/data-access/gn4/src/openapi/model/associatedSiblingMetadataItem.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/attributeTable.api.model.d.ts +16 -0
- package/libs/data-access/gn4/src/openapi/model/attributeTable.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/batchEditParameter.api.model.d.ts +17 -0
- package/libs/data-access/gn4/src/openapi/model/batchEditParameter.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/batchEditing.api.model.d.ts +16 -0
- package/libs/data-access/gn4/src/openapi/model/batchEditing.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/category.api.model.d.ts +16 -0
- package/libs/data-access/gn4/src/openapi/model/category.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/categoryResponse.api.model.d.ts +17 -0
- package/libs/data-access/gn4/src/openapi/model/categoryResponse.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/children.api.model.d.ts +16 -0
- package/libs/data-access/gn4/src/openapi/model/children.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/codelist.api.model.d.ts +18 -0
- package/libs/data-access/gn4/src/openapi/model/codelist.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/crs.api.model.d.ts +19 -0
- package/libs/data-access/gn4/src/openapi/model/crs.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/dataset.api.model.d.ts +16 -0
- package/libs/data-access/gn4/src/openapi/model/dataset.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/description.api.model.d.ts +16 -0
- package/libs/data-access/gn4/src/openapi/model/description.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/element.api.model.d.ts +21 -0
- package/libs/data-access/gn4/src/openapi/model/element.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/entry.api.model.d.ts +18 -0
- package/libs/data-access/gn4/src/openapi/model/entry.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/extentDto.api.model.d.ts +18 -0
- package/libs/data-access/gn4/src/openapi/model/extentDto.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/externalResourceManagementProperties.api.model.d.ts +17 -0
- package/libs/data-access/gn4/src/openapi/model/externalResourceManagementProperties.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/fCRelatedMetadataItem.api.model.d.ts +25 -0
- package/libs/data-access/gn4/src/openapi/model/fCRelatedMetadataItem.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/fcat.api.model.d.ts +16 -0
- package/libs/data-access/gn4/src/openapi/model/fcat.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/featureResponse.api.model.d.ts +17 -0
- package/libs/data-access/gn4/src/openapi/model/featureResponse.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/featureType.api.model.d.ts +16 -0
- package/libs/data-access/gn4/src/openapi/model/featureType.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/field.api.model.d.ts +22 -0
- package/libs/data-access/gn4/src/openapi/model/field.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/grantedAuthority.api.model.d.ts +15 -0
- package/libs/data-access/gn4/src/openapi/model/grantedAuthority.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/group.api.model.d.ts +29 -0
- package/libs/data-access/gn4/src/openapi/model/group.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/groupOperations.api.model.d.ts +18 -0
- package/libs/data-access/gn4/src/openapi/model/groupOperations.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/groupPrivilege.api.model.d.ts +44 -0
- package/libs/data-access/gn4/src/openapi/model/groupPrivilege.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/hasfeaturecats.api.model.d.ts +16 -0
- package/libs/data-access/gn4/src/openapi/model/hasfeaturecats.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/hassource.api.model.d.ts +16 -0
- package/libs/data-access/gn4/src/openapi/model/hassource.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/iProcessingReport.api.model.d.ts +21 -0
- package/libs/data-access/gn4/src/openapi/model/iProcessingReport.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/iSODate.api.model.d.ts +28 -0
- package/libs/data-access/gn4/src/openapi/model/iSODate.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/infoReport.api.model.d.ts +19 -0
- package/libs/data-access/gn4/src/openapi/model/infoReport.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/inlineObject1.api.model.d.ts +15 -0
- package/libs/data-access/gn4/src/openapi/model/inlineObject1.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/inlineObject2.api.model.d.ts +15 -0
- package/libs/data-access/gn4/src/openapi/model/inlineObject2.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/inlineObject3.api.model.d.ts +15 -0
- package/libs/data-access/gn4/src/openapi/model/inlineObject3.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/isoLanguage.api.model.d.ts +20 -0
- package/libs/data-access/gn4/src/openapi/model/isoLanguage.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/keywordBean.api.model.d.ts +30 -0
- package/libs/data-access/gn4/src/openapi/model/keywordBean.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/link.api.model.d.ts +32 -0
- package/libs/data-access/gn4/src/openapi/model/link.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/linkStatus.api.model.d.ts +21 -0
- package/libs/data-access/gn4/src/openapi/model/linkStatus.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/listRegionsResponse.api.model.d.ts +22 -0
- package/libs/data-access/gn4/src/openapi/model/listRegionsResponse.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/localizedString.api.model.d.ts +17 -0
- package/libs/data-access/gn4/src/openapi/model/localizedString.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/logFileResponse.api.model.d.ts +16 -0
- package/libs/data-access/gn4/src/openapi/model/logFileResponse.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/mapServer.api.model.d.ts +28 -0
- package/libs/data-access/gn4/src/openapi/model/mapServer.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/meResponse.api.model.d.ts +27 -0
- package/libs/data-access/gn4/src/openapi/model/meResponse.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/metadataCategory.api.model.d.ts +19 -0
- package/libs/data-access/gn4/src/openapi/model/metadataCategory.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/metadataIdentifierTemplate.api.model.d.ts +20 -0
- package/libs/data-access/gn4/src/openapi/model/metadataIdentifierTemplate.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/metadataLink.api.model.d.ts +16 -0
- package/libs/data-access/gn4/src/openapi/model/metadataLink.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/metadataProcessingReport.api.model.d.ts +39 -0
- package/libs/data-access/gn4/src/openapi/model/metadataProcessingReport.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/metadataReplacementProcessingReport.api.model.d.ts +47 -0
- package/libs/data-access/gn4/src/openapi/model/metadataReplacementProcessingReport.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/metadataResource.api.model.d.ts +33 -0
- package/libs/data-access/gn4/src/openapi/model/metadataResource.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/metadataSchema.api.model.d.ts +38 -0
- package/libs/data-access/gn4/src/openapi/model/metadataSchema.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/metadataStatus.api.model.d.ts +32 -0
- package/libs/data-access/gn4/src/openapi/model/metadataStatus.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/metadataStatusResponse.api.model.d.ts +44 -0
- package/libs/data-access/gn4/src/openapi/model/metadataStatusResponse.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/metadataWorkflowStatusResponse.api.model.d.ts +21 -0
- package/libs/data-access/gn4/src/openapi/model/metadataWorkflowStatusResponse.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/models.d.ts +110 -0
- package/libs/data-access/gn4/src/openapi/model/models.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/multilingualValue.api.model.d.ts +16 -0
- package/libs/data-access/gn4/src/openapi/model/multilingualValue.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/online.api.model.d.ts +16 -0
- package/libs/data-access/gn4/src/openapi/model/online.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/operation.api.model.d.ts +32 -0
- package/libs/data-access/gn4/src/openapi/model/operation.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/ownerResponse.api.model.d.ts +17 -0
- package/libs/data-access/gn4/src/openapi/model/ownerResponse.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/pageJSONWrapper.api.model.d.ts +49 -0
- package/libs/data-access/gn4/src/openapi/model/pageJSONWrapper.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/pageLink.api.model.d.ts +28 -0
- package/libs/data-access/gn4/src/openapi/model/pageLink.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/pageable.api.model.d.ts +21 -0
- package/libs/data-access/gn4/src/openapi/model/pageable.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/paginatedUserSearchResponse.api.model.d.ts +17 -0
- package/libs/data-access/gn4/src/openapi/model/paginatedUserSearchResponse.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/parent.api.model.d.ts +16 -0
- package/libs/data-access/gn4/src/openapi/model/parent.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/passwordUpdateParameter.api.model.d.ts +16 -0
- package/libs/data-access/gn4/src/openapi/model/passwordUpdateParameter.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/processingReport.api.model.d.ts +25 -0
- package/libs/data-access/gn4/src/openapi/model/processingReport.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/ratingAverage.api.model.d.ts +20 -0
- package/libs/data-access/gn4/src/openapi/model/ratingAverage.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/ratingCriteria.api.model.d.ts +20 -0
- package/libs/data-access/gn4/src/openapi/model/ratingCriteria.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/regionResponse.api.model.d.ts +24 -0
- package/libs/data-access/gn4/src/openapi/model/regionResponse.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/related.api.model.d.ts +16 -0
- package/libs/data-access/gn4/src/openapi/model/related.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/relatedLinkItem.api.model.d.ts +24 -0
- package/libs/data-access/gn4/src/openapi/model/relatedLinkItem.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/relatedMetadataItem.api.model.d.ts +23 -0
- package/libs/data-access/gn4/src/openapi/model/relatedMetadataItem.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/relatedResponse.api.model.d.ts +40 -0
- package/libs/data-access/gn4/src/openapi/model/relatedResponse.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/relatedSiblingMetadataItem.api.model.d.ts +25 -0
- package/libs/data-access/gn4/src/openapi/model/relatedSiblingMetadataItem.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/relatedThumbnailItem.api.model.d.ts +19 -0
- package/libs/data-access/gn4/src/openapi/model/relatedThumbnailItem.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/replaceEntryChange.api.model.d.ts +17 -0
- package/libs/data-access/gn4/src/openapi/model/replaceEntryChange.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/replaceReport.api.model.d.ts +21 -0
- package/libs/data-access/gn4/src/openapi/model/replaceReport.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/report.api.model.d.ts +19 -0
- package/libs/data-access/gn4/src/openapi/model/report.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/reports.api.model.d.ts +16 -0
- package/libs/data-access/gn4/src/openapi/model/reports.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/savedQuery.api.model.d.ts +19 -0
- package/libs/data-access/gn4/src/openapi/model/savedQuery.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/section.api.model.d.ts +17 -0
- package/libs/data-access/gn4/src/openapi/model/section.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/selection.api.model.d.ts +20 -0
- package/libs/data-access/gn4/src/openapi/model/selection.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/service.api.model.d.ts +16 -0
- package/libs/data-access/gn4/src/openapi/model/service.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/setting.api.model.d.ts +29 -0
- package/libs/data-access/gn4/src/openapi/model/setting.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/settingsListResponse.api.model.d.ts +16 -0
- package/libs/data-access/gn4/src/openapi/model/settingsListResponse.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/sharingParameter.api.model.d.ts +17 -0
- package/libs/data-access/gn4/src/openapi/model/sharingParameter.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/sharingResponse.api.model.d.ts +18 -0
- package/libs/data-access/gn4/src/openapi/model/sharingResponse.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/siblings.api.model.d.ts +16 -0
- package/libs/data-access/gn4/src/openapi/model/siblings.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/simpleMetadataProcessingReport.api.model.d.ts +39 -0
- package/libs/data-access/gn4/src/openapi/model/simpleMetadataProcessingReport.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/siteInformation.api.model.d.ts +29 -0
- package/libs/data-access/gn4/src/openapi/model/siteInformation.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/sort.api.model.d.ts +17 -0
- package/libs/data-access/gn4/src/openapi/model/sort.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/source.api.model.d.ts +16 -0
- package/libs/data-access/gn4/src/openapi/model/source.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/status.api.model.d.ts +28 -0
- package/libs/data-access/gn4/src/openapi/model/status.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/statusValue.api.model.d.ts +45 -0
- package/libs/data-access/gn4/src/openapi/model/statusValue.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/suggestionType.api.model.d.ts +21 -0
- package/libs/data-access/gn4/src/openapi/model/suggestionType.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/systemInfo.api.model.d.ts +24 -0
- package/libs/data-access/gn4/src/openapi/model/systemInfo.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/thumbnail.api.model.d.ts +16 -0
- package/libs/data-access/gn4/src/openapi/model/thumbnail.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/transferRequest.api.model.d.ts +18 -0
- package/libs/data-access/gn4/src/openapi/model/transferRequest.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/uiSetting.api.model.d.ts +16 -0
- package/libs/data-access/gn4/src/openapi/model/uiSetting.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/user.api.model.d.ts +47 -0
- package/libs/data-access/gn4/src/openapi/model/user.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/userDto.api.model.d.ts +31 -0
- package/libs/data-access/gn4/src/openapi/model/userDto.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/userFeedbackDTO.api.model.d.ts +34 -0
- package/libs/data-access/gn4/src/openapi/model/userFeedbackDTO.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/userGroup.api.model.d.ts +33 -0
- package/libs/data-access/gn4/src/openapi/model/userGroup.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/userGroupId.api.model.d.ts +29 -0
- package/libs/data-access/gn4/src/openapi/model/userGroupId.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/userGroupsResponse.api.model.d.ts +19 -0
- package/libs/data-access/gn4/src/openapi/model/userGroupsResponse.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/userRegisterDto.api.model.d.ts +23 -0
- package/libs/data-access/gn4/src/openapi/model/userRegisterDto.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/userSearchDto.api.model.d.ts +25 -0
- package/libs/data-access/gn4/src/openapi/model/userSearchDto.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/userSecurity.api.model.d.ts +25 -0
- package/libs/data-access/gn4/src/openapi/model/userSecurity.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/values.api.model.d.ts +17 -0
- package/libs/data-access/gn4/src/openapi/model/values.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/model/xsltMetadataProcessingReport.api.model.d.ts +41 -0
- package/libs/data-access/gn4/src/openapi/model/xsltMetadataProcessingReport.api.model.d.ts.map +1 -0
- package/libs/data-access/gn4/src/openapi/variables.d.ts +9 -0
- package/libs/data-access/gn4/src/openapi/variables.d.ts.map +1 -0
- package/libs/feature/auth/src/index.d.ts +2 -0
- package/libs/feature/auth/src/index.d.ts.map +1 -0
- package/libs/feature/auth/src/lib/feature-auth.module.d.ts +8 -0
- package/libs/feature/auth/src/lib/feature-auth.module.d.ts.map +1 -0
- package/libs/feature/catalog/src/index.d.ts +8 -0
- package/libs/feature/catalog/src/index.d.ts.map +1 -0
- package/libs/feature/catalog/src/lib/feature-catalog.module.d.ts +18 -0
- package/libs/feature/catalog/src/lib/feature-catalog.module.d.ts.map +1 -0
- package/libs/feature/catalog/src/lib/organisations/organisations.component.d.ts +26 -0
- package/libs/feature/catalog/src/lib/organisations/organisations.component.d.ts.map +1 -0
- package/libs/feature/catalog/src/lib/records/records.service.d.ts +11 -0
- package/libs/feature/catalog/src/lib/records/records.service.d.ts.map +1 -0
- package/libs/feature/catalog/src/lib/site-title/site-title.component.d.ts +11 -0
- package/libs/feature/catalog/src/lib/site-title/site-title.component.d.ts.map +1 -0
- package/libs/feature/catalog/src/lib/source-label/source-label.component.d.ts +12 -0
- package/libs/feature/catalog/src/lib/source-label/source-label.component.d.ts.map +1 -0
- package/libs/feature/catalog/src/lib/sources/sources.model.d.ts +8 -0
- package/libs/feature/catalog/src/lib/sources/sources.model.d.ts.map +1 -0
- package/libs/feature/catalog/src/lib/sources/sources.service.d.ts +15 -0
- package/libs/feature/catalog/src/lib/sources/sources.service.d.ts.map +1 -0
- package/libs/feature/dataviz/src/index.d.ts +7 -0
- package/libs/feature/dataviz/src/index.d.ts.map +1 -0
- package/libs/feature/dataviz/src/lib/chart-view/chart-view.component.d.ts +54 -0
- package/libs/feature/dataviz/src/lib/chart-view/chart-view.component.d.ts.map +1 -0
- package/libs/feature/dataviz/src/lib/feature-dataviz.module.d.ts +20 -0
- package/libs/feature/dataviz/src/lib/feature-dataviz.module.d.ts.map +1 -0
- package/libs/feature/dataviz/src/lib/figure/figure-container/figure-container.component.d.ts +19 -0
- package/libs/feature/dataviz/src/lib/figure/figure-container/figure-container.component.d.ts.map +1 -0
- package/libs/feature/dataviz/src/lib/figure/figure.service.d.ts +10 -0
- package/libs/feature/dataviz/src/lib/figure/figure.service.d.ts.map +1 -0
- package/libs/feature/dataviz/src/lib/geo-table-view/geo-table-view.component.d.ts +39 -0
- package/libs/feature/dataviz/src/lib/geo-table-view/geo-table-view.component.d.ts.map +1 -0
- package/libs/feature/dataviz/src/lib/service/data.service.d.ts +19 -0
- package/libs/feature/dataviz/src/lib/service/data.service.d.ts.map +1 -0
- package/libs/feature/dataviz/src/lib/table-view/table-view.component.d.ts +25 -0
- package/libs/feature/dataviz/src/lib/table-view/table-view.component.d.ts.map +1 -0
- package/libs/feature/editor/src/index.d.ts +7 -0
- package/libs/feature/editor/src/index.d.ts.map +1 -0
- package/libs/feature/editor/src/lib/components/wizard/wizard.component.d.ts +31 -0
- package/libs/feature/editor/src/lib/components/wizard/wizard.component.d.ts.map +1 -0
- package/libs/feature/editor/src/lib/components/wizard-field/wizard-field.component.d.ts +44 -0
- package/libs/feature/editor/src/lib/components/wizard-field/wizard-field.component.d.ts.map +1 -0
- package/libs/feature/editor/src/lib/components/wizard-summarize/wizard-summarize.component.d.ts +17 -0
- package/libs/feature/editor/src/lib/components/wizard-summarize/wizard-summarize.component.d.ts.map +1 -0
- package/libs/feature/editor/src/lib/feature-editor.module.d.ts +20 -0
- package/libs/feature/editor/src/lib/feature-editor.module.d.ts.map +1 -0
- package/libs/feature/editor/src/lib/models/index.d.ts +3 -0
- package/libs/feature/editor/src/lib/models/index.d.ts.map +1 -0
- package/libs/feature/editor/src/lib/models/wizard-field.model.d.ts +10 -0
- package/libs/feature/editor/src/lib/models/wizard-field.model.d.ts.map +1 -0
- package/libs/feature/editor/src/lib/models/wizard-field.type.d.ts +8 -0
- package/libs/feature/editor/src/lib/models/wizard-field.type.d.ts.map +1 -0
- package/libs/feature/editor/src/lib/record-form/record-form.component.d.ts +11 -0
- package/libs/feature/editor/src/lib/record-form/record-form.component.d.ts.map +1 -0
- package/libs/feature/editor/src/lib/services/editor.service.d.ts +27 -0
- package/libs/feature/editor/src/lib/services/editor.service.d.ts.map +1 -0
- package/libs/feature/editor/src/lib/services/wizard.service.d.ts +33 -0
- package/libs/feature/editor/src/lib/services/wizard.service.d.ts.map +1 -0
- package/libs/feature/map/src/index.d.ts +20 -0
- package/libs/feature/map/src/index.d.ts.map +1 -0
- package/libs/feature/map/src/lib/+state/map.actions.d.ts +40 -0
- package/libs/feature/map/src/lib/+state/map.actions.d.ts.map +1 -0
- package/libs/feature/map/src/lib/+state/map.effects.d.ts +9 -0
- package/libs/feature/map/src/lib/+state/map.effects.d.ts.map +1 -0
- package/libs/feature/map/src/lib/+state/map.facade.d.ts +19 -0
- package/libs/feature/map/src/lib/+state/map.facade.d.ts.map +1 -0
- package/libs/feature/map/src/lib/+state/map.models.d.ts +9 -0
- package/libs/feature/map/src/lib/+state/map.models.d.ts.map +1 -0
- package/libs/feature/map/src/lib/+state/map.reducer.d.ts +12 -0
- package/libs/feature/map/src/lib/+state/map.reducer.d.ts.map +1 -0
- package/libs/feature/map/src/lib/+state/map.selectors.d.ts +4 -0
- package/libs/feature/map/src/lib/+state/map.selectors.d.ts.map +1 -0
- package/libs/feature/map/src/lib/add-layer-from-catalog/add-layer-from-catalog.component.d.ts +11 -0
- package/libs/feature/map/src/lib/add-layer-from-catalog/add-layer-from-catalog.component.d.ts.map +1 -0
- package/libs/feature/map/src/lib/add-layer-from-catalog/add-layer-record-preview/add-layer-record-preview.component.d.ts +23 -0
- package/libs/feature/map/src/lib/add-layer-from-catalog/add-layer-record-preview/add-layer-record-preview.component.d.ts.map +1 -0
- package/libs/feature/map/src/lib/constant/index.d.ts +2 -0
- package/libs/feature/map/src/lib/constant/index.d.ts.map +1 -0
- package/libs/feature/map/src/lib/constant/map-options.d.ts +9 -0
- package/libs/feature/map/src/lib/constant/map-options.d.ts.map +1 -0
- package/libs/feature/map/src/lib/constant/style.constant.d.ts +4 -0
- package/libs/feature/map/src/lib/constant/style.constant.d.ts.map +1 -0
- package/libs/feature/map/src/lib/feature-info/feature-info.service.d.ts +16 -0
- package/libs/feature/map/src/lib/feature-info/feature-info.service.d.ts.map +1 -0
- package/libs/feature/map/src/lib/feature-map.module.d.ts +24 -0
- package/libs/feature/map/src/lib/feature-map.module.d.ts.map +1 -0
- package/libs/feature/map/src/lib/layers-panel/layers-panel.component.d.ts +11 -0
- package/libs/feature/map/src/lib/layers-panel/layers-panel.component.d.ts.map +1 -0
- package/libs/feature/map/src/lib/manager/map-instance.directive.d.ts +9 -0
- package/libs/feature/map/src/lib/manager/map-instance.directive.d.ts.map +1 -0
- package/libs/feature/map/src/lib/manager/map-manager.service.d.ts +11 -0
- package/libs/feature/map/src/lib/manager/map-manager.service.d.ts.map +1 -0
- package/libs/feature/map/src/lib/map-container/map-container.component.d.ts +12 -0
- package/libs/feature/map/src/lib/map-container/map-container.component.d.ts.map +1 -0
- package/libs/feature/map/src/lib/map-context/component/map-context.component.d.ts +26 -0
- package/libs/feature/map/src/lib/map-context/component/map-context.component.d.ts.map +1 -0
- package/libs/feature/map/src/lib/map-context/map-context.model.d.ts +64 -0
- package/libs/feature/map/src/lib/map-context/map-context.model.d.ts.map +1 -0
- package/libs/feature/map/src/lib/map-context/map-context.service.d.ts +24 -0
- package/libs/feature/map/src/lib/map-context/map-context.service.d.ts.map +1 -0
- package/libs/feature/map/src/lib/style/index.d.ts +3 -0
- package/libs/feature/map/src/lib/style/index.d.ts.map +1 -0
- package/libs/feature/map/src/lib/style/map-style.fixtures.d.ts +4 -0
- package/libs/feature/map/src/lib/style/map-style.fixtures.d.ts.map +1 -0
- package/libs/feature/map/src/lib/style/map-style.service.d.ts +24 -0
- package/libs/feature/map/src/lib/style/map-style.service.d.ts.map +1 -0
- package/libs/feature/map/src/lib/utils/index.d.ts +4 -0
- package/libs/feature/map/src/lib/utils/index.d.ts.map +1 -0
- package/libs/feature/map/src/lib/utils/map-utils-wms.service.d.ts +16 -0
- package/libs/feature/map/src/lib/utils/map-utils-wms.service.d.ts.map +1 -0
- package/libs/feature/map/src/lib/utils/map-utils.service.d.ts +39 -0
- package/libs/feature/map/src/lib/utils/map-utils.service.d.ts.map +1 -0
- package/libs/feature/map/src/lib/utils/projections.d.ts +2 -0
- package/libs/feature/map/src/lib/utils/projections.d.ts.map +1 -0
- package/libs/feature/record/src/index.d.ts +10 -0
- package/libs/feature/record/src/index.d.ts.map +1 -0
- package/libs/feature/record/src/lib/data-view/data-view.component.d.ts +22 -0
- package/libs/feature/record/src/lib/data-view/data-view.component.d.ts.map +1 -0
- package/libs/feature/record/src/lib/data-view-permalink/data-view-permalink.component.d.ts +16 -0
- package/libs/feature/record/src/lib/data-view-permalink/data-view-permalink.component.d.ts.map +1 -0
- package/libs/feature/record/src/lib/data-view-share/data-view-share.component.d.ts +8 -0
- package/libs/feature/record/src/lib/data-view-share/data-view-share.component.d.ts.map +1 -0
- package/libs/feature/record/src/lib/data-view-web-component/data-view-web-component.component.d.ts +13 -0
- package/libs/feature/record/src/lib/data-view-web-component/data-view-web-component.component.d.ts.map +1 -0
- package/libs/feature/record/src/lib/external-viewer-button/external-viewer-button.component.d.ts +13 -0
- package/libs/feature/record/src/lib/external-viewer-button/external-viewer-button.component.d.ts.map +1 -0
- package/libs/feature/record/src/lib/feature-record.module.d.ts +28 -0
- package/libs/feature/record/src/lib/feature-record.module.d.ts.map +1 -0
- package/libs/feature/record/src/lib/gn-ui-version.token.d.ts +3 -0
- package/libs/feature/record/src/lib/gn-ui-version.token.d.ts.map +1 -0
- package/libs/feature/record/src/lib/map-view/map-view.component.d.ts +46 -0
- package/libs/feature/record/src/lib/map-view/map-view.component.d.ts.map +1 -0
- package/libs/feature/record/src/lib/state/index.d.ts +3 -0
- package/libs/feature/record/src/lib/state/index.d.ts.map +1 -0
- package/libs/feature/record/src/lib/state/mdview.actions.d.ts +36 -0
- package/libs/feature/record/src/lib/state/mdview.actions.d.ts.map +1 -0
- package/libs/feature/record/src/lib/state/mdview.effects.d.ts +20 -0
- package/libs/feature/record/src/lib/state/mdview.effects.d.ts.map +1 -0
- package/libs/feature/record/src/lib/state/mdview.facade.d.ts +42 -0
- package/libs/feature/record/src/lib/state/mdview.facade.d.ts.map +1 -0
- package/libs/feature/record/src/lib/state/mdview.reducer.d.ts +17 -0
- package/libs/feature/record/src/lib/state/mdview.reducer.d.ts.map +1 -0
- package/libs/feature/record/src/lib/state/mdview.selectors.d.ts +16 -0
- package/libs/feature/record/src/lib/state/mdview.selectors.d.ts.map +1 -0
- package/libs/feature/router/src/index.d.ts +2 -0
- package/libs/feature/router/src/index.d.ts.map +1 -0
- package/libs/feature/router/src/lib/default/SearchRouteReuseStrategy.d.ts +10 -0
- package/libs/feature/router/src/lib/default/SearchRouteReuseStrategy.d.ts.map +1 -0
- package/libs/feature/router/src/lib/default/constants.d.ts +10 -0
- package/libs/feature/router/src/lib/default/constants.d.ts.map +1 -0
- package/libs/feature/router/src/lib/default/container/search-router.container.directive.d.ts +12 -0
- package/libs/feature/router/src/lib/default/container/search-router.container.directive.d.ts.map +1 -0
- package/libs/feature/router/src/lib/default/index.d.ts +8 -0
- package/libs/feature/router/src/lib/default/index.d.ts.map +1 -0
- package/libs/feature/router/src/lib/default/router.config.d.ts +8 -0
- package/libs/feature/router/src/lib/default/router.config.d.ts.map +1 -0
- package/libs/feature/router/src/lib/default/router.module.d.ts +17 -0
- package/libs/feature/router/src/lib/default/router.module.d.ts.map +1 -0
- package/libs/feature/router/src/lib/default/router.service.d.ts +14 -0
- package/libs/feature/router/src/lib/default/router.service.d.ts.map +1 -0
- package/libs/feature/router/src/lib/default/services/router-search.service.d.ts +18 -0
- package/libs/feature/router/src/lib/default/services/router-search.service.d.ts.map +1 -0
- package/libs/feature/router/src/lib/default/state/router.actions.d.ts +10 -0
- package/libs/feature/router/src/lib/default/state/router.actions.d.ts.map +1 -0
- package/libs/feature/router/src/lib/default/state/router.effects.d.ts +34 -0
- package/libs/feature/router/src/lib/default/state/router.effects.d.ts.map +1 -0
- package/libs/feature/router/src/lib/default/state/router.facade.d.ts +24 -0
- package/libs/feature/router/src/lib/default/state/router.facade.d.ts.map +1 -0
- package/libs/feature/router/src/lib/default/state/router.selectors.d.ts +4 -0
- package/libs/feature/router/src/lib/default/state/router.selectors.d.ts.map +1 -0
- package/libs/feature/search/src/index.d.ts +21 -0
- package/libs/feature/search/src/index.d.ts.map +1 -0
- package/libs/feature/search/src/lib/constants.d.ts +6 -0
- package/libs/feature/search/src/lib/constants.d.ts.map +1 -0
- package/libs/feature/search/src/lib/facets/facets-container/facets-container.component.d.ts +22 -0
- package/libs/feature/search/src/lib/facets/facets-container/facets-container.component.d.ts.map +1 -0
- package/libs/feature/search/src/lib/facets/facets.module.d.ts +11 -0
- package/libs/feature/search/src/lib/facets/facets.module.d.ts.map +1 -0
- package/libs/feature/search/src/lib/facets/facets.service.d.ts +49 -0
- package/libs/feature/search/src/lib/facets/facets.service.d.ts.map +1 -0
- package/libs/feature/search/src/lib/favorites/favorite-star/favorite-star.component.d.ts +32 -0
- package/libs/feature/search/src/lib/favorites/favorite-star/favorite-star.component.d.ts.map +1 -0
- package/libs/feature/search/src/lib/feature-search.module.d.ts +31 -0
- package/libs/feature/search/src/lib/feature-search.module.d.ts.map +1 -0
- package/libs/feature/search/src/lib/filter-dropdown/filter-dropdown.component.d.ts +22 -0
- package/libs/feature/search/src/lib/filter-dropdown/filter-dropdown.component.d.ts.map +1 -0
- package/libs/feature/search/src/lib/fuzzy-search/fuzzy-search.component.d.ts +35 -0
- package/libs/feature/search/src/lib/fuzzy-search/fuzzy-search.component.d.ts.map +1 -0
- package/libs/feature/search/src/lib/records-metrics/records-metrics.component.d.ts +19 -0
- package/libs/feature/search/src/lib/records-metrics/records-metrics.component.d.ts.map +1 -0
- package/libs/feature/search/src/lib/results-hits-number/results-hits.container.component.d.ts +9 -0
- package/libs/feature/search/src/lib/results-hits-number/results-hits.container.component.d.ts.map +1 -0
- package/libs/feature/search/src/lib/results-layout/results-layout.component.d.ts +16 -0
- package/libs/feature/search/src/lib/results-layout/results-layout.component.d.ts.map +1 -0
- package/libs/feature/search/src/lib/results-list/results-list.container.component.d.ts +32 -0
- package/libs/feature/search/src/lib/results-list/results-list.container.component.d.ts.map +1 -0
- package/libs/feature/search/src/lib/sort-by/sort-by.component.d.ts +22 -0
- package/libs/feature/search/src/lib/sort-by/sort-by.component.d.ts.map +1 -0
- package/libs/feature/search/src/lib/state/actions.d.ts +162 -0
- package/libs/feature/search/src/lib/state/actions.d.ts.map +1 -0
- package/libs/feature/search/src/lib/state/container/search-state.container.directive.d.ts +12 -0
- package/libs/feature/search/src/lib/state/container/search-state.container.directive.d.ts.map +1 -0
- package/libs/feature/search/src/lib/state/effects.d.ts +26 -0
- package/libs/feature/search/src/lib/state/effects.d.ts.map +1 -0
- package/libs/feature/search/src/lib/state/reducer.d.ts +41 -0
- package/libs/feature/search/src/lib/state/reducer.d.ts.map +1 -0
- package/libs/feature/search/src/lib/state/search.facade.d.ts +52 -0
- package/libs/feature/search/src/lib/state/search.facade.d.ts.map +1 -0
- package/libs/feature/search/src/lib/state/selectors.d.ts +25 -0
- package/libs/feature/search/src/lib/state/selectors.d.ts.map +1 -0
- package/libs/feature/search/src/lib/utils/operators/search.operator.d.ts +11 -0
- package/libs/feature/search/src/lib/utils/operators/search.operator.d.ts.map +1 -0
- package/libs/feature/search/src/lib/utils/service/fields.d.ts +66 -0
- package/libs/feature/search/src/lib/utils/service/fields.d.ts.map +1 -0
- package/libs/feature/search/src/lib/utils/service/fields.service.d.ts +20 -0
- package/libs/feature/search/src/lib/utils/service/fields.service.d.ts.map +1 -0
- package/libs/feature/search/src/lib/utils/service/search.service.d.ts +22 -0
- package/libs/feature/search/src/lib/utils/service/search.service.d.ts.map +1 -0
- package/libs/ui/catalog/src/index.d.ts +6 -0
- package/libs/ui/catalog/src/index.d.ts.map +1 -0
- package/libs/ui/catalog/src/lib/catalog-title/catalog-title.component.d.ts +9 -0
- package/libs/ui/catalog/src/lib/catalog-title/catalog-title.component.d.ts.map +1 -0
- package/libs/ui/catalog/src/lib/language-switcher/language-switcher.component.d.ts +16 -0
- package/libs/ui/catalog/src/lib/language-switcher/language-switcher.component.d.ts.map +1 -0
- package/libs/ui/catalog/src/lib/organisation-preview/organisation-preview.component.d.ts +12 -0
- package/libs/ui/catalog/src/lib/organisation-preview/organisation-preview.component.d.ts.map +1 -0
- package/libs/ui/catalog/src/lib/organisations-sort/organisations-sort.component.d.ts +14 -0
- package/libs/ui/catalog/src/lib/organisations-sort/organisations-sort.component.d.ts.map +1 -0
- package/libs/ui/catalog/src/lib/ui-catalog.module.d.ts +16 -0
- package/libs/ui/catalog/src/lib/ui-catalog.module.d.ts.map +1 -0
- package/libs/ui/dataviz/src/index.d.ts +6 -0
- package/libs/ui/dataviz/src/index.d.ts.map +1 -0
- package/libs/ui/dataviz/src/lib/chart/chart.component.d.ts +29 -0
- package/libs/ui/dataviz/src/lib/chart/chart.component.d.ts.map +1 -0
- package/libs/ui/dataviz/src/lib/figure/figure.component.d.ts +14 -0
- package/libs/ui/dataviz/src/lib/figure/figure.component.d.ts.map +1 -0
- package/libs/ui/dataviz/src/lib/table/table.component.d.ts +29 -0
- package/libs/ui/dataviz/src/lib/table/table.component.d.ts.map +1 -0
- package/libs/ui/dataviz/src/lib/table/table.fixtures.d.ts +11 -0
- package/libs/ui/dataviz/src/lib/table/table.fixtures.d.ts.map +1 -0
- package/libs/ui/dataviz/src/lib/ui-dataviz.module.d.ts +10 -0
- package/libs/ui/dataviz/src/lib/ui-dataviz.module.d.ts.map +1 -0
- package/libs/ui/elements/src/index.d.ts +21 -0
- package/libs/ui/elements/src/index.d.ts.map +1 -0
- package/libs/ui/elements/src/lib/api-card/api-card.component.d.ts +8 -0
- package/libs/ui/elements/src/lib/api-card/api-card.component.d.ts.map +1 -0
- package/libs/ui/elements/src/lib/avatar/avatar.component.d.ts +9 -0
- package/libs/ui/elements/src/lib/avatar/avatar.component.d.ts.map +1 -0
- package/libs/ui/elements/src/lib/content-ghost/content-ghost.component.d.ts +8 -0
- package/libs/ui/elements/src/lib/content-ghost/content-ghost.component.d.ts.map +1 -0
- package/libs/ui/elements/src/lib/download-item/download-item.component.d.ts +14 -0
- package/libs/ui/elements/src/lib/download-item/download-item.component.d.ts.map +1 -0
- package/libs/ui/elements/src/lib/downloads-list/downloads-list.component.d.ts +24 -0
- package/libs/ui/elements/src/lib/downloads-list/downloads-list.component.d.ts.map +1 -0
- package/libs/ui/elements/src/lib/link-card/link-card.component.d.ts +8 -0
- package/libs/ui/elements/src/lib/link-card/link-card.component.d.ts.map +1 -0
- package/libs/ui/elements/src/lib/metadata-catalog/metadata-catalog.component.d.ts +7 -0
- package/libs/ui/elements/src/lib/metadata-catalog/metadata-catalog.component.d.ts.map +1 -0
- package/libs/ui/elements/src/lib/metadata-contact/metadata-contact.component.d.ts +14 -0
- package/libs/ui/elements/src/lib/metadata-contact/metadata-contact.component.d.ts.map +1 -0
- package/libs/ui/elements/src/lib/metadata-info/linkify.directive.d.ts +13 -0
- package/libs/ui/elements/src/lib/metadata-info/linkify.directive.d.ts.map +1 -0
- package/libs/ui/elements/src/lib/metadata-info/metadata-info.component.d.ts +15 -0
- package/libs/ui/elements/src/lib/metadata-info/metadata-info.component.d.ts.map +1 -0
- package/libs/ui/elements/src/lib/metadata-quality/metadata-quality.component.d.ts +32 -0
- package/libs/ui/elements/src/lib/metadata-quality/metadata-quality.component.d.ts.map +1 -0
- package/libs/ui/elements/src/lib/metadata-quality-item/metadata-quality-item.component.d.ts +14 -0
- package/libs/ui/elements/src/lib/metadata-quality-item/metadata-quality-item.component.d.ts.map +1 -0
- package/libs/ui/elements/src/lib/pagination/pagination.component.d.ts +16 -0
- package/libs/ui/elements/src/lib/pagination/pagination.component.d.ts.map +1 -0
- package/libs/ui/elements/src/lib/pagination-buttons/pagination-buttons.component.d.ts +17 -0
- package/libs/ui/elements/src/lib/pagination-buttons/pagination-buttons.component.d.ts.map +1 -0
- package/libs/ui/elements/src/lib/related-record-card/related-record-card.component.d.ts +8 -0
- package/libs/ui/elements/src/lib/related-record-card/related-record-card.component.d.ts.map +1 -0
- package/libs/ui/elements/src/lib/search-results-error/search-results-error.component.d.ts +15 -0
- package/libs/ui/elements/src/lib/search-results-error/search-results-error.component.d.ts.map +1 -0
- package/libs/ui/elements/src/lib/thumbnail/thumbnail.component.d.ts +28 -0
- package/libs/ui/elements/src/lib/thumbnail/thumbnail.component.d.ts.map +1 -0
- package/libs/ui/elements/src/lib/ui-elements.module.d.ts +35 -0
- package/libs/ui/elements/src/lib/ui-elements.module.d.ts.map +1 -0
- package/libs/ui/elements/src/lib/user-preview/user-preview.component.d.ts +10 -0
- package/libs/ui/elements/src/lib/user-preview/user-preview.component.d.ts.map +1 -0
- package/libs/ui/inputs/src/index.d.ts +19 -0
- package/libs/ui/inputs/src/index.d.ts.map +1 -0
- package/libs/ui/inputs/src/lib/autocomplete/autocomplete.component.d.ts +39 -0
- package/libs/ui/inputs/src/lib/autocomplete/autocomplete.component.d.ts.map +1 -0
- package/libs/ui/inputs/src/lib/button/button.component.d.ts +16 -0
- package/libs/ui/inputs/src/lib/button/button.component.d.ts.map +1 -0
- package/libs/ui/inputs/src/lib/check-toggle/check-toggle.component.d.ts +13 -0
- package/libs/ui/inputs/src/lib/check-toggle/check-toggle.component.d.ts.map +1 -0
- package/libs/ui/inputs/src/lib/chips-input/chips-input.component.d.ts +33 -0
- package/libs/ui/inputs/src/lib/chips-input/chips-input.component.d.ts.map +1 -0
- package/libs/ui/inputs/src/lib/copy-text-button/copy-text-button.component.d.ts +11 -0
- package/libs/ui/inputs/src/lib/copy-text-button/copy-text-button.component.d.ts.map +1 -0
- package/libs/ui/inputs/src/lib/drag-and-drop-file-input/drag-and-drop-file-input.component.d.ts +14 -0
- package/libs/ui/inputs/src/lib/drag-and-drop-file-input/drag-and-drop-file-input.component.d.ts.map +1 -0
- package/libs/ui/inputs/src/lib/dropdown-multiselect/dropdown-multiselect.component.d.ts +46 -0
- package/libs/ui/inputs/src/lib/dropdown-multiselect/dropdown-multiselect.component.d.ts.map +1 -0
- package/libs/ui/inputs/src/lib/dropdown-multiselect/dropdown-multiselect.model.d.ts +5 -0
- package/libs/ui/inputs/src/lib/dropdown-multiselect/dropdown-multiselect.model.d.ts.map +1 -0
- package/libs/ui/inputs/src/lib/dropdown-selector/dropdown-selector.component.d.ts +40 -0
- package/libs/ui/inputs/src/lib/dropdown-selector/dropdown-selector.component.d.ts.map +1 -0
- package/libs/ui/inputs/src/lib/dropdown-selector/dropdown-selector.model.d.ts +5 -0
- package/libs/ui/inputs/src/lib/dropdown-selector/dropdown-selector.model.d.ts.map +1 -0
- package/libs/ui/inputs/src/lib/form-field/form-field-array/form-field-array.component.d.ts +6 -0
- package/libs/ui/inputs/src/lib/form-field/form-field-array/form-field-array.component.d.ts.map +1 -0
- package/libs/ui/inputs/src/lib/form-field/form-field-file/form-field-file.component.d.ts +11 -0
- package/libs/ui/inputs/src/lib/form-field/form-field-file/form-field-file.component.d.ts.map +1 -0
- package/libs/ui/inputs/src/lib/form-field/form-field-object/form-field-object.component.d.ts +6 -0
- package/libs/ui/inputs/src/lib/form-field/form-field-object/form-field-object.component.d.ts.map +1 -0
- package/libs/ui/inputs/src/lib/form-field/form-field-rich/form-field-rich.component.d.ts +11 -0
- package/libs/ui/inputs/src/lib/form-field/form-field-rich/form-field-rich.component.d.ts.map +1 -0
- package/libs/ui/inputs/src/lib/form-field/form-field-simple/form-field-simple.component.d.ts +18 -0
- package/libs/ui/inputs/src/lib/form-field/form-field-simple/form-field-simple.component.d.ts.map +1 -0
- package/libs/ui/inputs/src/lib/form-field/form-field-spatial-extent/form-field-spatial-extent.component.d.ts +6 -0
- package/libs/ui/inputs/src/lib/form-field/form-field-spatial-extent/form-field-spatial-extent.component.d.ts.map +1 -0
- package/libs/ui/inputs/src/lib/form-field/form-field-temporal-extent/form-field-temporal-extent.component.d.ts +6 -0
- package/libs/ui/inputs/src/lib/form-field/form-field-temporal-extent/form-field-temporal-extent.component.d.ts.map +1 -0
- package/libs/ui/inputs/src/lib/form-field/form-field.component.d.ts +25 -0
- package/libs/ui/inputs/src/lib/form-field/form-field.component.d.ts.map +1 -0
- package/libs/ui/inputs/src/lib/form-field/form-field.model.d.ts +27 -0
- package/libs/ui/inputs/src/lib/form-field/form-field.model.d.ts.map +1 -0
- package/libs/ui/inputs/src/lib/form-field/index.d.ts +10 -0
- package/libs/ui/inputs/src/lib/form-field/index.d.ts.map +1 -0
- package/libs/ui/inputs/src/lib/navigation-button/navigation-button.component.d.ts +8 -0
- package/libs/ui/inputs/src/lib/navigation-button/navigation-button.component.d.ts.map +1 -0
- package/libs/ui/inputs/src/lib/star-toggle/star-toggle.component.d.ts +12 -0
- package/libs/ui/inputs/src/lib/star-toggle/star-toggle.component.d.ts.map +1 -0
- package/libs/ui/inputs/src/lib/text-area/text-area.component.d.ts +17 -0
- package/libs/ui/inputs/src/lib/text-area/text-area.component.d.ts.map +1 -0
- package/libs/ui/inputs/src/lib/text-input/text-input.component.d.ts +17 -0
- package/libs/ui/inputs/src/lib/text-input/text-input.component.d.ts.map +1 -0
- package/libs/ui/inputs/src/lib/ui-inputs.module.d.ts +40 -0
- package/libs/ui/inputs/src/lib/ui-inputs.module.d.ts.map +1 -0
- package/libs/ui/inputs/src/lib/viewport-intersector/viewport-intersector.component.d.ts +18 -0
- package/libs/ui/inputs/src/lib/viewport-intersector/viewport-intersector.component.d.ts.map +1 -0
- package/libs/ui/layout/src/index.d.ts +7 -0
- package/libs/ui/layout/src/index.d.ts.map +1 -0
- package/libs/ui/layout/src/lib/anchor-link/anchor-link.directive.d.ts +19 -0
- package/libs/ui/layout/src/lib/anchor-link/anchor-link.directive.d.ts.map +1 -0
- package/libs/ui/layout/src/lib/carousel/carousel.component.d.ts +18 -0
- package/libs/ui/layout/src/lib/carousel/carousel.component.d.ts.map +1 -0
- package/libs/ui/layout/src/lib/expandable-panel/expandable-panel.component.d.ts +13 -0
- package/libs/ui/layout/src/lib/expandable-panel/expandable-panel.component.d.ts.map +1 -0
- package/libs/ui/layout/src/lib/expandable-panel-button/expandable-panel-button.component.d.ts +10 -0
- package/libs/ui/layout/src/lib/expandable-panel-button/expandable-panel-button.component.d.ts.map +1 -0
- package/libs/ui/layout/src/lib/sticky-header/sticky-header.component.d.ts +37 -0
- package/libs/ui/layout/src/lib/sticky-header/sticky-header.component.d.ts.map +1 -0
- package/libs/ui/layout/src/lib/ui-layout.module.d.ts +15 -0
- package/libs/ui/layout/src/lib/ui-layout.module.d.ts.map +1 -0
- package/libs/ui/map/src/index.d.ts +4 -0
- package/libs/ui/map/src/index.d.ts.map +1 -0
- package/libs/ui/map/src/lib/components/feature-detail/feature-detail.component.d.ts +10 -0
- package/libs/ui/map/src/lib/components/feature-detail/feature-detail.component.d.ts.map +1 -0
- package/libs/ui/map/src/lib/components/map/map.component.d.ts +19 -0
- package/libs/ui/map/src/lib/components/map/map.component.d.ts.map +1 -0
- package/libs/ui/map/src/lib/ui-map.module.d.ts +13 -0
- package/libs/ui/map/src/lib/ui-map.module.d.ts.map +1 -0
- package/libs/ui/search/src/index.d.ts +21 -0
- package/libs/ui/search/src/index.d.ts.map +1 -0
- package/libs/ui/search/src/lib/facets/facet-block/facet-block.component.d.ts +44 -0
- package/libs/ui/search/src/lib/facets/facet-block/facet-block.component.d.ts.map +1 -0
- package/libs/ui/search/src/lib/facets/facet-item/facet-item.component.d.ts +26 -0
- package/libs/ui/search/src/lib/facets/facet-item/facet-item.component.d.ts.map +1 -0
- package/libs/ui/search/src/lib/facets/facet-list/facet-list.component.d.ts +19 -0
- package/libs/ui/search/src/lib/facets/facet-list/facet-list.component.d.ts.map +1 -0
- package/libs/ui/search/src/lib/facets/facets.model.d.ts +27 -0
- package/libs/ui/search/src/lib/facets/facets.model.d.ts.map +1 -0
- package/libs/ui/search/src/lib/facets/facets.module.d.ts +13 -0
- package/libs/ui/search/src/lib/facets/facets.module.d.ts.map +1 -0
- package/libs/ui/search/src/lib/facets/fixtures/aggregations-model-response.d.ts +5 -0
- package/libs/ui/search/src/lib/facets/fixtures/aggregations-model-response.d.ts.map +1 -0
- package/libs/ui/search/src/lib/facets/fixtures/index.d.ts +2 -0
- package/libs/ui/search/src/lib/facets/fixtures/index.d.ts.map +1 -0
- package/libs/ui/search/src/lib/record-metric/record-metric.component.d.ts +12 -0
- package/libs/ui/search/src/lib/record-metric/record-metric.component.d.ts.map +1 -0
- package/libs/ui/search/src/lib/record-preview/record-preview.component.d.ts +29 -0
- package/libs/ui/search/src/lib/record-preview/record-preview.component.d.ts.map +1 -0
- package/libs/ui/search/src/lib/record-preview-card/record-preview-card.component.d.ts +7 -0
- package/libs/ui/search/src/lib/record-preview-card/record-preview-card.component.d.ts.map +1 -0
- package/libs/ui/search/src/lib/record-preview-feed/record-preview-feed.component.d.ts +18 -0
- package/libs/ui/search/src/lib/record-preview-feed/record-preview-feed.component.d.ts.map +1 -0
- package/libs/ui/search/src/lib/record-preview-list/record-preview-list.component.d.ts +7 -0
- package/libs/ui/search/src/lib/record-preview-list/record-preview-list.component.d.ts.map +1 -0
- package/libs/ui/search/src/lib/record-preview-row/record-preview-row.component.d.ts +10 -0
- package/libs/ui/search/src/lib/record-preview-row/record-preview-row.component.d.ts.map +1 -0
- package/libs/ui/search/src/lib/record-preview-text/record-preview-text.component.d.ts +7 -0
- package/libs/ui/search/src/lib/record-preview-text/record-preview-text.component.d.ts.map +1 -0
- package/libs/ui/search/src/lib/record-preview-title/record-preview-title.component.d.ts +7 -0
- package/libs/ui/search/src/lib/record-preview-title/record-preview-title.component.d.ts.map +1 -0
- package/libs/ui/search/src/lib/record-table/record-table.component.d.ts +23 -0
- package/libs/ui/search/src/lib/record-table/record-table.component.d.ts.map +1 -0
- package/libs/ui/search/src/lib/results-hits-number/results-hits-number.component.d.ts +8 -0
- package/libs/ui/search/src/lib/results-hits-number/results-hits-number.component.d.ts.map +1 -0
- package/libs/ui/search/src/lib/results-list/results-layout.config.d.ts +13 -0
- package/libs/ui/search/src/lib/results-list/results-layout.config.d.ts.map +1 -0
- package/libs/ui/search/src/lib/results-list/results-list.component.d.ts +18 -0
- package/libs/ui/search/src/lib/results-list/results-list.component.d.ts.map +1 -0
- package/libs/ui/search/src/lib/results-list-item/results-list-item.component.d.ts +25 -0
- package/libs/ui/search/src/lib/results-list-item/results-list-item.component.d.ts.map +1 -0
- package/libs/ui/search/src/lib/ui-search.module.d.ts +31 -0
- package/libs/ui/search/src/lib/ui-search.module.d.ts.map +1 -0
- package/libs/ui/widgets/src/index.d.ts +9 -0
- package/libs/ui/widgets/src/index.d.ts.map +1 -0
- package/libs/ui/widgets/src/lib/badge/badge.component.d.ts +7 -0
- package/libs/ui/widgets/src/lib/badge/badge.component.d.ts.map +1 -0
- package/libs/ui/widgets/src/lib/color-scale/color-scale.component.d.ts +6 -0
- package/libs/ui/widgets/src/lib/color-scale/color-scale.component.d.ts.map +1 -0
- package/libs/ui/widgets/src/lib/loading-mask/loading-mask.component.d.ts +7 -0
- package/libs/ui/widgets/src/lib/loading-mask/loading-mask.component.d.ts.map +1 -0
- package/libs/ui/widgets/src/lib/popup-alert/popup-alert.component.d.ts +19 -0
- package/libs/ui/widgets/src/lib/popup-alert/popup-alert.component.d.ts.map +1 -0
- package/libs/ui/widgets/src/lib/progress-bar/progress-bar.component.d.ts +16 -0
- package/libs/ui/widgets/src/lib/progress-bar/progress-bar.component.d.ts.map +1 -0
- package/libs/ui/widgets/src/lib/spinning-loader/spinning-loader.component.d.ts +6 -0
- package/libs/ui/widgets/src/lib/spinning-loader/spinning-loader.component.d.ts.map +1 -0
- package/libs/ui/widgets/src/lib/step-bar/step-bar.component.d.ts +21 -0
- package/libs/ui/widgets/src/lib/step-bar/step-bar.component.d.ts.map +1 -0
- package/libs/ui/widgets/src/lib/ui-widgets.module.d.ts +22 -0
- package/libs/ui/widgets/src/lib/ui-widgets.module.d.ts.map +1 -0
- package/libs/util/app-config/src/index.d.ts +4 -0
- package/libs/util/app-config/src/index.d.ts.map +1 -0
- package/libs/util/app-config/src/lib/app-config.d.ts +27 -0
- package/libs/util/app-config/src/lib/app-config.d.ts.map +1 -0
- package/libs/util/app-config/src/lib/constants.d.ts +2 -0
- package/libs/util/app-config/src/lib/constants.d.ts.map +1 -0
- package/libs/util/app-config/src/lib/fixtures.d.ts +10 -0
- package/libs/util/app-config/src/lib/fixtures.d.ts.map +1 -0
- package/libs/util/app-config/src/lib/i18n/file-with-overrides.translate.loader.d.ts +10 -0
- package/libs/util/app-config/src/lib/i18n/file-with-overrides.translate.loader.d.ts.map +1 -0
- package/libs/util/app-config/src/lib/model.d.ts +70 -0
- package/libs/util/app-config/src/lib/model.d.ts.map +1 -0
- package/libs/util/app-config/src/lib/parse-utils.d.ts +19 -0
- package/libs/util/app-config/src/lib/parse-utils.d.ts.map +1 -0
- package/libs/util/data-fetcher/src/index.d.ts +5 -0
- package/libs/util/data-fetcher/src/index.d.ts.map +1 -0
- package/libs/util/data-fetcher/src/lib/data-fetcher.d.ts +22 -0
- package/libs/util/data-fetcher/src/lib/data-fetcher.d.ts.map +1 -0
- package/libs/util/data-fetcher/src/lib/headers.d.ts +3 -0
- package/libs/util/data-fetcher/src/lib/headers.d.ts.map +1 -0
- package/libs/util/data-fetcher/src/lib/model.d.ts +67 -0
- package/libs/util/data-fetcher/src/lib/model.d.ts.map +1 -0
- package/libs/util/data-fetcher/src/lib/readers/base-file.d.ts +16 -0
- package/libs/util/data-fetcher/src/lib/readers/base-file.d.ts.map +1 -0
- package/libs/util/data-fetcher/src/lib/readers/base.d.ts +24 -0
- package/libs/util/data-fetcher/src/lib/readers/base.d.ts.map +1 -0
- package/libs/util/data-fetcher/src/lib/readers/csv.d.ts +13 -0
- package/libs/util/data-fetcher/src/lib/readers/csv.d.ts.map +1 -0
- package/libs/util/data-fetcher/src/lib/readers/excel.d.ts +18 -0
- package/libs/util/data-fetcher/src/lib/readers/excel.d.ts.map +1 -0
- package/libs/util/data-fetcher/src/lib/readers/geojson.d.ts +18 -0
- package/libs/util/data-fetcher/src/lib/readers/geojson.d.ts.map +1 -0
- package/libs/util/data-fetcher/src/lib/readers/gml.d.ts +17 -0
- package/libs/util/data-fetcher/src/lib/readers/gml.d.ts.map +1 -0
- package/libs/util/data-fetcher/src/lib/readers/json.d.ts +17 -0
- package/libs/util/data-fetcher/src/lib/readers/json.d.ts.map +1 -0
- package/libs/util/data-fetcher/src/lib/sql-utils.d.ts +13 -0
- package/libs/util/data-fetcher/src/lib/sql-utils.d.ts.map +1 -0
- package/libs/util/data-fetcher/src/lib/utils.d.ts +26 -0
- package/libs/util/data-fetcher/src/lib/utils.d.ts.map +1 -0
- package/libs/util/i18n/src/index.d.ts +8 -0
- package/libs/util/i18n/src/index.d.ts.map +1 -0
- package/libs/util/i18n/src/lib/embedded.translate.loader.d.ts +6 -0
- package/libs/util/i18n/src/lib/embedded.translate.loader.d.ts.map +1 -0
- package/libs/util/i18n/src/lib/file.translate.loader.d.ts +9 -0
- package/libs/util/i18n/src/lib/file.translate.loader.d.ts.map +1 -0
- package/libs/util/i18n/src/lib/i18n.constants.d.ts +39 -0
- package/libs/util/i18n/src/lib/i18n.constants.d.ts.map +1 -0
- package/libs/util/i18n/src/lib/i18n.interceptor.d.ts +12 -0
- package/libs/util/i18n/src/lib/i18n.interceptor.d.ts.map +1 -0
- package/libs/util/i18n/src/lib/lang.service.d.ts +13 -0
- package/libs/util/i18n/src/lib/lang.service.d.ts.map +1 -0
- package/libs/util/i18n/src/lib/testing/test.translate.loader.d.ts +17 -0
- package/libs/util/i18n/src/lib/testing/test.translate.loader.d.ts.map +1 -0
- package/libs/util/i18n/src/lib/testing/test.translate.module.d.ts +131 -0
- package/libs/util/i18n/src/lib/testing/test.translate.module.d.ts.map +1 -0
- package/libs/util/i18n/src/lib/testing/translations.model.d.ts +21 -0
- package/libs/util/i18n/src/lib/testing/translations.model.d.ts.map +1 -0
- package/libs/util/i18n/src/lib/translate.loader.utils.d.ts +2 -0
- package/libs/util/i18n/src/lib/translate.loader.utils.d.ts.map +1 -0
- package/libs/util/i18n/src/lib/util-i18n.module.d.ts +12 -0
- package/libs/util/i18n/src/lib/util-i18n.module.d.ts.map +1 -0
- package/libs/util/shared/src/index.d.ts +7 -0
- package/libs/util/shared/src/index.d.ts.map +1 -0
- package/libs/util/shared/src/lib/image-fallback.directive.d.ts +11 -0
- package/libs/util/shared/src/lib/image-fallback.directive.d.ts.map +1 -0
- package/libs/util/shared/src/lib/links/index.d.ts +3 -0
- package/libs/util/shared/src/lib/links/index.d.ts.map +1 -0
- package/libs/util/shared/src/lib/links/link-classifier.service.d.ts +18 -0
- package/libs/util/shared/src/lib/links/link-classifier.service.d.ts.map +1 -0
- package/libs/util/shared/src/lib/links/link-utils.d.ts +81 -0
- package/libs/util/shared/src/lib/links/link-utils.d.ts.map +1 -0
- package/libs/util/shared/src/lib/pipes/SafePipe.d.ts +11 -0
- package/libs/util/shared/src/lib/pipes/SafePipe.d.ts.map +1 -0
- package/libs/util/shared/src/lib/pipes/index.d.ts +2 -0
- package/libs/util/shared/src/lib/pipes/index.d.ts.map +1 -0
- package/libs/util/shared/src/lib/services/index.d.ts +4 -0
- package/libs/util/shared/src/lib/services/index.d.ts.map +1 -0
- package/libs/util/shared/src/lib/services/log.service.d.ts +9 -0
- package/libs/util/shared/src/lib/services/log.service.d.ts.map +1 -0
- package/libs/util/shared/src/lib/services/proxy.service.d.ts +16 -0
- package/libs/util/shared/src/lib/services/proxy.service.d.ts.map +1 -0
- package/libs/util/shared/src/lib/services/theme.service.d.ts +10 -0
- package/libs/util/shared/src/lib/services/theme.service.d.ts.map +1 -0
- package/libs/util/shared/src/lib/util-shared.module.d.ts +10 -0
- package/libs/util/shared/src/lib/util-shared.module.d.ts.map +1 -0
- package/libs/util/shared/src/lib/utils/event.d.ts +7 -0
- package/libs/util/shared/src/lib/utils/event.d.ts.map +1 -0
- package/libs/util/shared/src/lib/utils/geojson.d.ts +3 -0
- package/libs/util/shared/src/lib/utils/geojson.d.ts.map +1 -0
- package/libs/util/shared/src/lib/utils/index.d.ts +8 -0
- package/libs/util/shared/src/lib/utils/index.d.ts.map +1 -0
- package/libs/util/shared/src/lib/utils/parse.d.ts +6 -0
- package/libs/util/shared/src/lib/utils/parse.d.ts.map +1 -0
- package/libs/util/shared/src/lib/utils/remove-whitespace.d.ts +2 -0
- package/libs/util/shared/src/lib/utils/remove-whitespace.d.ts.map +1 -0
- package/libs/util/shared/src/lib/utils/sort-by.d.ts +5 -0
- package/libs/util/shared/src/lib/utils/sort-by.d.ts.map +1 -0
- package/libs/util/shared/src/lib/utils/strip-html.d.ts +2 -0
- package/libs/util/shared/src/lib/utils/strip-html.d.ts.map +1 -0
- package/libs/util/shared/src/lib/utils/url.d.ts +7 -0
- package/libs/util/shared/src/lib/utils/url.d.ts.map +1 -0
- package/package.json +85 -0
- package/src/libs/api/metadata-converter/src/index.ts +4 -0
- package/src/libs/api/metadata-converter/src/lib/common/distribution.mapper.ts +16 -0
- package/src/libs/api/metadata-converter/src/lib/convert-utils.ts +26 -0
- package/src/libs/api/metadata-converter/src/lib/fixtures/generic.records.ts +122 -0
- package/src/libs/api/metadata-converter/src/lib/fixtures/geo2france.records.ts +75 -0
- package/src/libs/api/metadata-converter/src/lib/fixtures/geocat-ch.records.ts +222 -0
- package/src/libs/api/metadata-converter/src/lib/function-utils.ts +171 -0
- package/src/libs/api/metadata-converter/src/lib/gn4/atomic-operations.ts +94 -0
- package/src/libs/api/metadata-converter/src/lib/gn4/gn4.field.mapper.ts +403 -0
- package/src/libs/api/metadata-converter/src/lib/gn4/gn4.metadata.mapper.ts +52 -0
- package/src/libs/api/metadata-converter/src/lib/gn4/metadata-url.service.ts +21 -0
- package/src/libs/api/metadata-converter/src/lib/gn4/types/elasticsearch.model.ts +54 -0
- package/src/libs/api/metadata-converter/src/lib/gn4/types/index.ts +3 -0
- package/src/libs/api/metadata-converter/src/lib/gn4/types/metadata.model.ts +203 -0
- package/src/libs/api/metadata-converter/src/lib/gn4/types/search.model.ts +91 -0
- package/src/libs/api/metadata-converter/src/lib/iso19139/codelists/role.mapper.ts +48 -0
- package/src/libs/api/metadata-converter/src/lib/iso19139/codelists/status.mapper.ts +19 -0
- package/src/libs/api/metadata-converter/src/lib/iso19139/codelists/update-frequency.mapper.ts +67 -0
- package/src/libs/api/metadata-converter/src/lib/iso19139/converter.ts +187 -0
- package/src/libs/api/metadata-converter/src/lib/iso19139/read-parts.ts +749 -0
- package/src/libs/api/metadata-converter/src/lib/iso19139/write-parts.ts +971 -0
- package/src/libs/api/metadata-converter/src/lib/metadata-base.mapper.ts +23 -0
- package/src/libs/api/metadata-converter/src/lib/xml-utils.ts +382 -0
- package/src/libs/api/repository/src/index.ts +2 -0
- package/src/libs/api/repository/src/lib/gn4/auth/auth.service.ts +79 -0
- package/src/libs/api/repository/src/lib/gn4/auth/avatar.service.interface.ts +4 -0
- package/src/libs/api/repository/src/lib/gn4/auth/gravatar.service.ts +24 -0
- package/src/libs/api/repository/src/lib/gn4/auth/index.ts +3 -0
- package/src/libs/api/repository/src/lib/gn4/elasticsearch/constant.ts +32 -0
- package/src/libs/api/repository/src/lib/gn4/elasticsearch/elasticsearch.service.ts +533 -0
- package/src/libs/api/repository/src/lib/gn4/elasticsearch/index.ts +2 -0
- package/src/libs/api/repository/src/lib/gn4/favorites/favorites.service.ts +116 -0
- package/src/libs/api/repository/src/lib/gn4/gn4-repository.ts +162 -0
- package/src/libs/api/repository/src/lib/gn4/index.ts +6 -0
- package/src/libs/api/repository/src/lib/gn4/organizations/index.ts +13 -0
- package/src/libs/api/repository/src/lib/gn4/organizations/organizations-from-groups.service.ts +137 -0
- package/src/libs/api/repository/src/lib/gn4/organizations/organizations-from-metadata.service.ts +319 -0
- package/src/libs/api/repository/src/lib/gn4/settings/gn4-settings.service.ts +22 -0
- package/src/libs/api/repository/src/lib/metadata-language.ts +3 -0
- package/src/libs/api/repository/src/lib/repository-url.ts +14 -0
- package/src/libs/common/domain/src/lib/dataviz-configuration.model.ts +19 -0
- package/src/libs/common/domain/src/lib/organizations.service.interface.ts +19 -0
- package/src/libs/common/domain/src/lib/record/contact.model.ts +38 -0
- package/src/libs/common/domain/src/lib/record/index.ts +3 -0
- package/src/libs/common/domain/src/lib/record/metadata.model.ts +188 -0
- package/src/libs/common/domain/src/lib/record/organization.model.ts +7 -0
- package/src/libs/common/domain/src/lib/records-repository.interface.ts +22 -0
- package/src/libs/common/domain/src/lib/search/aggregation.model.ts +52 -0
- package/src/libs/common/domain/src/lib/search/filter.model.ts +6 -0
- package/src/libs/common/domain/src/lib/search/index.ts +4 -0
- package/src/libs/common/domain/src/lib/search/search.model.ts +22 -0
- package/src/libs/common/domain/src/lib/search/sort-by.model.ts +8 -0
- package/src/libs/common/domain/src/lib/user.model.ts +10 -0
- package/src/libs/common/fixtures/src/index.ts +11 -0
- package/src/libs/common/fixtures/src/lib/elasticsearch/aggregations-request.ts +26 -0
- package/src/libs/common/fixtures/src/lib/elasticsearch/aggregations-response.ts +79 -0
- package/src/libs/common/fixtures/src/lib/elasticsearch/full-response.ts +1594 -0
- package/src/libs/common/fixtures/src/lib/elasticsearch/index.ts +6 -0
- package/src/libs/common/fixtures/src/lib/elasticsearch/metadata-links.fixtures.ts +144 -0
- package/src/libs/common/fixtures/src/lib/elasticsearch/metadata.fixtures.ts +1755 -0
- package/src/libs/common/fixtures/src/lib/elasticsearch/search-requests.ts +146 -0
- package/src/libs/common/fixtures/src/lib/elasticsearch/search-responses.ts +445 -0
- package/src/libs/common/fixtures/src/lib/geojson.fixtures.ts +57313 -0
- package/src/libs/common/fixtures/src/lib/gn4/groups.fixtures.ts +80 -0
- package/src/libs/common/fixtures/src/lib/gn4/index.ts +1 -0
- package/src/libs/common/fixtures/src/lib/link.fixtures.ts +154 -0
- package/src/libs/common/fixtures/src/lib/ol-feature.fixture.ts +7 -0
- package/src/libs/common/fixtures/src/lib/organisations.fixture.ts +71 -0
- package/src/libs/common/fixtures/src/lib/record-link.fixtures.ts +31 -0
- package/src/libs/common/fixtures/src/lib/records.fixtures.ts +204 -0
- package/src/libs/common/fixtures/src/lib/repository.fixtures.ts +8 -0
- package/src/libs/common/fixtures/src/lib/search/aggregations.ts +70 -0
- package/src/libs/common/fixtures/src/lib/search/index.ts +1 -0
- package/src/libs/common/fixtures/src/lib/user.fixtures.ts +35 -0
- package/src/libs/common/fixtures/src/lib/utils/freeze.ts +10 -0
- package/src/libs/common/fixtures/src/lib/utils/index.ts +1 -0
- package/src/libs/data-access/datafeeder/src/index.ts +1 -0
- package/src/libs/data-access/datafeeder/src/openapi/api/api.ts +11 -0
- package/src/libs/data-access/datafeeder/src/openapi/api/config.api.service.ts +168 -0
- package/src/libs/data-access/datafeeder/src/openapi/api/dataPublishing.api.service.ts +270 -0
- package/src/libs/data-access/datafeeder/src/openapi/api/fileUpload.api.service.ts +734 -0
- package/src/libs/data-access/datafeeder/src/openapi/api.module.ts +46 -0
- package/src/libs/data-access/datafeeder/src/openapi/configuration.ts +125 -0
- package/src/libs/data-access/datafeeder/src/openapi/encoder.ts +20 -0
- package/src/libs/data-access/datafeeder/src/openapi/index.ts +5 -0
- package/src/libs/data-access/datafeeder/src/openapi/model/analysisStatusEnum.api.model.ts +24 -0
- package/src/libs/data-access/datafeeder/src/openapi/model/boundingBox.api.model.ts +20 -0
- package/src/libs/data-access/datafeeder/src/openapi/model/cRS.api.model.ts +25 -0
- package/src/libs/data-access/datafeeder/src/openapi/model/datasetMetadata.api.model.ts +41 -0
- package/src/libs/data-access/datafeeder/src/openapi/model/datasetPublishRequest.api.model.ts +39 -0
- package/src/libs/data-access/datafeeder/src/openapi/model/datasetPublishingStatus.api.model.ts +50 -0
- package/src/libs/data-access/datafeeder/src/openapi/model/datasetUploadStatus.api.model.ts +37 -0
- package/src/libs/data-access/datafeeder/src/openapi/model/models.ts +13 -0
- package/src/libs/data-access/datafeeder/src/openapi/model/property.api.model.ts +17 -0
- package/src/libs/data-access/datafeeder/src/openapi/model/publishJobStatus.api.model.ts +33 -0
- package/src/libs/data-access/datafeeder/src/openapi/model/publishRequest.api.model.ts +16 -0
- package/src/libs/data-access/datafeeder/src/openapi/model/publishStatusEnum.api.model.ts +20 -0
- package/src/libs/data-access/datafeeder/src/openapi/model/publishStepEnum.api.model.ts +42 -0
- package/src/libs/data-access/datafeeder/src/openapi/model/uploadJobStatus.api.model.ts +33 -0
- package/src/libs/data-access/datafeeder/src/openapi/variables.ts +9 -0
- package/src/libs/data-access/datafeeder/src/spec.yaml +537 -0
- package/src/libs/data-access/gn-data-platform/src/openapi/api/api.ts +3 -0
- package/src/libs/data-access/gn-data-platform/src/openapi/api/dataviz.api.service.ts +488 -0
- package/src/libs/data-access/gn-data-platform/src/openapi/api.module.ts +44 -0
- package/src/libs/data-access/gn-data-platform/src/openapi/configuration.ts +125 -0
- package/src/libs/data-access/gn-data-platform/src/openapi/encoder.ts +20 -0
- package/src/libs/data-access/gn-data-platform/src/openapi/index.ts +5 -0
- package/src/libs/data-access/gn-data-platform/src/openapi/model/createDatavizDto.api.model.ts +22 -0
- package/src/libs/data-access/gn-data-platform/src/openapi/model/dataviz.api.model.ts +26 -0
- package/src/libs/data-access/gn-data-platform/src/openapi/model/models.ts +2 -0
- package/src/libs/data-access/gn-data-platform/src/openapi/variables.ts +9 -0
- package/src/libs/data-access/gn4/src/fixtures/index.ts +2 -0
- package/src/libs/data-access/gn4/src/fixtures/site.fixtures.ts +65 -0
- package/src/libs/data-access/gn4/src/fixtures/ui.fixtures.ts +5 -0
- package/src/libs/data-access/gn4/src/index.ts +2 -0
- package/src/libs/data-access/gn4/src/openapi/api/api.ts +89 -0
- package/src/libs/data-access/gn4/src/openapi/api/customstyle.api.service.ts +249 -0
- package/src/libs/data-access/gn4/src/openapi/api/groups.api.service.ts +603 -0
- package/src/libs/data-access/gn4/src/openapi/api/harvesters.api.service.ts +202 -0
- package/src/libs/data-access/gn4/src/openapi/api/identifiers.api.service.ts +362 -0
- package/src/libs/data-access/gn4/src/openapi/api/languages.api.service.ts +171 -0
- package/src/libs/data-access/gn4/src/openapi/api/links.api.service.ts +489 -0
- package/src/libs/data-access/gn4/src/openapi/api/logos.api.service.ts +336 -0
- package/src/libs/data-access/gn4/src/openapi/api/mapservers.api.service.ts +794 -0
- package/src/libs/data-access/gn4/src/openapi/api/me.api.service.ts +171 -0
- package/src/libs/data-access/gn4/src/openapi/api/operations.api.service.ts +171 -0
- package/src/libs/data-access/gn4/src/openapi/api/pages.api.service.ts +423 -0
- package/src/libs/data-access/gn4/src/openapi/api/processes.api.service.ts +611 -0
- package/src/libs/data-access/gn4/src/openapi/api/records.api.service.ts +8296 -0
- package/src/libs/data-access/gn4/src/openapi/api/regions.api.service.ts +272 -0
- package/src/libs/data-access/gn4/src/openapi/api/registries.api.service.ts +1963 -0
- package/src/libs/data-access/gn4/src/openapi/api/related.api.service.ts +265 -0
- package/src/libs/data-access/gn4/src/openapi/api/search.api.service.ts +198 -0
- package/src/libs/data-access/gn4/src/openapi/api/selections.api.service.ts +360 -0
- package/src/libs/data-access/gn4/src/openapi/api/site.api.service.ts +1381 -0
- package/src/libs/data-access/gn4/src/openapi/api/sources.api.service.ts +256 -0
- package/src/libs/data-access/gn4/src/openapi/api/standards.api.service.ts +964 -0
- package/src/libs/data-access/gn4/src/openapi/api/status.api.service.ts +242 -0
- package/src/libs/data-access/gn4/src/openapi/api/tags.api.service.ts +336 -0
- package/src/libs/data-access/gn4/src/openapi/api/tools.api.service.ts +916 -0
- package/src/libs/data-access/gn4/src/openapi/api/ui.api.service.ts +333 -0
- package/src/libs/data-access/gn4/src/openapi/api/userfeedback.api.service.ts +928 -0
- package/src/libs/data-access/gn4/src/openapi/api/users.api.service.ts +1213 -0
- package/src/libs/data-access/gn4/src/openapi/api/usersearches.api.service.ts +741 -0
- package/src/libs/data-access/gn4/src/openapi/api/userselections.api.service.ts +530 -0
- package/src/libs/data-access/gn4/src/openapi/api.module.ts +42 -0
- package/src/libs/data-access/gn4/src/openapi/configuration.ts +125 -0
- package/src/libs/data-access/gn4/src/openapi/encoder.ts +20 -0
- package/src/libs/data-access/gn4/src/openapi/index.ts +5 -0
- package/src/libs/data-access/gn4/src/openapi/model/address.api.model.ts +20 -0
- package/src/libs/data-access/gn4/src/openapi/model/anonymousMapserver.api.model.ts +29 -0
- package/src/libs/data-access/gn4/src/openapi/model/associated.api.model.ts +16 -0
- package/src/libs/data-access/gn4/src/openapi/model/associatedSiblingMetadataItem.api.model.ts +26 -0
- package/src/libs/data-access/gn4/src/openapi/model/attributeTable.api.model.ts +16 -0
- package/src/libs/data-access/gn4/src/openapi/model/batchEditParameter.api.model.ts +17 -0
- package/src/libs/data-access/gn4/src/openapi/model/batchEditing.api.model.ts +16 -0
- package/src/libs/data-access/gn4/src/openapi/model/category.api.model.ts +16 -0
- package/src/libs/data-access/gn4/src/openapi/model/categoryResponse.api.model.ts +15 -0
- package/src/libs/data-access/gn4/src/openapi/model/children.api.model.ts +16 -0
- package/src/libs/data-access/gn4/src/openapi/model/codelist.api.model.ts +18 -0
- package/src/libs/data-access/gn4/src/openapi/model/crs.api.model.ts +19 -0
- package/src/libs/data-access/gn4/src/openapi/model/dataset.api.model.ts +16 -0
- package/src/libs/data-access/gn4/src/openapi/model/description.api.model.ts +16 -0
- package/src/libs/data-access/gn4/src/openapi/model/element.api.model.ts +21 -0
- package/src/libs/data-access/gn4/src/openapi/model/entry.api.model.ts +18 -0
- package/src/libs/data-access/gn4/src/openapi/model/extentDto.api.model.ts +18 -0
- package/src/libs/data-access/gn4/src/openapi/model/externalResourceManagementProperties.api.model.ts +17 -0
- package/src/libs/data-access/gn4/src/openapi/model/fCRelatedMetadataItem.api.model.ts +25 -0
- package/src/libs/data-access/gn4/src/openapi/model/fcat.api.model.ts +16 -0
- package/src/libs/data-access/gn4/src/openapi/model/featureResponse.api.model.ts +15 -0
- package/src/libs/data-access/gn4/src/openapi/model/featureType.api.model.ts +16 -0
- package/src/libs/data-access/gn4/src/openapi/model/field.api.model.ts +22 -0
- package/src/libs/data-access/gn4/src/openapi/model/grantedAuthority.api.model.ts +15 -0
- package/src/libs/data-access/gn4/src/openapi/model/group.api.model.ts +27 -0
- package/src/libs/data-access/gn4/src/openapi/model/groupOperations.api.model.ts +16 -0
- package/src/libs/data-access/gn4/src/openapi/model/groupPrivilege.api.model.ts +56 -0
- package/src/libs/data-access/gn4/src/openapi/model/hasfeaturecats.api.model.ts +16 -0
- package/src/libs/data-access/gn4/src/openapi/model/hassource.api.model.ts +16 -0
- package/src/libs/data-access/gn4/src/openapi/model/iProcessingReport.api.model.ts +21 -0
- package/src/libs/data-access/gn4/src/openapi/model/iSODate.api.model.ts +28 -0
- package/src/libs/data-access/gn4/src/openapi/model/infoReport.api.model.ts +19 -0
- package/src/libs/data-access/gn4/src/openapi/model/inlineObject1.api.model.ts +15 -0
- package/src/libs/data-access/gn4/src/openapi/model/inlineObject2.api.model.ts +15 -0
- package/src/libs/data-access/gn4/src/openapi/model/inlineObject3.api.model.ts +15 -0
- package/src/libs/data-access/gn4/src/openapi/model/isoLanguage.api.model.ts +18 -0
- package/src/libs/data-access/gn4/src/openapi/model/keywordBean.api.model.ts +26 -0
- package/src/libs/data-access/gn4/src/openapi/model/link.api.model.ts +32 -0
- package/src/libs/data-access/gn4/src/openapi/model/linkStatus.api.model.ts +21 -0
- package/src/libs/data-access/gn4/src/openapi/model/listRegionsResponse.api.model.ts +20 -0
- package/src/libs/data-access/gn4/src/openapi/model/localizedString.api.model.ts +17 -0
- package/src/libs/data-access/gn4/src/openapi/model/logFileResponse.api.model.ts +16 -0
- package/src/libs/data-access/gn4/src/openapi/model/mapServer.api.model.ts +28 -0
- package/src/libs/data-access/gn4/src/openapi/model/meResponse.api.model.ts +27 -0
- package/src/libs/data-access/gn4/src/openapi/model/metadataCategory.api.model.ts +17 -0
- package/src/libs/data-access/gn4/src/openapi/model/metadataIdentifierTemplate.api.model.ts +20 -0
- package/src/libs/data-access/gn4/src/openapi/model/metadataLink.api.model.ts +16 -0
- package/src/libs/data-access/gn4/src/openapi/model/metadataProcessingReport.api.model.ts +35 -0
- package/src/libs/data-access/gn4/src/openapi/model/metadataReplacementProcessingReport.api.model.ts +41 -0
- package/src/libs/data-access/gn4/src/openapi/model/metadataResource.api.model.ts +33 -0
- package/src/libs/data-access/gn4/src/openapi/model/metadataSchema.api.model.ts +30 -0
- package/src/libs/data-access/gn4/src/openapi/model/metadataStatus.api.model.ts +32 -0
- package/src/libs/data-access/gn4/src/openapi/model/metadataStatusResponse.api.model.ts +44 -0
- package/src/libs/data-access/gn4/src/openapi/model/metadataWorkflowStatusResponse.api.model.ts +21 -0
- package/src/libs/data-access/gn4/src/openapi/model/models.ts +109 -0
- package/src/libs/data-access/gn4/src/openapi/model/multilingualValue.api.model.ts +16 -0
- package/src/libs/data-access/gn4/src/openapi/model/online.api.model.ts +16 -0
- package/src/libs/data-access/gn4/src/openapi/model/operation.api.model.ts +36 -0
- package/src/libs/data-access/gn4/src/openapi/model/ownerResponse.api.model.ts +17 -0
- package/src/libs/data-access/gn4/src/openapi/model/pageJSONWrapper.api.model.ts +58 -0
- package/src/libs/data-access/gn4/src/openapi/model/pageLink.api.model.ts +28 -0
- package/src/libs/data-access/gn4/src/openapi/model/pageable.api.model.ts +21 -0
- package/src/libs/data-access/gn4/src/openapi/model/paginatedUserSearchResponse.api.model.ts +17 -0
- package/src/libs/data-access/gn4/src/openapi/model/parent.api.model.ts +16 -0
- package/src/libs/data-access/gn4/src/openapi/model/passwordUpdateParameter.api.model.ts +16 -0
- package/src/libs/data-access/gn4/src/openapi/model/processingReport.api.model.ts +25 -0
- package/src/libs/data-access/gn4/src/openapi/model/ratingAverage.api.model.ts +18 -0
- package/src/libs/data-access/gn4/src/openapi/model/ratingCriteria.api.model.ts +18 -0
- package/src/libs/data-access/gn4/src/openapi/model/regionResponse.api.model.ts +22 -0
- package/src/libs/data-access/gn4/src/openapi/model/related.api.model.ts +16 -0
- package/src/libs/data-access/gn4/src/openapi/model/relatedLinkItem.api.model.ts +24 -0
- package/src/libs/data-access/gn4/src/openapi/model/relatedMetadataItem.api.model.ts +23 -0
- package/src/libs/data-access/gn4/src/openapi/model/relatedResponse.api.model.ts +40 -0
- package/src/libs/data-access/gn4/src/openapi/model/relatedSiblingMetadataItem.api.model.ts +25 -0
- package/src/libs/data-access/gn4/src/openapi/model/relatedThumbnailItem.api.model.ts +19 -0
- package/src/libs/data-access/gn4/src/openapi/model/replaceEntryChange.api.model.ts +17 -0
- package/src/libs/data-access/gn4/src/openapi/model/replaceReport.api.model.ts +21 -0
- package/src/libs/data-access/gn4/src/openapi/model/report.api.model.ts +19 -0
- package/src/libs/data-access/gn4/src/openapi/model/reports.api.model.ts +16 -0
- package/src/libs/data-access/gn4/src/openapi/model/savedQuery.api.model.ts +19 -0
- package/src/libs/data-access/gn4/src/openapi/model/section.api.model.ts +17 -0
- package/src/libs/data-access/gn4/src/openapi/model/selection.api.model.ts +18 -0
- package/src/libs/data-access/gn4/src/openapi/model/service.api.model.ts +16 -0
- package/src/libs/data-access/gn4/src/openapi/model/setting.api.model.ts +29 -0
- package/src/libs/data-access/gn4/src/openapi/model/settingsListResponse.api.model.ts +16 -0
- package/src/libs/data-access/gn4/src/openapi/model/sharingParameter.api.model.ts +17 -0
- package/src/libs/data-access/gn4/src/openapi/model/sharingResponse.api.model.ts +18 -0
- package/src/libs/data-access/gn4/src/openapi/model/siblings.api.model.ts +16 -0
- package/src/libs/data-access/gn4/src/openapi/model/simpleMetadataProcessingReport.api.model.ts +35 -0
- package/src/libs/data-access/gn4/src/openapi/model/siteInformation.api.model.ts +19 -0
- package/src/libs/data-access/gn4/src/openapi/model/sort.api.model.ts +17 -0
- package/src/libs/data-access/gn4/src/openapi/model/source.api.model.ts +16 -0
- package/src/libs/data-access/gn4/src/openapi/model/status.api.model.ts +33 -0
- package/src/libs/data-access/gn4/src/openapi/model/statusValue.api.model.ts +57 -0
- package/src/libs/data-access/gn4/src/openapi/model/suggestionType.api.model.ts +21 -0
- package/src/libs/data-access/gn4/src/openapi/model/systemInfo.api.model.ts +24 -0
- package/src/libs/data-access/gn4/src/openapi/model/thumbnail.api.model.ts +16 -0
- package/src/libs/data-access/gn4/src/openapi/model/transferRequest.api.model.ts +18 -0
- package/src/libs/data-access/gn4/src/openapi/model/uiSetting.api.model.ts +16 -0
- package/src/libs/data-access/gn4/src/openapi/model/user.api.model.ts +54 -0
- package/src/libs/data-access/gn4/src/openapi/model/userDto.api.model.ts +31 -0
- package/src/libs/data-access/gn4/src/openapi/model/userFeedbackDTO.api.model.ts +32 -0
- package/src/libs/data-access/gn4/src/openapi/model/userGroup.api.model.ts +40 -0
- package/src/libs/data-access/gn4/src/openapi/model/userGroupId.api.model.ts +36 -0
- package/src/libs/data-access/gn4/src/openapi/model/userGroupsResponse.api.model.ts +19 -0
- package/src/libs/data-access/gn4/src/openapi/model/userRegisterDto.api.model.ts +23 -0
- package/src/libs/data-access/gn4/src/openapi/model/userSearchDto.api.model.ts +23 -0
- package/src/libs/data-access/gn4/src/openapi/model/userSecurity.api.model.ts +25 -0
- package/src/libs/data-access/gn4/src/openapi/model/values.api.model.ts +17 -0
- package/src/libs/data-access/gn4/src/openapi/model/xsltMetadataProcessingReport.api.model.ts +37 -0
- package/src/libs/data-access/gn4/src/openapi/variables.ts +9 -0
- package/src/libs/data-access/gn4/src/spec.yaml +11305 -0
- package/src/libs/feature/auth/src/index.ts +1 -0
- package/src/libs/feature/auth/src/lib/feature-auth.module.ts +12 -0
- package/src/libs/feature/catalog/src/index.ts +7 -0
- package/src/libs/feature/catalog/src/lib/feature-catalog.module.ts +85 -0
- package/src/libs/feature/catalog/src/lib/organisations/organisations.component.css +0 -0
- package/src/libs/feature/catalog/src/lib/organisations/organisations.component.html +26 -0
- package/src/libs/feature/catalog/src/lib/organisations/organisations.component.ts +105 -0
- package/src/libs/feature/catalog/src/lib/records/records.service.ts +18 -0
- package/src/libs/feature/catalog/src/lib/site-title/site-title.component.css +0 -0
- package/src/libs/feature/catalog/src/lib/site-title/site-title.component.html +5 -0
- package/src/libs/feature/catalog/src/lib/site-title/site-title.component.ts +23 -0
- package/src/libs/feature/catalog/src/lib/source-label/source-label.component.css +0 -0
- package/src/libs/feature/catalog/src/lib/source-label/source-label.component.html +1 -0
- package/src/libs/feature/catalog/src/lib/source-label/source-label.component.ts +17 -0
- package/src/libs/feature/catalog/src/lib/sources/sources.fixture.ts +92 -0
- package/src/libs/feature/catalog/src/lib/sources/sources.model.ts +24 -0
- package/src/libs/feature/catalog/src/lib/sources/sources.service.ts +28 -0
- package/src/libs/feature/catalog/src/lib/users/users.service.ts +12 -0
- package/src/libs/feature/dataviz/src/index.ts +6 -0
- package/src/libs/feature/dataviz/src/lib/chart-view/chart-view.component.css +0 -0
- package/src/libs/feature/dataviz/src/lib/chart-view/chart-view.component.html +62 -0
- package/src/libs/feature/dataviz/src/lib/chart-view/chart-view.component.ts +232 -0
- package/src/libs/feature/dataviz/src/lib/feature-dataviz.module.ts +43 -0
- package/src/libs/feature/dataviz/src/lib/figure/figure-container/figure-container.component.css +0 -0
- package/src/libs/feature/dataviz/src/lib/figure/figure-container/figure-container.component.html +6 -0
- package/src/libs/feature/dataviz/src/lib/figure/figure-container/figure-container.component.ts +33 -0
- package/src/libs/feature/dataviz/src/lib/figure/figure.fixtures.ts +40 -0
- package/src/libs/feature/dataviz/src/lib/figure/figure.service.ts +30 -0
- package/src/libs/feature/dataviz/src/lib/geo-table-view/geo-table-view.component.css +0 -0
- package/src/libs/feature/dataviz/src/lib/geo-table-view/geo-table-view.component.html +17 -0
- package/src/libs/feature/dataviz/src/lib/geo-table-view/geo-table-view.component.ts +156 -0
- package/src/libs/feature/dataviz/src/lib/service/data.service.ts +208 -0
- package/src/libs/feature/dataviz/src/lib/table-view/table-view.component.css +0 -0
- package/src/libs/feature/dataviz/src/lib/table-view/table-view.component.html +22 -0
- package/src/libs/feature/dataviz/src/lib/table-view/table-view.component.ts +90 -0
- package/src/libs/feature/editor/src/index.ts +6 -0
- package/src/libs/feature/editor/src/lib/components/configs/datepicker.config.ts +26 -0
- package/src/libs/feature/editor/src/lib/components/wizard/wizard.component.css +5 -0
- package/src/libs/feature/editor/src/lib/components/wizard/wizard.component.html +26 -0
- package/src/libs/feature/editor/src/lib/components/wizard/wizard.component.ts +93 -0
- package/src/libs/feature/editor/src/lib/components/wizard-field/wizard-field.component.css +31 -0
- package/src/libs/feature/editor/src/lib/components/wizard-field/wizard-field.component.html +75 -0
- package/src/libs/feature/editor/src/lib/components/wizard-field/wizard-field.component.ts +208 -0
- package/src/libs/feature/editor/src/lib/components/wizard-summarize/wizard-summarize.component.css +3 -0
- package/src/libs/feature/editor/src/lib/components/wizard-summarize/wizard-summarize.component.html +21 -0
- package/src/libs/feature/editor/src/lib/components/wizard-summarize/wizard-summarize.component.ts +59 -0
- package/src/libs/feature/editor/src/lib/feature-editor.module.ts +35 -0
- package/src/libs/feature/editor/src/lib/models/index.ts +2 -0
- package/src/libs/feature/editor/src/lib/models/wizard-field.model.ts +10 -0
- package/src/libs/feature/editor/src/lib/models/wizard-field.type.ts +7 -0
- package/src/libs/feature/editor/src/lib/record-form/record-form.component.css +0 -0
- package/src/libs/feature/editor/src/lib/record-form/record-form.component.html +8 -0
- package/src/libs/feature/editor/src/lib/record-form/record-form.component.ts +23 -0
- package/src/libs/feature/editor/src/lib/services/editor.service.ts +107 -0
- package/src/libs/feature/editor/src/lib/services/wizard.service.ts +105 -0
- package/src/libs/feature/map/src/index.ts +19 -0
- package/src/libs/feature/map/src/lib/+state/map.actions.ts +32 -0
- package/src/libs/feature/map/src/lib/+state/map.effects.ts +7 -0
- package/src/libs/feature/map/src/lib/+state/map.facade.ts +30 -0
- package/src/libs/feature/map/src/lib/+state/map.models.ts +9 -0
- package/src/libs/feature/map/src/lib/+state/map.reducer.ts +83 -0
- package/src/libs/feature/map/src/lib/+state/map.selectors.ts +10 -0
- package/src/libs/feature/map/src/lib/add-layer-from-catalog/add-layer-from-catalog.component.css +4 -0
- package/src/libs/feature/map/src/lib/add-layer-from-catalog/add-layer-from-catalog.component.html +6 -0
- package/src/libs/feature/map/src/lib/add-layer-from-catalog/add-layer-from-catalog.component.ts +44 -0
- package/src/libs/feature/map/src/lib/add-layer-from-catalog/add-layer-record-preview/add-layer-record-preview.component.css +0 -0
- package/src/libs/feature/map/src/lib/add-layer-from-catalog/add-layer-record-preview/add-layer-record-preview.component.html +23 -0
- package/src/libs/feature/map/src/lib/add-layer-from-catalog/add-layer-record-preview/add-layer-record-preview.component.ts +75 -0
- package/src/libs/feature/map/src/lib/constant/index.ts +1 -0
- package/src/libs/feature/map/src/lib/constant/map-options.ts +17 -0
- package/src/libs/feature/map/src/lib/constant/style.constant.ts +18 -0
- package/src/libs/feature/map/src/lib/feature-info/feature-info.service.ts +42 -0
- package/src/libs/feature/map/src/lib/feature-map.module.ts +61 -0
- package/src/libs/feature/map/src/lib/layers-panel/layers-panel.component.html +49 -0
- package/src/libs/feature/map/src/lib/layers-panel/layers-panel.component.scss +0 -0
- package/src/libs/feature/map/src/lib/layers-panel/layers-panel.component.ts +17 -0
- package/src/libs/feature/map/src/lib/manager/map-instance.directive.ts +10 -0
- package/src/libs/feature/map/src/lib/manager/map-manager.service.ts +13 -0
- package/src/libs/feature/map/src/lib/map-container/map-container.component.css +0 -0
- package/src/libs/feature/map/src/lib/map-container/map-container.component.html +1 -0
- package/src/libs/feature/map/src/lib/map-container/map-container.component.ts +26 -0
- package/src/libs/feature/map/src/lib/map-context/component/map-context.component.css +0 -0
- package/src/libs/feature/map/src/lib/map-context/component/map-context.component.html +1 -0
- package/src/libs/feature/map/src/lib/map-context/component/map-context.component.ts +57 -0
- package/src/libs/feature/map/src/lib/map-context/map-context.fixtures.ts +51 -0
- package/src/libs/feature/map/src/lib/map-context/map-context.model.ts +80 -0
- package/src/libs/feature/map/src/lib/map-context/map-context.service.ts +232 -0
- package/src/libs/feature/map/src/lib/style/index.ts +2 -0
- package/src/libs/feature/map/src/lib/style/map-style.fixtures.ts +45 -0
- package/src/libs/feature/map/src/lib/style/map-style.service.ts +108 -0
- package/src/libs/feature/map/src/lib/utils/index.ts +3 -0
- package/src/libs/feature/map/src/lib/utils/map-utils-wms.service.ts +40 -0
- package/src/libs/feature/map/src/lib/utils/map-utils.service.ts +242 -0
- package/src/libs/feature/map/src/lib/utils/projections.ts +1 -0
- package/src/libs/feature/record/src/index.ts +9 -0
- package/src/libs/feature/record/src/lib/data-view/data-view.component.css +0 -0
- package/src/libs/feature/record/src/lib/data-view/data-view.component.html +21 -0
- package/src/libs/feature/record/src/lib/data-view/data-view.component.ts +59 -0
- package/src/libs/feature/record/src/lib/data-view-permalink/data-view-permalink.component.css +0 -0
- package/src/libs/feature/record/src/lib/data-view-permalink/data-view-permalink.component.html +5 -0
- package/src/libs/feature/record/src/lib/data-view-permalink/data-view-permalink.component.ts +58 -0
- package/src/libs/feature/record/src/lib/data-view-share/data-view-share.component.css +10 -0
- package/src/libs/feature/record/src/lib/data-view-share/data-view-share.component.html +30 -0
- package/src/libs/feature/record/src/lib/data-view-share/data-view-share.component.ts +21 -0
- package/src/libs/feature/record/src/lib/data-view-web-component/data-view-web-component.component.css +0 -0
- package/src/libs/feature/record/src/lib/data-view-web-component/data-view-web-component.component.html +5 -0
- package/src/libs/feature/record/src/lib/data-view-web-component/data-view-web-component.component.ts +51 -0
- package/src/libs/feature/record/src/lib/external-viewer-button/external-viewer-button.component.css +0 -0
- package/src/libs/feature/record/src/lib/external-viewer-button/external-viewer-button.component.html +9 -0
- package/src/libs/feature/record/src/lib/external-viewer-button/external-viewer-button.component.ts +54 -0
- package/src/libs/feature/record/src/lib/feature-record.module.ts +62 -0
- package/src/libs/feature/record/src/lib/gn-ui-version.token.ts +3 -0
- package/src/libs/feature/record/src/lib/map-view/map-view.component.css +0 -0
- package/src/libs/feature/record/src/lib/map-view/map-view.component.html +54 -0
- package/src/libs/feature/record/src/lib/map-view/map-view.component.ts +201 -0
- package/src/libs/feature/record/src/lib/state/index.ts +2 -0
- package/src/libs/feature/record/src/lib/state/mdview.actions.ts +35 -0
- package/src/libs/feature/record/src/lib/state/mdview.effects.ts +43 -0
- package/src/libs/feature/record/src/lib/state/mdview.facade.ts +106 -0
- package/src/libs/feature/record/src/lib/state/mdview.reducer.ts +61 -0
- package/src/libs/feature/record/src/lib/state/mdview.selectors.ts +36 -0
- package/src/libs/feature/router/src/index.ts +1 -0
- package/src/libs/feature/router/src/lib/default/SearchRouteReuseStrategy.ts +34 -0
- package/src/libs/feature/router/src/lib/default/constants.ts +11 -0
- package/src/libs/feature/router/src/lib/default/container/search-router.container.directive.ts +23 -0
- package/src/libs/feature/router/src/lib/default/index.ts +7 -0
- package/src/libs/feature/router/src/lib/default/router.config.ts +11 -0
- package/src/libs/feature/router/src/lib/default/router.module.ts +50 -0
- package/src/libs/feature/router/src/lib/default/router.service.ts +39 -0
- package/src/libs/feature/router/src/lib/default/services/router-search.service.ts +65 -0
- package/src/libs/feature/router/src/lib/default/state/router.actions.ts +15 -0
- package/src/libs/feature/router/src/lib/default/state/router.effects.ts +163 -0
- package/src/libs/feature/router/src/lib/default/state/router.facade.ts +80 -0
- package/src/libs/feature/router/src/lib/default/state/router.selectors.ts +17 -0
- package/src/libs/feature/search/src/index.ts +20 -0
- package/src/libs/feature/search/src/lib/constants.ts +40 -0
- package/src/libs/feature/search/src/lib/facets/facets-container/facets-container.component.css +0 -0
- package/src/libs/feature/search/src/lib/facets/facets-container/facets-container.component.html +7 -0
- package/src/libs/feature/search/src/lib/facets/facets-container/facets-container.component.ts +83 -0
- package/src/libs/feature/search/src/lib/facets/facets.module.ts +12 -0
- package/src/libs/feature/search/src/lib/facets/facets.service.ts +256 -0
- package/src/libs/feature/search/src/lib/favorites/favorite-star/favorite-star.component.css +0 -0
- package/src/libs/feature/search/src/lib/favorites/favorite-star/favorite-star.component.html +10 -0
- package/src/libs/feature/search/src/lib/favorites/favorite-star/favorite-star.component.ts +128 -0
- package/src/libs/feature/search/src/lib/feature-search.module.ts +83 -0
- package/src/libs/feature/search/src/lib/filter-dropdown/filter-dropdown.component.css +0 -0
- package/src/libs/feature/search/src/lib/filter-dropdown/filter-dropdown.component.html +11 -0
- package/src/libs/feature/search/src/lib/filter-dropdown/filter-dropdown.component.ts +60 -0
- package/src/libs/feature/search/src/lib/fuzzy-search/fuzzy-search.component.css +0 -0
- package/src/libs/feature/search/src/lib/fuzzy-search/fuzzy-search.component.html +10 -0
- package/src/libs/feature/search/src/lib/fuzzy-search/fuzzy-search.component.ts +79 -0
- package/src/libs/feature/search/src/lib/records-metrics/records-metrics.component.css +0 -0
- package/src/libs/feature/search/src/lib/records-metrics/records-metrics.component.html +10 -0
- package/src/libs/feature/search/src/lib/records-metrics/records-metrics.component.ts +45 -0
- package/src/libs/feature/search/src/lib/results-hits-number/results-hits.container.component.html +4 -0
- package/src/libs/feature/search/src/lib/results-hits-number/results-hits.container.component.ts +10 -0
- package/src/libs/feature/search/src/lib/results-layout/results-layout.component.html +7 -0
- package/src/libs/feature/search/src/lib/results-layout/results-layout.component.ts +29 -0
- package/src/libs/feature/search/src/lib/results-list/results-list.container.component.css +0 -0
- package/src/libs/feature/search/src/lib/results-list/results-list.container.component.html +58 -0
- package/src/libs/feature/search/src/lib/results-list/results-list.container.component.ts +86 -0
- package/src/libs/feature/search/src/lib/sort-by/sort-by.component.html +7 -0
- package/src/libs/feature/search/src/lib/sort-by/sort-by.component.ts +55 -0
- package/src/libs/feature/search/src/lib/state/actions.ts +273 -0
- package/src/libs/feature/search/src/lib/state/container/search-state.container.directive.ts +17 -0
- package/src/libs/feature/search/src/lib/state/effects.ts +218 -0
- package/src/libs/feature/search/src/lib/state/fixtures/search-state.fixtures.ts +29 -0
- package/src/libs/feature/search/src/lib/state/reducer.ts +340 -0
- package/src/libs/feature/search/src/lib/state/search.facade.ts +219 -0
- package/src/libs/feature/search/src/lib/state/selectors.ts +94 -0
- package/src/libs/feature/search/src/lib/utils/operators/search.operator.ts +40 -0
- package/src/libs/feature/search/src/lib/utils/service/fields.service.ts +120 -0
- package/src/libs/feature/search/src/lib/utils/service/fields.ts +315 -0
- package/src/libs/feature/search/src/lib/utils/service/search.service.ts +43 -0
- package/src/libs/ui/catalog/src/index.ts +5 -0
- package/src/libs/ui/catalog/src/lib/catalog-title/catalog-title.component.css +0 -0
- package/src/libs/ui/catalog/src/lib/catalog-title/catalog-title.component.html +21 -0
- package/src/libs/ui/catalog/src/lib/catalog-title/catalog-title.component.ts +12 -0
- package/src/libs/ui/catalog/src/lib/language-switcher/language-switcher.component.css +0 -0
- package/src/libs/ui/catalog/src/lib/language-switcher/language-switcher.component.html +9 -0
- package/src/libs/ui/catalog/src/lib/language-switcher/language-switcher.component.ts +51 -0
- package/src/libs/ui/catalog/src/lib/organisation-preview/organisation-preview.component.css +13 -0
- package/src/libs/ui/catalog/src/lib/organisation-preview/organisation-preview.component.html +40 -0
- package/src/libs/ui/catalog/src/lib/organisation-preview/organisation-preview.component.ts +25 -0
- package/src/libs/ui/catalog/src/lib/organisations-sort/organisations-sort.component.css +0 -0
- package/src/libs/ui/catalog/src/lib/organisations-sort/organisations-sort.component.html +17 -0
- package/src/libs/ui/catalog/src/lib/organisations-sort/organisations-sort.component.ts +40 -0
- package/src/libs/ui/catalog/src/lib/ui-catalog.module.ts +33 -0
- package/src/libs/ui/dataviz/src/index.ts +5 -0
- package/src/libs/ui/dataviz/src/lib/chart/chart.component.css +0 -0
- package/src/libs/ui/dataviz/src/lib/chart/chart.component.html +3 -0
- package/src/libs/ui/dataviz/src/lib/chart/chart.component.ts +222 -0
- package/src/libs/ui/dataviz/src/lib/chart/chart.fixtures.ts +43 -0
- package/src/libs/ui/dataviz/src/lib/figure/figure.component.css +3 -0
- package/src/libs/ui/dataviz/src/lib/figure/figure.component.html +20 -0
- package/src/libs/ui/dataviz/src/lib/figure/figure.component.ts +27 -0
- package/src/libs/ui/dataviz/src/lib/table/table.component.css +32 -0
- package/src/libs/ui/dataviz/src/lib/table/table.component.html +40 -0
- package/src/libs/ui/dataviz/src/lib/table/table.component.ts +80 -0
- package/src/libs/ui/dataviz/src/lib/table/table.fixtures.ts +40 -0
- package/src/libs/ui/dataviz/src/lib/ui-dataviz.module.ts +11 -0
- package/src/libs/ui/elements/src/index.ts +20 -0
- package/src/libs/ui/elements/src/lib/api-card/api-card.component.css +0 -0
- package/src/libs/ui/elements/src/lib/api-card/api-card.component.html +23 -0
- package/src/libs/ui/elements/src/lib/api-card/api-card.component.ts +12 -0
- package/src/libs/ui/elements/src/lib/avatar/avatar.component.html +10 -0
- package/src/libs/ui/elements/src/lib/avatar/avatar.component.ts +15 -0
- package/src/libs/ui/elements/src/lib/content-ghost/content-ghost.component.css +29 -0
- package/src/libs/ui/elements/src/lib/content-ghost/content-ghost.component.html +5 -0
- package/src/libs/ui/elements/src/lib/content-ghost/content-ghost.component.ts +12 -0
- package/src/libs/ui/elements/src/lib/download-item/download-item.component.css +0 -0
- package/src/libs/ui/elements/src/lib/download-item/download-item.component.html +34 -0
- package/src/libs/ui/elements/src/lib/download-item/download-item.component.ts +26 -0
- package/src/libs/ui/elements/src/lib/downloads-list/downloads-list.component.css +0 -0
- package/src/libs/ui/elements/src/lib/downloads-list/downloads-list.component.html +33 -0
- package/src/libs/ui/elements/src/lib/downloads-list/downloads-list.component.ts +100 -0
- package/src/libs/ui/elements/src/lib/link-card/link-card.component.css +0 -0
- package/src/libs/ui/elements/src/lib/link-card/link-card.component.html +25 -0
- package/src/libs/ui/elements/src/lib/link-card/link-card.component.ts +12 -0
- package/src/libs/ui/elements/src/lib/metadata-catalog/metadata-catalog.component.css +0 -0
- package/src/libs/ui/elements/src/lib/metadata-catalog/metadata-catalog.component.html +8 -0
- package/src/libs/ui/elements/src/lib/metadata-catalog/metadata-catalog.component.ts +11 -0
- package/src/libs/ui/elements/src/lib/metadata-contact/metadata-contact.component.css +0 -0
- package/src/libs/ui/elements/src/lib/metadata-contact/metadata-contact.component.html +32 -0
- package/src/libs/ui/elements/src/lib/metadata-contact/metadata-contact.component.ts +40 -0
- package/src/libs/ui/elements/src/lib/metadata-info/linkify.directive.ts +38 -0
- package/src/libs/ui/elements/src/lib/metadata-info/metadata-info.component.css +9 -0
- package/src/libs/ui/elements/src/lib/metadata-info/metadata-info.component.html +105 -0
- package/src/libs/ui/elements/src/lib/metadata-info/metadata-info.component.ts +47 -0
- package/src/libs/ui/elements/src/lib/metadata-quality/metadata-quality.component.css +3 -0
- package/src/libs/ui/elements/src/lib/metadata-quality/metadata-quality.component.html +27 -0
- package/src/libs/ui/elements/src/lib/metadata-quality/metadata-quality.component.ts +84 -0
- package/src/libs/ui/elements/src/lib/metadata-quality-item/metadata-quality-item.component.html +4 -0
- package/src/libs/ui/elements/src/lib/metadata-quality-item/metadata-quality-item.component.ts +26 -0
- package/src/libs/ui/elements/src/lib/pagination/pagination.component.css +0 -0
- package/src/libs/ui/elements/src/lib/pagination/pagination.component.html +55 -0
- package/src/libs/ui/elements/src/lib/pagination/pagination.component.ts +50 -0
- package/src/libs/ui/elements/src/lib/pagination-buttons/pagination-buttons.component.css +0 -0
- package/src/libs/ui/elements/src/lib/pagination-buttons/pagination-buttons.component.html +33 -0
- package/src/libs/ui/elements/src/lib/pagination-buttons/pagination-buttons.component.ts +68 -0
- package/src/libs/ui/elements/src/lib/related-record-card/related-record-card.component.css +0 -0
- package/src/libs/ui/elements/src/lib/related-record-card/related-record-card.component.html +30 -0
- package/src/libs/ui/elements/src/lib/related-record-card/related-record-card.component.ts +12 -0
- package/src/libs/ui/elements/src/lib/search-results-error/search-results-error.component.css +30 -0
- package/src/libs/ui/elements/src/lib/search-results-error/search-results-error.component.html +35 -0
- package/src/libs/ui/elements/src/lib/search-results-error/search-results-error.component.ts +20 -0
- package/src/libs/ui/elements/src/lib/thumbnail/thumbnail.component.html +18 -0
- package/src/libs/ui/elements/src/lib/thumbnail/thumbnail.component.ts +113 -0
- package/src/libs/ui/elements/src/lib/ui-elements.module.ts +85 -0
- package/src/libs/ui/elements/src/lib/user-preview/user-preview.component.html +11 -0
- package/src/libs/ui/elements/src/lib/user-preview/user-preview.component.ts +16 -0
- package/src/libs/ui/inputs/src/index.ts +18 -0
- package/src/libs/ui/inputs/src/lib/autocomplete/autocomplete.component.css +31 -0
- package/src/libs/ui/inputs/src/lib/autocomplete/autocomplete.component.html +51 -0
- package/src/libs/ui/inputs/src/lib/autocomplete/autocomplete.component.ts +159 -0
- package/src/libs/ui/inputs/src/lib/button/button.component.css +5 -0
- package/src/libs/ui/inputs/src/lib/button/button.component.html +9 -0
- package/src/libs/ui/inputs/src/lib/button/button.component.ts +75 -0
- package/src/libs/ui/inputs/src/lib/check-toggle/check-toggle.component.css +0 -0
- package/src/libs/ui/inputs/src/lib/check-toggle/check-toggle.component.html +19 -0
- package/src/libs/ui/inputs/src/lib/check-toggle/check-toggle.component.ts +25 -0
- package/src/libs/ui/inputs/src/lib/chips-input/chips-input.component.css +36 -0
- package/src/libs/ui/inputs/src/lib/chips-input/chips-input.component.html +23 -0
- package/src/libs/ui/inputs/src/lib/chips-input/chips-input.component.ts +78 -0
- package/src/libs/ui/inputs/src/lib/copy-text-button/copy-text-button.component.css +0 -0
- package/src/libs/ui/inputs/src/lib/copy-text-button/copy-text-button.component.html +32 -0
- package/src/libs/ui/inputs/src/lib/copy-text-button/copy-text-button.component.ts +19 -0
- package/src/libs/ui/inputs/src/lib/drag-and-drop-file-input/drag-and-drop-file-input.component.css +4 -0
- package/src/libs/ui/inputs/src/lib/drag-and-drop-file-input/drag-and-drop-file-input.component.html +14 -0
- package/src/libs/ui/inputs/src/lib/drag-and-drop-file-input/drag-and-drop-file-input.component.ts +27 -0
- package/src/libs/ui/inputs/src/lib/dropdown-multiselect/dropdown-multiselect.component.css +0 -0
- package/src/libs/ui/inputs/src/lib/dropdown-multiselect/dropdown-multiselect.component.html +123 -0
- package/src/libs/ui/inputs/src/lib/dropdown-multiselect/dropdown-multiselect.component.ts +198 -0
- package/src/libs/ui/inputs/src/lib/dropdown-multiselect/dropdown-multiselect.model.ts +4 -0
- package/src/libs/ui/inputs/src/lib/dropdown-selector/dropdown-selector.component.css +0 -0
- package/src/libs/ui/inputs/src/lib/dropdown-selector/dropdown-selector.component.html +73 -0
- package/src/libs/ui/inputs/src/lib/dropdown-selector/dropdown-selector.component.ts +181 -0
- package/src/libs/ui/inputs/src/lib/dropdown-selector/dropdown-selector.model.ts +5 -0
- package/src/libs/ui/inputs/src/lib/form-field/form-field-array/form-field-array.component.css +0 -0
- package/src/libs/ui/inputs/src/lib/form-field/form-field-array/form-field-array.component.html +1 -0
- package/src/libs/ui/inputs/src/lib/form-field/form-field-array/form-field-array.component.ts +9 -0
- package/src/libs/ui/inputs/src/lib/form-field/form-field-file/form-field-file.component.css +0 -0
- package/src/libs/ui/inputs/src/lib/form-field/form-field-file/form-field-file.component.html +12 -0
- package/src/libs/ui/inputs/src/lib/form-field/form-field-file/form-field-file.component.ts +15 -0
- package/src/libs/ui/inputs/src/lib/form-field/form-field-object/form-field-object.component.css +0 -0
- package/src/libs/ui/inputs/src/lib/form-field/form-field-object/form-field-object.component.html +1 -0
- package/src/libs/ui/inputs/src/lib/form-field/form-field-object/form-field-object.component.ts +9 -0
- package/src/libs/ui/inputs/src/lib/form-field/form-field-rich/form-field-rich.component.css +0 -0
- package/src/libs/ui/inputs/src/lib/form-field/form-field-rich/form-field-rich.component.html +11 -0
- package/src/libs/ui/inputs/src/lib/form-field/form-field-rich/form-field-rich.component.ts +15 -0
- package/src/libs/ui/inputs/src/lib/form-field/form-field-simple/form-field-simple.component.css +0 -0
- package/src/libs/ui/inputs/src/lib/form-field/form-field-simple/form-field-simple.component.html +27 -0
- package/src/libs/ui/inputs/src/lib/form-field/form-field-simple/form-field-simple.component.ts +37 -0
- package/src/libs/ui/inputs/src/lib/form-field/form-field-spatial-extent/form-field-spatial-extent.component.css +0 -0
- package/src/libs/ui/inputs/src/lib/form-field/form-field-spatial-extent/form-field-spatial-extent.component.html +1 -0
- package/src/libs/ui/inputs/src/lib/form-field/form-field-spatial-extent/form-field-spatial-extent.component.ts +9 -0
- package/src/libs/ui/inputs/src/lib/form-field/form-field-temporal-extent/form-field-temporal-extent.component.css +0 -0
- package/src/libs/ui/inputs/src/lib/form-field/form-field-temporal-extent/form-field-temporal-extent.component.html +1 -0
- package/src/libs/ui/inputs/src/lib/form-field/form-field-temporal-extent/form-field-temporal-extent.component.ts +9 -0
- package/src/libs/ui/inputs/src/lib/form-field/form-field.component.css +0 -0
- package/src/libs/ui/inputs/src/lib/form-field/form-field.component.html +68 -0
- package/src/libs/ui/inputs/src/lib/form-field/form-field.component.ts +78 -0
- package/src/libs/ui/inputs/src/lib/form-field/form-field.model.ts +44 -0
- package/src/libs/ui/inputs/src/lib/form-field/index.ts +9 -0
- package/src/libs/ui/inputs/src/lib/navigation-button/navigation-button.component.css +0 -0
- package/src/libs/ui/inputs/src/lib/navigation-button/navigation-button.component.html +6 -0
- package/src/libs/ui/inputs/src/lib/navigation-button/navigation-button.component.ts +12 -0
- package/src/libs/ui/inputs/src/lib/star-toggle/star-toggle.component.css +41 -0
- package/src/libs/ui/inputs/src/lib/star-toggle/star-toggle.component.html +34 -0
- package/src/libs/ui/inputs/src/lib/star-toggle/star-toggle.component.ts +37 -0
- package/src/libs/ui/inputs/src/lib/text-area/text-area.component.css +3 -0
- package/src/libs/ui/inputs/src/lib/text-area/text-area.component.html +12 -0
- package/src/libs/ui/inputs/src/lib/text-area/text-area.component.ts +42 -0
- package/src/libs/ui/inputs/src/lib/text-input/text-input.component.css +3 -0
- package/src/libs/ui/inputs/src/lib/text-input/text-input.component.html +11 -0
- package/src/libs/ui/inputs/src/lib/text-input/text-input.component.ts +41 -0
- package/src/libs/ui/inputs/src/lib/ui-inputs.module.ts +94 -0
- package/src/libs/ui/inputs/src/lib/viewport-intersector/viewport-intersector.component.css +0 -0
- package/src/libs/ui/inputs/src/lib/viewport-intersector/viewport-intersector.component.html +1 -0
- package/src/libs/ui/inputs/src/lib/viewport-intersector/viewport-intersector.component.ts +58 -0
- package/src/libs/ui/layout/src/index.ts +6 -0
- package/src/libs/ui/layout/src/lib/anchor-link/anchor-link.directive.ts +59 -0
- package/src/libs/ui/layout/src/lib/carousel/carousel.component.css +20 -0
- package/src/libs/ui/layout/src/lib/carousel/carousel.component.html +16 -0
- package/src/libs/ui/layout/src/lib/carousel/carousel.component.ts +50 -0
- package/src/libs/ui/layout/src/lib/expandable-panel/expandable-panel.component.css +0 -0
- package/src/libs/ui/layout/src/lib/expandable-panel/expandable-panel.component.html +24 -0
- package/src/libs/ui/layout/src/lib/expandable-panel/expandable-panel.component.ts +31 -0
- package/src/libs/ui/layout/src/lib/expandable-panel-button/expandable-panel-button.component.css +12 -0
- package/src/libs/ui/layout/src/lib/expandable-panel-button/expandable-panel-button.component.html +22 -0
- package/src/libs/ui/layout/src/lib/expandable-panel-button/expandable-panel-button.component.ts +21 -0
- package/src/libs/ui/layout/src/lib/sticky-header/sticky-header.component.css +0 -0
- package/src/libs/ui/layout/src/lib/sticky-header/sticky-header.component.html +16 -0
- package/src/libs/ui/layout/src/lib/sticky-header/sticky-header.component.ts +109 -0
- package/src/libs/ui/layout/src/lib/ui-layout.module.ts +28 -0
- package/src/libs/ui/map/src/index.ts +3 -0
- package/src/libs/ui/map/src/lib/components/feature-detail/feature-detail.component.css +6 -0
- package/src/libs/ui/map/src/lib/components/feature-detail/feature-detail.component.html +6 -0
- package/src/libs/ui/map/src/lib/components/feature-detail/feature-detail.component.ts +21 -0
- package/src/libs/ui/map/src/lib/components/map/map.component.css +0 -0
- package/src/libs/ui/map/src/lib/components/map/map.component.html +15 -0
- package/src/libs/ui/map/src/lib/components/map/map.component.ts +57 -0
- package/src/libs/ui/map/src/lib/ui-map.module.ts +19 -0
- package/src/libs/ui/search/src/index.ts +20 -0
- package/src/libs/ui/search/src/lib/facets/facet-block/facet-block.component.css +0 -0
- package/src/libs/ui/search/src/lib/facets/facet-block/facet-block.component.html +88 -0
- package/src/libs/ui/search/src/lib/facets/facet-block/facet-block.component.ts +138 -0
- package/src/libs/ui/search/src/lib/facets/facet-item/facet-item.component.css +0 -0
- package/src/libs/ui/search/src/lib/facets/facet-item/facet-item.component.html +52 -0
- package/src/libs/ui/search/src/lib/facets/facet-item/facet-item.component.ts +40 -0
- package/src/libs/ui/search/src/lib/facets/facet-list/facet-list.component.css +0 -0
- package/src/libs/ui/search/src/lib/facets/facet-list/facet-list.component.html +8 -0
- package/src/libs/ui/search/src/lib/facets/facet-list/facet-list.component.ts +45 -0
- package/src/libs/ui/search/src/lib/facets/facets.model.ts +31 -0
- package/src/libs/ui/search/src/lib/facets/facets.module.ts +14 -0
- package/src/libs/ui/search/src/lib/facets/fixtures/aggregations-model-response.ts +52 -0
- package/src/libs/ui/search/src/lib/facets/fixtures/index.ts +1 -0
- package/src/libs/ui/search/src/lib/record-metric/record-metric.component.css +0 -0
- package/src/libs/ui/search/src/lib/record-metric/record-metric.component.html +22 -0
- package/src/libs/ui/search/src/lib/record-metric/record-metric.component.ts +25 -0
- package/src/libs/ui/search/src/lib/record-preview/record-preview.component.ts +76 -0
- package/src/libs/ui/search/src/lib/record-preview-card/record-preview-card.component.html +25 -0
- package/src/libs/ui/search/src/lib/record-preview-card/record-preview-card.component.scss +0 -0
- package/src/libs/ui/search/src/lib/record-preview-card/record-preview-card.component.ts +10 -0
- package/src/libs/ui/search/src/lib/record-preview-feed/record-preview-feed.component.css +4 -0
- package/src/libs/ui/search/src/lib/record-preview-feed/record-preview-feed.component.html +83 -0
- package/src/libs/ui/search/src/lib/record-preview-feed/record-preview-feed.component.ts +34 -0
- package/src/libs/ui/search/src/lib/record-preview-list/record-preview-list.component.html +42 -0
- package/src/libs/ui/search/src/lib/record-preview-list/record-preview-list.component.scss +3 -0
- package/src/libs/ui/search/src/lib/record-preview-list/record-preview-list.component.ts +10 -0
- package/src/libs/ui/search/src/lib/record-preview-row/record-preview-row.component.css +3 -0
- package/src/libs/ui/search/src/lib/record-preview-row/record-preview-row.component.html +77 -0
- package/src/libs/ui/search/src/lib/record-preview-row/record-preview-row.component.ts +14 -0
- package/src/libs/ui/search/src/lib/record-preview-text/record-preview-text.component.html +40 -0
- package/src/libs/ui/search/src/lib/record-preview-text/record-preview-text.component.scss +0 -0
- package/src/libs/ui/search/src/lib/record-preview-text/record-preview-text.component.ts +10 -0
- package/src/libs/ui/search/src/lib/record-preview-title/record-preview-title.component.html +23 -0
- package/src/libs/ui/search/src/lib/record-preview-title/record-preview-title.component.scss +0 -0
- package/src/libs/ui/search/src/lib/record-preview-title/record-preview-title.component.ts +10 -0
- package/src/libs/ui/search/src/lib/record-table/record-table.component.css +7 -0
- package/src/libs/ui/search/src/lib/record-table/record-table.component.html +150 -0
- package/src/libs/ui/search/src/lib/record-table/record-table.component.ts +93 -0
- package/src/libs/ui/search/src/lib/results-hits-number/results-hits-number.component.html +10 -0
- package/src/libs/ui/search/src/lib/results-hits-number/results-hits-number.component.ts +10 -0
- package/src/libs/ui/search/src/lib/results-list/results-layout.config.ts +48 -0
- package/src/libs/ui/search/src/lib/results-list/results-list.component.css +0 -0
- package/src/libs/ui/search/src/lib/results-list/results-list.component.html +32 -0
- package/src/libs/ui/search/src/lib/results-list/results-list.component.ts +30 -0
- package/src/libs/ui/search/src/lib/results-list-item/results-list-item.component.css +0 -0
- package/src/libs/ui/search/src/lib/results-list-item/results-list-item.component.html +1 -0
- package/src/libs/ui/search/src/lib/results-list-item/results-list-item.component.ts +65 -0
- package/src/libs/ui/search/src/lib/ui-search.module.ts +79 -0
- package/src/libs/ui/widgets/src/index.ts +8 -0
- package/src/libs/ui/widgets/src/lib/badge/badge.component.css +0 -0
- package/src/libs/ui/widgets/src/lib/badge/badge.component.html +8 -0
- package/src/libs/ui/widgets/src/lib/badge/badge.component.ts +11 -0
- package/src/libs/ui/widgets/src/lib/color-scale/color-scale.component.css +0 -0
- package/src/libs/ui/widgets/src/lib/color-scale/color-scale.component.html +83 -0
- package/src/libs/ui/widgets/src/lib/color-scale/color-scale.component.ts +8 -0
- package/src/libs/ui/widgets/src/lib/loading-mask/loading-mask.component.css +20 -0
- package/src/libs/ui/widgets/src/lib/loading-mask/loading-mask.component.html +5 -0
- package/src/libs/ui/widgets/src/lib/loading-mask/loading-mask.component.ts +16 -0
- package/src/libs/ui/widgets/src/lib/popup-alert/popup-alert.component.css +33 -0
- package/src/libs/ui/widgets/src/lib/popup-alert/popup-alert.component.html +23 -0
- package/src/libs/ui/widgets/src/lib/popup-alert/popup-alert.component.ts +51 -0
- package/src/libs/ui/widgets/src/lib/progress-bar/progress-bar.component.css +3 -0
- package/src/libs/ui/widgets/src/lib/progress-bar/progress-bar.component.html +12 -0
- package/src/libs/ui/widgets/src/lib/progress-bar/progress-bar.component.ts +44 -0
- package/src/libs/ui/widgets/src/lib/spinning-loader/spinning-loader.component.css +0 -0
- package/src/libs/ui/widgets/src/lib/spinning-loader/spinning-loader.component.html +22 -0
- package/src/libs/ui/widgets/src/lib/spinning-loader/spinning-loader.component.ts +8 -0
- package/src/libs/ui/widgets/src/lib/step-bar/step-bar.component.css +3 -0
- package/src/libs/ui/widgets/src/lib/step-bar/step-bar.component.html +13 -0
- package/src/libs/ui/widgets/src/lib/step-bar/step-bar.component.ts +55 -0
- package/src/libs/ui/widgets/src/lib/ui-widgets.module.ts +48 -0
- package/src/libs/util/app-config/src/index.ts +3 -0
- package/src/libs/util/app-config/src/lib/app-config.ts +327 -0
- package/src/libs/util/app-config/src/lib/constants.ts +438 -0
- package/src/libs/util/app-config/src/lib/fixtures.ts +169 -0
- package/src/libs/util/app-config/src/lib/i18n/file-with-overrides.translate.loader.ts +20 -0
- package/src/libs/util/app-config/src/lib/model.ts +76 -0
- package/src/libs/util/app-config/src/lib/parse-utils.ts +142 -0
- package/src/libs/util/data-fetcher/src/fixtures/sample.ts +80 -0
- package/src/libs/util/data-fetcher/src/index.ts +10 -0
- package/src/libs/util/data-fetcher/src/lib/data-fetcher.ts +71 -0
- package/src/libs/util/data-fetcher/src/lib/headers.ts +22 -0
- package/src/libs/util/data-fetcher/src/lib/model.ts +129 -0
- package/src/libs/util/data-fetcher/src/lib/readers/base-file.ts +65 -0
- package/src/libs/util/data-fetcher/src/lib/readers/base.ts +76 -0
- package/src/libs/util/data-fetcher/src/lib/readers/csv.ts +52 -0
- package/src/libs/util/data-fetcher/src/lib/readers/excel.ts +33 -0
- package/src/libs/util/data-fetcher/src/lib/readers/geojson.ts +29 -0
- package/src/libs/util/data-fetcher/src/lib/readers/gml.ts +54 -0
- package/src/libs/util/data-fetcher/src/lib/readers/json.ts +28 -0
- package/src/libs/util/data-fetcher/src/lib/sql-utils.ts +115 -0
- package/src/libs/util/data-fetcher/src/lib/utils.ts +253 -0
- package/src/libs/util/i18n/src/index.ts +7 -0
- package/src/libs/util/i18n/src/lib/embedded.translate.loader.ts +18 -0
- package/src/libs/util/i18n/src/lib/file.translate.loader.ts +14 -0
- package/src/libs/util/i18n/src/lib/i18n.constants.ts +72 -0
- package/src/libs/util/i18n/src/lib/i18n.interceptor.ts +27 -0
- package/src/libs/util/i18n/src/lib/lang.service.ts +23 -0
- package/src/libs/util/i18n/src/lib/testing/test.translate.loader.ts +26 -0
- package/src/libs/util/i18n/src/lib/testing/test.translate.module.ts +235 -0
- package/src/libs/util/i18n/src/lib/testing/translations.model.ts +28 -0
- package/src/libs/util/i18n/src/lib/translate.loader.utils.ts +11 -0
- package/src/libs/util/i18n/src/lib/util-i18n.module.ts +26 -0
- package/src/libs/util/shared/src/index.ts +6 -0
- package/src/libs/util/shared/src/lib/image-fallback.directive.ts +19 -0
- package/src/libs/util/shared/src/lib/links/index.ts +2 -0
- package/src/libs/util/shared/src/lib/links/link-classifier.service.ts +55 -0
- package/src/libs/util/shared/src/lib/links/link-utils.ts +200 -0
- package/src/libs/util/shared/src/lib/pipes/SafePipe.ts +36 -0
- package/src/libs/util/shared/src/lib/pipes/index.ts +1 -0
- package/src/libs/util/shared/src/lib/services/index.ts +3 -0
- package/src/libs/util/shared/src/lib/services/log.service.ts +16 -0
- package/src/libs/util/shared/src/lib/services/proxy.service.ts +34 -0
- package/src/libs/util/shared/src/lib/services/theme.service.ts +143 -0
- package/src/libs/util/shared/src/lib/util-shared.module.ts +11 -0
- package/src/libs/util/shared/src/lib/utils/event.ts +12 -0
- package/src/libs/util/shared/src/lib/utils/geojson.ts +26 -0
- package/src/libs/util/shared/src/lib/utils/index.ts +7 -0
- package/src/libs/util/shared/src/lib/utils/parse.ts +34 -0
- package/src/libs/util/shared/src/lib/utils/remove-whitespace.ts +3 -0
- package/src/libs/util/shared/src/lib/utils/sort-by.ts +17 -0
- package/src/libs/util/shared/src/lib/utils/strip-html.ts +4 -0
- package/src/libs/util/shared/src/lib/utils/url.ts +20 -0
- package/style.css +4 -0
- package/tailwind.base.config.js +72 -0
- package/tailwind.base.css +25 -0
- package/translations/de.json +270 -0
- package/translations/en.json +289 -0
- package/translations/es.json +289 -0
- package/translations/fr.json +289 -0
- package/translations/it.json +289 -0
- package/translations/nl.json +289 -0
- package/translations/pt.json +289 -0
|
@@ -0,0 +1,1594 @@
|
|
|
1
|
+
import { deepFreeze } from '../utils/freeze'
|
|
2
|
+
|
|
3
|
+
export const ES_FIXTURE_FULL_RESPONSE = deepFreeze({
|
|
4
|
+
took: 1,
|
|
5
|
+
timed_out: false,
|
|
6
|
+
_shards: { total: 1, successful: 1, skipped: 0, failed: 0 },
|
|
7
|
+
hits: {
|
|
8
|
+
total: { value: 1, relation: 'eq' },
|
|
9
|
+
max_score: 1.0,
|
|
10
|
+
hits: [
|
|
11
|
+
{
|
|
12
|
+
_index: 'gn-records',
|
|
13
|
+
_type: '_doc',
|
|
14
|
+
_id: 'cf5048f6-5bbf-4e44-ba74-e6f429af51ea',
|
|
15
|
+
_score: 1.0,
|
|
16
|
+
_ignored: [
|
|
17
|
+
'resourceAbstractObject.default.keyword',
|
|
18
|
+
'resourceAbstractObject.langfre.keyword',
|
|
19
|
+
'link.applicationProfile.keyword',
|
|
20
|
+
],
|
|
21
|
+
_source: {
|
|
22
|
+
docType: 'metadata',
|
|
23
|
+
document: '',
|
|
24
|
+
metadataIdentifier: 'cf5048f6-5bbf-4e44-ba74-e6f429af51ea',
|
|
25
|
+
standardNameObject: {
|
|
26
|
+
default: 'ISO 19115:2003/19139 - SEXTANT',
|
|
27
|
+
langfre: 'ISO 19115:2003/19139 - SEXTANT',
|
|
28
|
+
},
|
|
29
|
+
standardVersionObject: { default: '1.0', langfre: '1.0' },
|
|
30
|
+
indexingDate: '2021-10-29T08:41:42.537Z',
|
|
31
|
+
dateStamp: '2021-09-09T10:41:12.000Z',
|
|
32
|
+
mainLanguage: 'fre',
|
|
33
|
+
cl_characterSet: [
|
|
34
|
+
{
|
|
35
|
+
key: 'utf8',
|
|
36
|
+
default: 'Utf8',
|
|
37
|
+
langfre: 'Utf8',
|
|
38
|
+
link: 'http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#MD_CharacterSetCode',
|
|
39
|
+
},
|
|
40
|
+
],
|
|
41
|
+
resourceType: ['dataset'],
|
|
42
|
+
Org: 'Ifremer',
|
|
43
|
+
pointOfContactOrg: 'Ifremer',
|
|
44
|
+
contact: [
|
|
45
|
+
{
|
|
46
|
+
organisation: 'Ifremer',
|
|
47
|
+
role: 'pointOfContact',
|
|
48
|
+
email: 'q2suppor@ifremer.fr',
|
|
49
|
+
website: 'https://www.ifremer.fr',
|
|
50
|
+
logo: '',
|
|
51
|
+
individual: "Cellule d'administration Quadrige",
|
|
52
|
+
position: "Cellule d'administration Quadrige",
|
|
53
|
+
phone: '',
|
|
54
|
+
address: '',
|
|
55
|
+
},
|
|
56
|
+
],
|
|
57
|
+
cl_hierarchyLevel: [
|
|
58
|
+
{
|
|
59
|
+
key: 'dataset',
|
|
60
|
+
default: 'Jeu de données',
|
|
61
|
+
langfre: 'Jeu de données',
|
|
62
|
+
link: 'http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#MD_ScopeCode',
|
|
63
|
+
},
|
|
64
|
+
],
|
|
65
|
+
cl_topologyLevel: [
|
|
66
|
+
{
|
|
67
|
+
key: 'geometryOnly',
|
|
68
|
+
default: 'Géométrie seulement',
|
|
69
|
+
langfre: 'Géométrie seulement',
|
|
70
|
+
link: 'http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#MD_TopologyLevelCode',
|
|
71
|
+
},
|
|
72
|
+
],
|
|
73
|
+
cl_geometricObjectType: [
|
|
74
|
+
{
|
|
75
|
+
key: 'composite',
|
|
76
|
+
default: 'Composite',
|
|
77
|
+
langfre: 'Composite',
|
|
78
|
+
link: 'http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#MD_GeometricObjectTypeCode',
|
|
79
|
+
},
|
|
80
|
+
],
|
|
81
|
+
cl_status: [
|
|
82
|
+
{
|
|
83
|
+
key: 'onGoing',
|
|
84
|
+
default: 'Mise à jour continue',
|
|
85
|
+
langfre: 'Mise à jour continue',
|
|
86
|
+
link: 'http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#MD_ProgressCode',
|
|
87
|
+
},
|
|
88
|
+
],
|
|
89
|
+
cl_maintenanceAndUpdateFrequency: [
|
|
90
|
+
{
|
|
91
|
+
key: 'daily',
|
|
92
|
+
default: 'Journalière',
|
|
93
|
+
langfre: 'Journalière',
|
|
94
|
+
link: 'http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#MD_MaintenanceFrequencyCode',
|
|
95
|
+
},
|
|
96
|
+
],
|
|
97
|
+
cl_type: [
|
|
98
|
+
{
|
|
99
|
+
key: 'theme',
|
|
100
|
+
default: 'Thème',
|
|
101
|
+
langfre: 'Thème',
|
|
102
|
+
link: 'http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#MD_KeywordTypeCode',
|
|
103
|
+
},
|
|
104
|
+
{
|
|
105
|
+
key: 'place',
|
|
106
|
+
default: 'Localisation',
|
|
107
|
+
langfre: 'Localisation',
|
|
108
|
+
link: 'http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#MD_KeywordTypeCode',
|
|
109
|
+
},
|
|
110
|
+
],
|
|
111
|
+
cl_accessConstraints: [
|
|
112
|
+
{
|
|
113
|
+
key: 'copyright',
|
|
114
|
+
default: 'Droit d’auteur / Droit moral (copyright)',
|
|
115
|
+
langfre: 'Droit d’auteur / Droit moral (copyright)',
|
|
116
|
+
link: 'http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#MD_RestrictionCode',
|
|
117
|
+
},
|
|
118
|
+
],
|
|
119
|
+
cl_spatialRepresentationType: [
|
|
120
|
+
{
|
|
121
|
+
key: 'vector',
|
|
122
|
+
default: 'Vecteur',
|
|
123
|
+
langfre: 'Vecteur',
|
|
124
|
+
link: 'http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#MD_SpatialRepresentationTypeCode',
|
|
125
|
+
},
|
|
126
|
+
],
|
|
127
|
+
resourceTitleObject: {
|
|
128
|
+
default: 'Surval - Données par paramètre',
|
|
129
|
+
langfre: 'Surval - Données par paramètre',
|
|
130
|
+
},
|
|
131
|
+
creationDateForResource: ['2012-01-01T00:00:00.000Z'],
|
|
132
|
+
creationYearForResource: '2012',
|
|
133
|
+
creationMonthForResource: '2012-01',
|
|
134
|
+
publicationDateForResource: ['2021-04-01T00:00:00.000Z'],
|
|
135
|
+
publicationYearForResource: '2021',
|
|
136
|
+
publicationMonthForResource: '2021-04',
|
|
137
|
+
resourceDate: [
|
|
138
|
+
{ type: 'creation', date: '2012-01-01T00:00:00.000Z' },
|
|
139
|
+
{
|
|
140
|
+
type: 'publication',
|
|
141
|
+
date: '2021-04-01T00:00:00.000Z',
|
|
142
|
+
},
|
|
143
|
+
],
|
|
144
|
+
resourceTemporalDateRange: [
|
|
145
|
+
{
|
|
146
|
+
gte: '2012-01-01T00:00:00.000Z',
|
|
147
|
+
lte: '2012-01-01T00:00:00.000Z',
|
|
148
|
+
},
|
|
149
|
+
{
|
|
150
|
+
gte: '2021-04-01T00:00:00.000Z',
|
|
151
|
+
lte: '2021-04-01T00:00:00.000Z',
|
|
152
|
+
},
|
|
153
|
+
{ gte: '1974-01-01T00:00:00.000Z' },
|
|
154
|
+
],
|
|
155
|
+
resourceIdentifier: [
|
|
156
|
+
{
|
|
157
|
+
code: 'DOI:10.12770/cf5048f6-5bbf-4e44-ba74-e6f429af51ea',
|
|
158
|
+
codeSpace: '',
|
|
159
|
+
link: '',
|
|
160
|
+
},
|
|
161
|
+
],
|
|
162
|
+
resourceAbstractObject: {
|
|
163
|
+
default:
|
|
164
|
+
"Le produit Surval \"Données par paramètre\" met à disposition les données d'observation et de surveillance bancarisées dans Quadrige, validées et qui ne sont pas sous moratoire.\n\nCe système d'information contient des résultats sur la plupart des paramètres physiques, chimiques et biologiques de description de l'environnement. Les premières données datent par exemple de 1974 pour les paramètres de la qualité générale des eaux et les contaminants, 1987 pour le phytoplancton et les phycotoxines, 1989 pour la microbiologie, du début des années 2000 pour le benthos. \n\nCe produit contient des résultats sur la plupart des paramètres physiques, chimiques et biologiques de description de l'environnement. Les premières données datent par exemple de 1974 pour les paramètres de la qualité générale des eaux et les contaminants.\n\nLes données sous moratoire ou les données qualifiées \"Faux\" sont exclus de la diffusion Surval. Une donnée validée dans Quadrige aujourd’hui sera disponible dans Surval demain.\n\nL'accès aux données d'observation se fait par lieu. Un lieu de surveillance est un lieu géographique où des observations, des mesures et/ou des prélèvements sont effectués. Il est localisé de façon unique par son emprise cartographique (surface, ligne ou point). Un lieu de mesure peut être utilisé par plusieurs programmes d'observation et de surveillance.\n\nA compter du 29 avril 2021, conformément aux obligations de l’ « Open data », toutes les données validées sans moratoire sont diffusées à J+1 et sans traitement. Ainsi tous les paramètres et tous les programmes Quadrige sont diffusés, et regroupés sous forme de thème :\n- Benthos dont récifs coralliens\n- Contaminants chimiques et Écotoxicologie\n- Déchets\n- Microbiologie\n- Phytoplancton et Hydrologie\n- Ressources aquacoles\n- Zooplancton\n- Autres\nUn thème regroupe un ou plusieurs programmes d'acquisition. Un programme correspond à une mise en œuvre d'un protocole, sur une période et un ensemble de lieux. Chaque programme est placé sous la responsabilité d'un animateur. \n\nPour accompagner le résultat, de nombreuses données sont diffusées (téléchargeables en tant que données d’observation), comme :\n- la description complète du « Paramètre-Support-Fraction-Méthode-Unité »;\n- la description complète des « Passages », « Prélèvements » et « Échantillons »;\n- le niveau de qualification du résultat;\n- une proposition de citation, afin d’identifier tous les organismes contribuant à cette observation.\n\nL'emprise géographique est nationale : la métropole et les départements et régions d'outre-mer (DROM).\n\nL'accès au téléchargement direct du jeu de données complet (~ 220 Mo) en date du 9 juillet 2021 s'effectue par ce lien : https://www.ifremer.fr/sextant_doc/surveillance_littorale/surval/data/surval.zip \nL'accès par la carte permet de configurer des extractions et des graphes de visualisation sur demande (email demandé pour le téléchargement).",
|
|
165
|
+
langfre:
|
|
166
|
+
"Le produit Surval \"Données par paramètre\" met à disposition les données d'observation et de surveillance bancarisées dans Quadrige, validées et qui ne sont pas sous moratoire.\n\nCe système d'information contient des résultats sur la plupart des paramètres physiques, chimiques et biologiques de description de l'environnement. Les premières données datent par exemple de 1974 pour les paramètres de la qualité générale des eaux et les contaminants, 1987 pour le phytoplancton et les phycotoxines, 1989 pour la microbiologie, du début des années 2000 pour le benthos. \n\nCe produit contient des résultats sur la plupart des paramètres physiques, chimiques et biologiques de description de l'environnement. Les premières données datent par exemple de 1974 pour les paramètres de la qualité générale des eaux et les contaminants.\n\nLes données sous moratoire ou les données qualifiées \"Faux\" sont exclus de la diffusion Surval. Une donnée validée dans Quadrige aujourd’hui sera disponible dans Surval demain.\n\nL'accès aux données d'observation se fait par lieu. Un lieu de surveillance est un lieu géographique où des observations, des mesures et/ou des prélèvements sont effectués. Il est localisé de façon unique par son emprise cartographique (surface, ligne ou point). Un lieu de mesure peut être utilisé par plusieurs programmes d'observation et de surveillance.\n\nA compter du 29 avril 2021, conformément aux obligations de l’ « Open data », toutes les données validées sans moratoire sont diffusées à J+1 et sans traitement. Ainsi tous les paramètres et tous les programmes Quadrige sont diffusés, et regroupés sous forme de thème :\n- Benthos dont récifs coralliens\n- Contaminants chimiques et Écotoxicologie\n- Déchets\n- Microbiologie\n- Phytoplancton et Hydrologie\n- Ressources aquacoles\n- Zooplancton\n- Autres\nUn thème regroupe un ou plusieurs programmes d'acquisition. Un programme correspond à une mise en œuvre d'un protocole, sur une période et un ensemble de lieux. Chaque programme est placé sous la responsabilité d'un animateur. \n\nPour accompagner le résultat, de nombreuses données sont diffusées (téléchargeables en tant que données d’observation), comme :\n- la description complète du « Paramètre-Support-Fraction-Méthode-Unité »;\n- la description complète des « Passages », « Prélèvements » et « Échantillons »;\n- le niveau de qualification du résultat;\n- une proposition de citation, afin d’identifier tous les organismes contribuant à cette observation.\n\nL'emprise géographique est nationale : la métropole et les départements et régions d'outre-mer (DROM).\n\nL'accès au téléchargement direct du jeu de données complet (~ 220 Mo) en date du 9 juillet 2021 s'effectue par ce lien : https://www.ifremer.fr/sextant_doc/surveillance_littorale/surval/data/surval.zip \nL'accès par la carte permet de configurer des extractions et des graphes de visualisation sur demande (email demandé pour le téléchargement).",
|
|
167
|
+
},
|
|
168
|
+
cl_resourceCharacterSet: [
|
|
169
|
+
{
|
|
170
|
+
key: 'utf8',
|
|
171
|
+
default: 'Utf8',
|
|
172
|
+
langfre: 'Utf8',
|
|
173
|
+
link: 'http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#MD_CharacterSetCode',
|
|
174
|
+
},
|
|
175
|
+
],
|
|
176
|
+
OrgForResource: ['Ifremer', 'Ifremer', 'Ifremer'],
|
|
177
|
+
pointOfContactOrgForResource: 'Ifremer',
|
|
178
|
+
contactForResource: [
|
|
179
|
+
{
|
|
180
|
+
organisation: 'Ifremer',
|
|
181
|
+
role: 'pointOfContact',
|
|
182
|
+
email: 'q2_support@ifremer.fr',
|
|
183
|
+
website: '',
|
|
184
|
+
logo: '',
|
|
185
|
+
individual: "Cellule d'Administration Quadrige",
|
|
186
|
+
position: '',
|
|
187
|
+
phone: '',
|
|
188
|
+
address: '',
|
|
189
|
+
},
|
|
190
|
+
{
|
|
191
|
+
organisation: 'Ifremer',
|
|
192
|
+
role: 'author',
|
|
193
|
+
email: 'q2_support@ifremer.fr',
|
|
194
|
+
website: '',
|
|
195
|
+
logo: '',
|
|
196
|
+
individual: 'Quadrige',
|
|
197
|
+
position: '',
|
|
198
|
+
phone: '',
|
|
199
|
+
address: '',
|
|
200
|
+
},
|
|
201
|
+
{
|
|
202
|
+
organisation: 'Ifremer',
|
|
203
|
+
role: 'publisher',
|
|
204
|
+
email: 'q2_support@ifremer.fr',
|
|
205
|
+
website: '',
|
|
206
|
+
logo: '',
|
|
207
|
+
individual: 'Quadrige',
|
|
208
|
+
position: '',
|
|
209
|
+
phone: '',
|
|
210
|
+
address: '',
|
|
211
|
+
},
|
|
212
|
+
],
|
|
213
|
+
authorOrgForResource: 'Ifremer',
|
|
214
|
+
publisherOrgForResource: 'Ifremer',
|
|
215
|
+
resourceCreditObject: [{ default: 'Ifremer', langfre: 'Ifremer' }],
|
|
216
|
+
hasOverview: 'true',
|
|
217
|
+
overview: [
|
|
218
|
+
{
|
|
219
|
+
url: 'https://sextant.ifremer.fr/geonetwork/srv/api/records/cf5048f6-5bbf-4e44-ba74-e6f429af51ea/attachments/parametres.gif',
|
|
220
|
+
text: { default: 'parametres.gif', langfre: 'parametres.gif' },
|
|
221
|
+
},
|
|
222
|
+
],
|
|
223
|
+
resourceLanguage: ['fre'],
|
|
224
|
+
inspireTheme_syn: ['Installations de suivi environnemental'],
|
|
225
|
+
inspireTheme: ['environmental monitoring facilities'],
|
|
226
|
+
inspireThemeFirst_syn: 'Installations de suivi environnemental',
|
|
227
|
+
inspireThemeFirst: 'environmental monitoring facilities',
|
|
228
|
+
inspireAnnexForFirstTheme: 'iii',
|
|
229
|
+
inspireAnnex: ['iii'],
|
|
230
|
+
inspireThemeUri: ['http://inspire.ec.europa.eu/theme/ef'],
|
|
231
|
+
inspireThemeNumber: '1',
|
|
232
|
+
hasInspireTheme: 'true',
|
|
233
|
+
tag: [
|
|
234
|
+
{
|
|
235
|
+
default: 'Lieux de surveillance',
|
|
236
|
+
langfre: 'Lieux de surveillance',
|
|
237
|
+
},
|
|
238
|
+
{
|
|
239
|
+
default: 'Observation',
|
|
240
|
+
langfre: 'Observation',
|
|
241
|
+
},
|
|
242
|
+
{ default: 'Surveillance', langfre: 'Surveillance' },
|
|
243
|
+
{
|
|
244
|
+
default: 'Environnement',
|
|
245
|
+
langfre: 'Environnement',
|
|
246
|
+
},
|
|
247
|
+
{ default: 'Littoral', langfre: 'Littoral' },
|
|
248
|
+
{
|
|
249
|
+
default: 'Quadrige',
|
|
250
|
+
langfre: 'Quadrige',
|
|
251
|
+
},
|
|
252
|
+
{ default: 'DCE', langfre: 'DCE' },
|
|
253
|
+
{ default: 'DCSMM', langfre: 'DCSMM' },
|
|
254
|
+
{
|
|
255
|
+
default: 'OSPAR',
|
|
256
|
+
langfre: 'OSPAR',
|
|
257
|
+
},
|
|
258
|
+
{ default: 'MEDPOL', langfre: 'MEDPOL' },
|
|
259
|
+
{
|
|
260
|
+
default: 'Données ouvertes',
|
|
261
|
+
langfre: 'Données ouvertes',
|
|
262
|
+
},
|
|
263
|
+
{ default: 'Open Data', langfre: 'Open Data' },
|
|
264
|
+
{
|
|
265
|
+
default: 'Surval',
|
|
266
|
+
langfre: 'Surval',
|
|
267
|
+
},
|
|
268
|
+
{
|
|
269
|
+
default: 'Installations de suivi environnemental',
|
|
270
|
+
langfre: 'Installations de suivi environnemental',
|
|
271
|
+
},
|
|
272
|
+
{ default: 'D8: Contaminants', langfre: 'D8: Contaminants' },
|
|
273
|
+
{
|
|
274
|
+
default: 'D1: Biodiversité',
|
|
275
|
+
langfre: 'D1: Biodiversité',
|
|
276
|
+
},
|
|
277
|
+
{
|
|
278
|
+
default: 'D7: Changements hydrographiques',
|
|
279
|
+
langfre: 'D7: Changements hydrographiques',
|
|
280
|
+
},
|
|
281
|
+
{
|
|
282
|
+
default: 'D4: Réseaux trophiques',
|
|
283
|
+
langfre: 'D4: Réseaux trophiques',
|
|
284
|
+
},
|
|
285
|
+
{
|
|
286
|
+
default: 'D5: Eutrophisation',
|
|
287
|
+
langfre: 'D5: Eutrophisation',
|
|
288
|
+
},
|
|
289
|
+
{
|
|
290
|
+
default: 'D9: Questions sanitaires',
|
|
291
|
+
langfre: 'D9: Questions sanitaires',
|
|
292
|
+
},
|
|
293
|
+
{
|
|
294
|
+
default: 'D10: Déchets marins',
|
|
295
|
+
langfre: 'D10: Déchets marins',
|
|
296
|
+
},
|
|
297
|
+
{
|
|
298
|
+
default: 'D1: Biodiversité - Habitats benthiques',
|
|
299
|
+
langfre: 'D1: Biodiversité - Habitats benthiques',
|
|
300
|
+
},
|
|
301
|
+
{
|
|
302
|
+
default: 'D1: Biodiversité - Habitats pélagiques',
|
|
303
|
+
langfre: 'D1: Biodiversité - Habitats pélagiques',
|
|
304
|
+
},
|
|
305
|
+
{
|
|
306
|
+
default: 'D1: Biodiversité - Poissons',
|
|
307
|
+
langfre: 'D1: Biodiversité - Poissons',
|
|
308
|
+
},
|
|
309
|
+
{
|
|
310
|
+
default: 'D1: Biodiversité - Mammifères',
|
|
311
|
+
langfre: 'D1: Biodiversité - Mammifères',
|
|
312
|
+
},
|
|
313
|
+
{
|
|
314
|
+
default: 'D1: Biodiversité - Tortues',
|
|
315
|
+
langfre: 'D1: Biodiversité - Tortues',
|
|
316
|
+
},
|
|
317
|
+
{
|
|
318
|
+
default: 'D1: Biodiversité - Céphalopodes',
|
|
319
|
+
langfre: 'D1: Biodiversité - Céphalopodes',
|
|
320
|
+
},
|
|
321
|
+
{ default: 'National', langfre: 'National' },
|
|
322
|
+
{
|
|
323
|
+
default: 'Observation par point',
|
|
324
|
+
langfre: 'Observation par point',
|
|
325
|
+
},
|
|
326
|
+
{
|
|
327
|
+
default: 'Observation directe',
|
|
328
|
+
langfre: 'Observation directe',
|
|
329
|
+
},
|
|
330
|
+
{
|
|
331
|
+
default:
|
|
332
|
+
"/Activités humaines/Réseaux d'observation et de surveillance du littoral",
|
|
333
|
+
langfre:
|
|
334
|
+
"/Activités humaines/Réseaux d'observation et de surveillance du littoral",
|
|
335
|
+
},
|
|
336
|
+
{
|
|
337
|
+
default: '/Observations in-situ/Réseaux',
|
|
338
|
+
langfre: '/Observations in-situ/Réseaux',
|
|
339
|
+
},
|
|
340
|
+
{
|
|
341
|
+
default: 'Base de données de recherche',
|
|
342
|
+
langfre: 'Base de données de recherche',
|
|
343
|
+
},
|
|
344
|
+
{
|
|
345
|
+
default: 'Dispositifs de surveillance',
|
|
346
|
+
langfre: 'Dispositifs de surveillance',
|
|
347
|
+
},
|
|
348
|
+
{
|
|
349
|
+
default: '/Biologie marine/Bivalves',
|
|
350
|
+
langfre: '/Biologie marine/Bivalves',
|
|
351
|
+
},
|
|
352
|
+
{
|
|
353
|
+
default:
|
|
354
|
+
'/Biogéochimie marine/Eléments chimiques et contaminants',
|
|
355
|
+
langfre:
|
|
356
|
+
'/Biogéochimie marine/Eléments chimiques et contaminants',
|
|
357
|
+
},
|
|
358
|
+
{
|
|
359
|
+
default: "/Physique de l'Océan/Turbidité",
|
|
360
|
+
langfre: "/Physique de l'Océan/Turbidité",
|
|
361
|
+
},
|
|
362
|
+
{
|
|
363
|
+
default: '/Biogéochimie marine/Pigments',
|
|
364
|
+
langfre: '/Biogéochimie marine/Pigments',
|
|
365
|
+
},
|
|
366
|
+
{
|
|
367
|
+
default: '/Biologie marine/Toxines',
|
|
368
|
+
langfre: '/Biologie marine/Toxines',
|
|
369
|
+
},
|
|
370
|
+
{
|
|
371
|
+
default: '/Biologie marine/Phytoplancton',
|
|
372
|
+
langfre: '/Biologie marine/Phytoplancton',
|
|
373
|
+
},
|
|
374
|
+
{
|
|
375
|
+
default: '/Biologie marine/Zooplancton',
|
|
376
|
+
langfre: '/Biologie marine/Zooplancton',
|
|
377
|
+
},
|
|
378
|
+
{
|
|
379
|
+
default: "/Physique de l'Océan/Température",
|
|
380
|
+
langfre: "/Physique de l'Océan/Température",
|
|
381
|
+
},
|
|
382
|
+
{
|
|
383
|
+
default: "/Physique de l'Océan/Salinité",
|
|
384
|
+
langfre: "/Physique de l'Océan/Salinité",
|
|
385
|
+
},
|
|
386
|
+
{
|
|
387
|
+
default: '/Biogéochimie marine/Oxygène dissous',
|
|
388
|
+
langfre: '/Biogéochimie marine/Oxygène dissous',
|
|
389
|
+
},
|
|
390
|
+
{
|
|
391
|
+
default: '/Biologie marine/Organismes pathogènes',
|
|
392
|
+
langfre: '/Biologie marine/Organismes pathogènes',
|
|
393
|
+
},
|
|
394
|
+
{
|
|
395
|
+
default: '/Biologie marine/Organismes marins tropicaux',
|
|
396
|
+
langfre: '/Biologie marine/Organismes marins tropicaux',
|
|
397
|
+
},
|
|
398
|
+
{
|
|
399
|
+
default: '/Biologie marine/Matière en suspension',
|
|
400
|
+
langfre: '/Biologie marine/Matière en suspension',
|
|
401
|
+
},
|
|
402
|
+
{
|
|
403
|
+
default: '/Biogéochimie marine/Nutriments (sels nutritifs)',
|
|
404
|
+
langfre: '/Biogéochimie marine/Nutriments (sels nutritifs)',
|
|
405
|
+
},
|
|
406
|
+
{
|
|
407
|
+
default: '/Biologie marine/Habitats benthiques',
|
|
408
|
+
langfre: '/Biologie marine/Habitats benthiques',
|
|
409
|
+
},
|
|
410
|
+
{
|
|
411
|
+
default: '/Etat du Milieu/Biogéochimie',
|
|
412
|
+
langfre: '/Etat du Milieu/Biogéochimie',
|
|
413
|
+
},
|
|
414
|
+
{
|
|
415
|
+
default: '/Etat du Milieu/Pollutions',
|
|
416
|
+
langfre: '/Etat du Milieu/Pollutions',
|
|
417
|
+
},
|
|
418
|
+
{
|
|
419
|
+
default: '/Etat du Milieu/Littoral',
|
|
420
|
+
langfre: '/Etat du Milieu/Littoral',
|
|
421
|
+
},
|
|
422
|
+
{
|
|
423
|
+
default: '/Etat du Milieu/Habitats',
|
|
424
|
+
langfre: '/Etat du Milieu/Habitats',
|
|
425
|
+
},
|
|
426
|
+
{
|
|
427
|
+
default: '/Etat du Milieu/Espèces',
|
|
428
|
+
langfre: '/Etat du Milieu/Espèces',
|
|
429
|
+
},
|
|
430
|
+
{
|
|
431
|
+
default: 'Brest',
|
|
432
|
+
langfre: 'Brest',
|
|
433
|
+
},
|
|
434
|
+
{ default: 'Fort-de-France', langfre: 'Fort-de-France' },
|
|
435
|
+
{
|
|
436
|
+
default: 'Boulogne-sur-Mer',
|
|
437
|
+
langfre: 'Boulogne-sur-Mer',
|
|
438
|
+
},
|
|
439
|
+
{ default: 'Nouméa', langfre: 'Nouméa' },
|
|
440
|
+
{
|
|
441
|
+
default: 'Toulon',
|
|
442
|
+
langfre: 'Toulon',
|
|
443
|
+
},
|
|
444
|
+
{ default: 'Sète', langfre: 'Sète' },
|
|
445
|
+
{ default: 'La Rochelle', langfre: 'La Rochelle' },
|
|
446
|
+
],
|
|
447
|
+
isOpenData: 'true',
|
|
448
|
+
'keywordType-theme': [
|
|
449
|
+
{
|
|
450
|
+
default: 'Lieux de surveillance',
|
|
451
|
+
langfre: 'Lieux de surveillance',
|
|
452
|
+
},
|
|
453
|
+
{ default: 'Observation', langfre: 'Observation' },
|
|
454
|
+
{
|
|
455
|
+
default: 'Surveillance',
|
|
456
|
+
langfre: 'Surveillance',
|
|
457
|
+
},
|
|
458
|
+
{ default: 'Environnement', langfre: 'Environnement' },
|
|
459
|
+
{
|
|
460
|
+
default: 'Littoral',
|
|
461
|
+
langfre: 'Littoral',
|
|
462
|
+
},
|
|
463
|
+
{ default: 'Quadrige', langfre: 'Quadrige' },
|
|
464
|
+
{
|
|
465
|
+
default: 'DCE',
|
|
466
|
+
langfre: 'DCE',
|
|
467
|
+
},
|
|
468
|
+
{ default: 'DCSMM', langfre: 'DCSMM' },
|
|
469
|
+
{
|
|
470
|
+
default: 'OSPAR',
|
|
471
|
+
langfre: 'OSPAR',
|
|
472
|
+
},
|
|
473
|
+
{ default: 'MEDPOL', langfre: 'MEDPOL' },
|
|
474
|
+
{
|
|
475
|
+
default: 'Données ouvertes',
|
|
476
|
+
langfre: 'Données ouvertes',
|
|
477
|
+
},
|
|
478
|
+
{ default: 'Open Data', langfre: 'Open Data' },
|
|
479
|
+
{
|
|
480
|
+
default: 'Surval',
|
|
481
|
+
langfre: 'Surval',
|
|
482
|
+
},
|
|
483
|
+
{
|
|
484
|
+
default: 'Installations de suivi environnemental',
|
|
485
|
+
langfre: 'Installations de suivi environnemental',
|
|
486
|
+
},
|
|
487
|
+
{ default: 'D8: Contaminants', langfre: 'D8: Contaminants' },
|
|
488
|
+
{
|
|
489
|
+
default: 'D1: Biodiversité',
|
|
490
|
+
langfre: 'D1: Biodiversité',
|
|
491
|
+
},
|
|
492
|
+
{
|
|
493
|
+
default: 'D7: Changements hydrographiques',
|
|
494
|
+
langfre: 'D7: Changements hydrographiques',
|
|
495
|
+
},
|
|
496
|
+
{
|
|
497
|
+
default: 'D4: Réseaux trophiques',
|
|
498
|
+
langfre: 'D4: Réseaux trophiques',
|
|
499
|
+
},
|
|
500
|
+
{
|
|
501
|
+
default: 'D5: Eutrophisation',
|
|
502
|
+
langfre: 'D5: Eutrophisation',
|
|
503
|
+
},
|
|
504
|
+
{
|
|
505
|
+
default: 'D9: Questions sanitaires',
|
|
506
|
+
langfre: 'D9: Questions sanitaires',
|
|
507
|
+
},
|
|
508
|
+
{
|
|
509
|
+
default: 'D10: Déchets marins',
|
|
510
|
+
langfre: 'D10: Déchets marins',
|
|
511
|
+
},
|
|
512
|
+
{
|
|
513
|
+
default: 'D1: Biodiversité - Habitats benthiques',
|
|
514
|
+
langfre: 'D1: Biodiversité - Habitats benthiques',
|
|
515
|
+
},
|
|
516
|
+
{
|
|
517
|
+
default: 'D1: Biodiversité - Habitats pélagiques',
|
|
518
|
+
langfre: 'D1: Biodiversité - Habitats pélagiques',
|
|
519
|
+
},
|
|
520
|
+
{
|
|
521
|
+
default: 'D1: Biodiversité - Poissons',
|
|
522
|
+
langfre: 'D1: Biodiversité - Poissons',
|
|
523
|
+
},
|
|
524
|
+
{
|
|
525
|
+
default: 'D1: Biodiversité - Mammifères',
|
|
526
|
+
langfre: 'D1: Biodiversité - Mammifères',
|
|
527
|
+
},
|
|
528
|
+
{
|
|
529
|
+
default: 'D1: Biodiversité - Tortues',
|
|
530
|
+
langfre: 'D1: Biodiversité - Tortues',
|
|
531
|
+
},
|
|
532
|
+
{
|
|
533
|
+
default: 'D1: Biodiversité - Céphalopodes',
|
|
534
|
+
langfre: 'D1: Biodiversité - Céphalopodes',
|
|
535
|
+
},
|
|
536
|
+
{
|
|
537
|
+
default: 'Observation par point',
|
|
538
|
+
langfre: 'Observation par point',
|
|
539
|
+
},
|
|
540
|
+
{
|
|
541
|
+
default: 'Observation directe',
|
|
542
|
+
langfre: 'Observation directe',
|
|
543
|
+
},
|
|
544
|
+
{
|
|
545
|
+
default:
|
|
546
|
+
"/Activités humaines/Réseaux d'observation et de surveillance du littoral",
|
|
547
|
+
langfre:
|
|
548
|
+
"/Activités humaines/Réseaux d'observation et de surveillance du littoral",
|
|
549
|
+
},
|
|
550
|
+
{
|
|
551
|
+
default: '/Observations in-situ/Réseaux',
|
|
552
|
+
langfre: '/Observations in-situ/Réseaux',
|
|
553
|
+
},
|
|
554
|
+
{
|
|
555
|
+
default: 'Base de données de recherche',
|
|
556
|
+
langfre: 'Base de données de recherche',
|
|
557
|
+
},
|
|
558
|
+
{
|
|
559
|
+
default: 'Dispositifs de surveillance',
|
|
560
|
+
langfre: 'Dispositifs de surveillance',
|
|
561
|
+
},
|
|
562
|
+
{
|
|
563
|
+
default: '/Biologie marine/Bivalves',
|
|
564
|
+
langfre: '/Biologie marine/Bivalves',
|
|
565
|
+
},
|
|
566
|
+
{
|
|
567
|
+
default:
|
|
568
|
+
'/Biogéochimie marine/Eléments chimiques et contaminants',
|
|
569
|
+
langfre:
|
|
570
|
+
'/Biogéochimie marine/Eléments chimiques et contaminants',
|
|
571
|
+
},
|
|
572
|
+
{
|
|
573
|
+
default: "/Physique de l'Océan/Turbidité",
|
|
574
|
+
langfre: "/Physique de l'Océan/Turbidité",
|
|
575
|
+
},
|
|
576
|
+
{
|
|
577
|
+
default: '/Biogéochimie marine/Pigments',
|
|
578
|
+
langfre: '/Biogéochimie marine/Pigments',
|
|
579
|
+
},
|
|
580
|
+
{
|
|
581
|
+
default: '/Biologie marine/Toxines',
|
|
582
|
+
langfre: '/Biologie marine/Toxines',
|
|
583
|
+
},
|
|
584
|
+
{
|
|
585
|
+
default: '/Biologie marine/Phytoplancton',
|
|
586
|
+
langfre: '/Biologie marine/Phytoplancton',
|
|
587
|
+
},
|
|
588
|
+
{
|
|
589
|
+
default: '/Biologie marine/Zooplancton',
|
|
590
|
+
langfre: '/Biologie marine/Zooplancton',
|
|
591
|
+
},
|
|
592
|
+
{
|
|
593
|
+
default: "/Physique de l'Océan/Température",
|
|
594
|
+
langfre: "/Physique de l'Océan/Température",
|
|
595
|
+
},
|
|
596
|
+
{
|
|
597
|
+
default: "/Physique de l'Océan/Salinité",
|
|
598
|
+
langfre: "/Physique de l'Océan/Salinité",
|
|
599
|
+
},
|
|
600
|
+
{
|
|
601
|
+
default: '/Biogéochimie marine/Oxygène dissous',
|
|
602
|
+
langfre: '/Biogéochimie marine/Oxygène dissous',
|
|
603
|
+
},
|
|
604
|
+
{
|
|
605
|
+
default: '/Biologie marine/Organismes pathogènes',
|
|
606
|
+
langfre: '/Biologie marine/Organismes pathogènes',
|
|
607
|
+
},
|
|
608
|
+
{
|
|
609
|
+
default: '/Biologie marine/Organismes marins tropicaux',
|
|
610
|
+
langfre: '/Biologie marine/Organismes marins tropicaux',
|
|
611
|
+
},
|
|
612
|
+
{
|
|
613
|
+
default: '/Biologie marine/Matière en suspension',
|
|
614
|
+
langfre: '/Biologie marine/Matière en suspension',
|
|
615
|
+
},
|
|
616
|
+
{
|
|
617
|
+
default: '/Biogéochimie marine/Nutriments (sels nutritifs)',
|
|
618
|
+
langfre: '/Biogéochimie marine/Nutriments (sels nutritifs)',
|
|
619
|
+
},
|
|
620
|
+
{
|
|
621
|
+
default: '/Biologie marine/Habitats benthiques',
|
|
622
|
+
langfre: '/Biologie marine/Habitats benthiques',
|
|
623
|
+
},
|
|
624
|
+
{
|
|
625
|
+
default: '/Etat du Milieu/Biogéochimie',
|
|
626
|
+
langfre: '/Etat du Milieu/Biogéochimie',
|
|
627
|
+
},
|
|
628
|
+
{
|
|
629
|
+
default: '/Etat du Milieu/Pollutions',
|
|
630
|
+
langfre: '/Etat du Milieu/Pollutions',
|
|
631
|
+
},
|
|
632
|
+
{
|
|
633
|
+
default: '/Etat du Milieu/Littoral',
|
|
634
|
+
langfre: '/Etat du Milieu/Littoral',
|
|
635
|
+
},
|
|
636
|
+
{
|
|
637
|
+
default: '/Etat du Milieu/Habitats',
|
|
638
|
+
langfre: '/Etat du Milieu/Habitats',
|
|
639
|
+
},
|
|
640
|
+
{
|
|
641
|
+
default: '/Etat du Milieu/Espèces',
|
|
642
|
+
langfre: '/Etat du Milieu/Espèces',
|
|
643
|
+
},
|
|
644
|
+
],
|
|
645
|
+
'keywordType-place': [
|
|
646
|
+
{ default: 'National', langfre: 'National' },
|
|
647
|
+
{
|
|
648
|
+
default: 'Brest',
|
|
649
|
+
langfre: 'Brest',
|
|
650
|
+
},
|
|
651
|
+
{ default: 'Fort-de-France', langfre: 'Fort-de-France' },
|
|
652
|
+
{
|
|
653
|
+
default: 'Boulogne-sur-Mer',
|
|
654
|
+
langfre: 'Boulogne-sur-Mer',
|
|
655
|
+
},
|
|
656
|
+
{ default: 'Nouméa', langfre: 'Nouméa' },
|
|
657
|
+
{
|
|
658
|
+
default: 'Toulon',
|
|
659
|
+
langfre: 'Toulon',
|
|
660
|
+
},
|
|
661
|
+
{ default: 'Sète', langfre: 'Sète' },
|
|
662
|
+
{ default: 'La Rochelle', langfre: 'La Rochelle' },
|
|
663
|
+
],
|
|
664
|
+
'th_httpinspireeceuropaeutheme-themeNumber': '1',
|
|
665
|
+
'th_httpinspireeceuropaeutheme-theme': [
|
|
666
|
+
{
|
|
667
|
+
default: 'Installations de suivi environnemental',
|
|
668
|
+
langfre: 'Installations de suivi environnemental',
|
|
669
|
+
},
|
|
670
|
+
],
|
|
671
|
+
indexingErrorMsg: [
|
|
672
|
+
'Warning / Keyword Installations de suivi environnemental not found in geonetwork.thesaurus.external.theme.httpinspireeceuropaeutheme-theme.',
|
|
673
|
+
'Warning / Keyword D8: Contaminants not found in geonetwork.thesaurus.local.theme.dcsmm-descripteur.',
|
|
674
|
+
'Warning / Keyword D1: Biodiversité not found in geonetwork.thesaurus.local.theme.dcsmm-descripteur.',
|
|
675
|
+
'Warning / Keyword D7: Changements hydrographiques not found in geonetwork.thesaurus.local.theme.dcsmm-descripteur.',
|
|
676
|
+
'Warning / Keyword D4: Réseaux trophiques not found in geonetwork.thesaurus.local.theme.dcsmm-descripteur.',
|
|
677
|
+
'Warning / Keyword D5: Eutrophisation not found in geonetwork.thesaurus.local.theme.dcsmm-descripteur.',
|
|
678
|
+
'Warning / Keyword D9: Questions sanitaires not found in geonetwork.thesaurus.local.theme.dcsmm-descripteur.',
|
|
679
|
+
'Warning / Keyword D10: Déchets marins not found in geonetwork.thesaurus.local.theme.dcsmm-descripteur.',
|
|
680
|
+
'Warning / Keyword D1: Biodiversité - Habitats benthiques not found in geonetwork.thesaurus.local.theme.dcsmm-descripteur.',
|
|
681
|
+
'Warning / Keyword D1: Biodiversité - Habitats pélagiques not found in geonetwork.thesaurus.local.theme.dcsmm-descripteur.',
|
|
682
|
+
'Warning / Keyword D1: Biodiversité - Poissons not found in geonetwork.thesaurus.local.theme.dcsmm-descripteur.',
|
|
683
|
+
'Warning / Keyword D1: Biodiversité - Mammifères not found in geonetwork.thesaurus.local.theme.dcsmm-descripteur.',
|
|
684
|
+
'Warning / Keyword D1: Biodiversité - Tortues not found in geonetwork.thesaurus.local.theme.dcsmm-descripteur.',
|
|
685
|
+
'Warning / Keyword D1: Biodiversité - Céphalopodes not found in geonetwork.thesaurus.local.theme.dcsmm-descripteur.',
|
|
686
|
+
'Warning / Keyword National not found in geonetwork.thesaurus.local.place.dcsmm.area.',
|
|
687
|
+
'Warning / Keyword Observation par point not found in geonetwork.thesaurus.local.theme.dcsmm-methode.',
|
|
688
|
+
'Warning / Keyword Observation directe not found in geonetwork.thesaurus.local.theme.dcsmm-methode.',
|
|
689
|
+
"Warning / Keyword /Activités humaines/Réseaux d'observation et de surveillance du littoral not found in geonetwork.thesaurus.local.theme.sextant-theme.",
|
|
690
|
+
'Warning / Keyword /Observations in-situ/Réseaux not found in geonetwork.thesaurus.local.theme.type_jeux_donnee.',
|
|
691
|
+
'Warning / Keyword Base de données de recherche not found in geonetwork.thesaurus.local.theme.odatis_thematiques.',
|
|
692
|
+
'Warning / Keyword Dispositifs de surveillance not found in geonetwork.thesaurus.local.theme.odatis_thematiques.',
|
|
693
|
+
'Warning / Keyword /Biologie marine/Bivalves not found in geonetwork.thesaurus.local.theme.odatis_variables.',
|
|
694
|
+
'Warning / Keyword /Biogéochimie marine/Eléments chimiques et contaminants not found in geonetwork.thesaurus.local.theme.odatis_variables.',
|
|
695
|
+
"Warning / Keyword /Physique de l'Océan/Turbidité not found in geonetwork.thesaurus.local.theme.odatis_variables.",
|
|
696
|
+
'Warning / Keyword /Biogéochimie marine/Pigments not found in geonetwork.thesaurus.local.theme.odatis_variables.',
|
|
697
|
+
'Warning / Keyword /Biologie marine/Toxines not found in geonetwork.thesaurus.local.theme.odatis_variables.',
|
|
698
|
+
'Warning / Keyword /Biologie marine/Phytoplancton not found in geonetwork.thesaurus.local.theme.odatis_variables.',
|
|
699
|
+
'Warning / Keyword /Biologie marine/Zooplancton not found in geonetwork.thesaurus.local.theme.odatis_variables.',
|
|
700
|
+
"Warning / Keyword /Physique de l'Océan/Température not found in geonetwork.thesaurus.local.theme.odatis_variables.",
|
|
701
|
+
"Warning / Keyword /Physique de l'Océan/Salinité not found in geonetwork.thesaurus.local.theme.odatis_variables.",
|
|
702
|
+
'Warning / Keyword /Biogéochimie marine/Oxygène dissous not found in geonetwork.thesaurus.local.theme.odatis_variables.',
|
|
703
|
+
'Warning / Keyword /Biologie marine/Organismes pathogènes not found in geonetwork.thesaurus.local.theme.odatis_variables.',
|
|
704
|
+
'Warning / Keyword /Biologie marine/Organismes marins tropicaux not found in geonetwork.thesaurus.local.theme.odatis_variables.',
|
|
705
|
+
'Warning / Keyword /Biologie marine/Matière en suspension not found in geonetwork.thesaurus.local.theme.odatis_variables.',
|
|
706
|
+
'Warning / Keyword /Biogéochimie marine/Nutriments (sels nutritifs) not found in geonetwork.thesaurus.local.theme.odatis_variables.',
|
|
707
|
+
'Warning / Keyword /Biologie marine/Habitats benthiques not found in geonetwork.thesaurus.local.theme.odatis_variables.',
|
|
708
|
+
'Warning / Keyword /Etat du Milieu/Biogéochimie not found in geonetwork.thesaurus.local.theme.simm.thematiques.',
|
|
709
|
+
'Warning / Keyword /Etat du Milieu/Pollutions not found in geonetwork.thesaurus.local.theme.simm.thematiques.',
|
|
710
|
+
'Warning / Keyword /Etat du Milieu/Littoral not found in geonetwork.thesaurus.local.theme.simm.thematiques.',
|
|
711
|
+
'Warning / Keyword /Etat du Milieu/Habitats not found in geonetwork.thesaurus.local.theme.simm.thematiques.',
|
|
712
|
+
'Warning / Keyword /Etat du Milieu/Espèces not found in geonetwork.thesaurus.local.theme.simm.thematiques.',
|
|
713
|
+
'Warning / Keyword Brest not found in geonetwork.thesaurus.local.place.oh_ville.',
|
|
714
|
+
'Warning / Keyword Fort-de-France not found in geonetwork.thesaurus.local.place.oh_ville.',
|
|
715
|
+
'Warning / Keyword Boulogne-sur-Mer not found in geonetwork.thesaurus.local.place.oh_ville.',
|
|
716
|
+
'Warning / Keyword Nouméa not found in geonetwork.thesaurus.local.place.oh_ville.',
|
|
717
|
+
'Warning / Keyword Toulon not found in geonetwork.thesaurus.local.place.oh_ville.',
|
|
718
|
+
'Warning / Keyword Sète not found in geonetwork.thesaurus.local.place.oh_ville.',
|
|
719
|
+
'Warning / Keyword La Rochelle not found in geonetwork.thesaurus.local.place.oh_ville.',
|
|
720
|
+
],
|
|
721
|
+
indexingError: [
|
|
722
|
+
'true',
|
|
723
|
+
'true',
|
|
724
|
+
'true',
|
|
725
|
+
'true',
|
|
726
|
+
'true',
|
|
727
|
+
'true',
|
|
728
|
+
'true',
|
|
729
|
+
'true',
|
|
730
|
+
'true',
|
|
731
|
+
'true',
|
|
732
|
+
'true',
|
|
733
|
+
'true',
|
|
734
|
+
'true',
|
|
735
|
+
'true',
|
|
736
|
+
'true',
|
|
737
|
+
'true',
|
|
738
|
+
'true',
|
|
739
|
+
'true',
|
|
740
|
+
'true',
|
|
741
|
+
'true',
|
|
742
|
+
'true',
|
|
743
|
+
'true',
|
|
744
|
+
'true',
|
|
745
|
+
'true',
|
|
746
|
+
'true',
|
|
747
|
+
'true',
|
|
748
|
+
'true',
|
|
749
|
+
'true',
|
|
750
|
+
'true',
|
|
751
|
+
'true',
|
|
752
|
+
'true',
|
|
753
|
+
'true',
|
|
754
|
+
'true',
|
|
755
|
+
'true',
|
|
756
|
+
'true',
|
|
757
|
+
'true',
|
|
758
|
+
'true',
|
|
759
|
+
'true',
|
|
760
|
+
'true',
|
|
761
|
+
'true',
|
|
762
|
+
'true',
|
|
763
|
+
'true',
|
|
764
|
+
'true',
|
|
765
|
+
'true',
|
|
766
|
+
'true',
|
|
767
|
+
'true',
|
|
768
|
+
'true',
|
|
769
|
+
'true',
|
|
770
|
+
],
|
|
771
|
+
'th_dcsmm-descripteurNumber': '13',
|
|
772
|
+
'th_dcsmm-descripteur': [
|
|
773
|
+
{
|
|
774
|
+
default: 'D8: Contaminants',
|
|
775
|
+
langfre: 'D8: Contaminants',
|
|
776
|
+
},
|
|
777
|
+
{
|
|
778
|
+
default: 'D1: Biodiversité',
|
|
779
|
+
langfre: 'D1: Biodiversité',
|
|
780
|
+
},
|
|
781
|
+
{
|
|
782
|
+
default: 'D7: Changements hydrographiques',
|
|
783
|
+
langfre: 'D7: Changements hydrographiques',
|
|
784
|
+
},
|
|
785
|
+
{
|
|
786
|
+
default: 'D4: Réseaux trophiques',
|
|
787
|
+
langfre: 'D4: Réseaux trophiques',
|
|
788
|
+
},
|
|
789
|
+
{
|
|
790
|
+
default: 'D5: Eutrophisation',
|
|
791
|
+
langfre: 'D5: Eutrophisation',
|
|
792
|
+
},
|
|
793
|
+
{
|
|
794
|
+
default: 'D9: Questions sanitaires',
|
|
795
|
+
langfre: 'D9: Questions sanitaires',
|
|
796
|
+
},
|
|
797
|
+
{
|
|
798
|
+
default: 'D10: Déchets marins',
|
|
799
|
+
langfre: 'D10: Déchets marins',
|
|
800
|
+
},
|
|
801
|
+
{
|
|
802
|
+
default: 'D1: Biodiversité - Habitats benthiques',
|
|
803
|
+
langfre: 'D1: Biodiversité - Habitats benthiques',
|
|
804
|
+
},
|
|
805
|
+
{
|
|
806
|
+
default: 'D1: Biodiversité - Habitats pélagiques',
|
|
807
|
+
langfre: 'D1: Biodiversité - Habitats pélagiques',
|
|
808
|
+
},
|
|
809
|
+
{
|
|
810
|
+
default: 'D1: Biodiversité - Poissons',
|
|
811
|
+
langfre: 'D1: Biodiversité - Poissons',
|
|
812
|
+
},
|
|
813
|
+
{
|
|
814
|
+
default: 'D1: Biodiversité - Mammifères',
|
|
815
|
+
langfre: 'D1: Biodiversité - Mammifères',
|
|
816
|
+
},
|
|
817
|
+
{
|
|
818
|
+
default: 'D1: Biodiversité - Tortues',
|
|
819
|
+
langfre: 'D1: Biodiversité - Tortues',
|
|
820
|
+
},
|
|
821
|
+
{
|
|
822
|
+
default: 'D1: Biodiversité - Céphalopodes',
|
|
823
|
+
langfre: 'D1: Biodiversité - Céphalopodes',
|
|
824
|
+
},
|
|
825
|
+
],
|
|
826
|
+
th_areaNumber: '1',
|
|
827
|
+
th_area: [{ default: 'National', langfre: 'National' }],
|
|
828
|
+
'th_dcsmm-methodeNumber': '2',
|
|
829
|
+
'th_dcsmm-methode': [
|
|
830
|
+
{
|
|
831
|
+
default: 'Observation par point',
|
|
832
|
+
langfre: 'Observation par point',
|
|
833
|
+
},
|
|
834
|
+
{ default: 'Observation directe', langfre: 'Observation directe' },
|
|
835
|
+
],
|
|
836
|
+
'th_sextant-themeNumber': '1',
|
|
837
|
+
'th_sextant-theme': [
|
|
838
|
+
{
|
|
839
|
+
default:
|
|
840
|
+
"/Activités humaines/Réseaux d'observation et de surveillance du littoral",
|
|
841
|
+
langfre:
|
|
842
|
+
"/Activités humaines/Réseaux d'observation et de surveillance du littoral",
|
|
843
|
+
},
|
|
844
|
+
],
|
|
845
|
+
th_type_jeux_donneeNumber: '1',
|
|
846
|
+
th_type_jeux_donnee: [
|
|
847
|
+
{
|
|
848
|
+
default: '/Observations in-situ/Réseaux',
|
|
849
|
+
langfre: '/Observations in-situ/Réseaux',
|
|
850
|
+
},
|
|
851
|
+
],
|
|
852
|
+
th_odatis_thematiquesNumber: '2',
|
|
853
|
+
th_odatis_thematiques: [
|
|
854
|
+
{
|
|
855
|
+
default: 'Base de données de recherche',
|
|
856
|
+
langfre: 'Base de données de recherche',
|
|
857
|
+
},
|
|
858
|
+
{
|
|
859
|
+
default: 'Dispositifs de surveillance',
|
|
860
|
+
langfre: 'Dispositifs de surveillance',
|
|
861
|
+
},
|
|
862
|
+
],
|
|
863
|
+
th_odatis_variablesNumber: '15',
|
|
864
|
+
th_odatis_variables: [
|
|
865
|
+
{
|
|
866
|
+
default: '/Biologie marine/Bivalves',
|
|
867
|
+
langfre: '/Biologie marine/Bivalves',
|
|
868
|
+
},
|
|
869
|
+
{
|
|
870
|
+
default:
|
|
871
|
+
'/Biogéochimie marine/Eléments chimiques et contaminants',
|
|
872
|
+
langfre:
|
|
873
|
+
'/Biogéochimie marine/Eléments chimiques et contaminants',
|
|
874
|
+
},
|
|
875
|
+
{
|
|
876
|
+
default: "/Physique de l'Océan/Turbidité",
|
|
877
|
+
langfre: "/Physique de l'Océan/Turbidité",
|
|
878
|
+
},
|
|
879
|
+
{
|
|
880
|
+
default: '/Biogéochimie marine/Pigments',
|
|
881
|
+
langfre: '/Biogéochimie marine/Pigments',
|
|
882
|
+
},
|
|
883
|
+
{
|
|
884
|
+
default: '/Biologie marine/Toxines',
|
|
885
|
+
langfre: '/Biologie marine/Toxines',
|
|
886
|
+
},
|
|
887
|
+
{
|
|
888
|
+
default: '/Biologie marine/Phytoplancton',
|
|
889
|
+
langfre: '/Biologie marine/Phytoplancton',
|
|
890
|
+
},
|
|
891
|
+
{
|
|
892
|
+
default: '/Biologie marine/Zooplancton',
|
|
893
|
+
langfre: '/Biologie marine/Zooplancton',
|
|
894
|
+
},
|
|
895
|
+
{
|
|
896
|
+
default: "/Physique de l'Océan/Température",
|
|
897
|
+
langfre: "/Physique de l'Océan/Température",
|
|
898
|
+
},
|
|
899
|
+
{
|
|
900
|
+
default: "/Physique de l'Océan/Salinité",
|
|
901
|
+
langfre: "/Physique de l'Océan/Salinité",
|
|
902
|
+
},
|
|
903
|
+
{
|
|
904
|
+
default: '/Biogéochimie marine/Oxygène dissous',
|
|
905
|
+
langfre: '/Biogéochimie marine/Oxygène dissous',
|
|
906
|
+
},
|
|
907
|
+
{
|
|
908
|
+
default: '/Biologie marine/Organismes pathogènes',
|
|
909
|
+
langfre: '/Biologie marine/Organismes pathogènes',
|
|
910
|
+
},
|
|
911
|
+
{
|
|
912
|
+
default: '/Biologie marine/Organismes marins tropicaux',
|
|
913
|
+
langfre: '/Biologie marine/Organismes marins tropicaux',
|
|
914
|
+
},
|
|
915
|
+
{
|
|
916
|
+
default: '/Biologie marine/Matière en suspension',
|
|
917
|
+
langfre: '/Biologie marine/Matière en suspension',
|
|
918
|
+
},
|
|
919
|
+
{
|
|
920
|
+
default: '/Biogéochimie marine/Nutriments (sels nutritifs)',
|
|
921
|
+
langfre: '/Biogéochimie marine/Nutriments (sels nutritifs)',
|
|
922
|
+
},
|
|
923
|
+
{
|
|
924
|
+
default: '/Biologie marine/Habitats benthiques',
|
|
925
|
+
langfre: '/Biologie marine/Habitats benthiques',
|
|
926
|
+
},
|
|
927
|
+
],
|
|
928
|
+
th_thematiquesNumber: '5',
|
|
929
|
+
th_thematiques: [
|
|
930
|
+
{
|
|
931
|
+
default: '/Etat du Milieu/Biogéochimie',
|
|
932
|
+
langfre: '/Etat du Milieu/Biogéochimie',
|
|
933
|
+
},
|
|
934
|
+
{
|
|
935
|
+
default: '/Etat du Milieu/Pollutions',
|
|
936
|
+
langfre: '/Etat du Milieu/Pollutions',
|
|
937
|
+
},
|
|
938
|
+
{
|
|
939
|
+
default: '/Etat du Milieu/Littoral',
|
|
940
|
+
langfre: '/Etat du Milieu/Littoral',
|
|
941
|
+
},
|
|
942
|
+
{
|
|
943
|
+
default: '/Etat du Milieu/Habitats',
|
|
944
|
+
langfre: '/Etat du Milieu/Habitats',
|
|
945
|
+
},
|
|
946
|
+
{
|
|
947
|
+
default: '/Etat du Milieu/Espèces',
|
|
948
|
+
langfre: '/Etat du Milieu/Espèces',
|
|
949
|
+
},
|
|
950
|
+
],
|
|
951
|
+
th_oh_villeNumber: '7',
|
|
952
|
+
th_oh_ville: [
|
|
953
|
+
{ default: 'Brest', langfre: 'Brest' },
|
|
954
|
+
{
|
|
955
|
+
default: 'Fort-de-France',
|
|
956
|
+
langfre: 'Fort-de-France',
|
|
957
|
+
},
|
|
958
|
+
{ default: 'Boulogne-sur-Mer', langfre: 'Boulogne-sur-Mer' },
|
|
959
|
+
{
|
|
960
|
+
default: 'Nouméa',
|
|
961
|
+
langfre: 'Nouméa',
|
|
962
|
+
},
|
|
963
|
+
{ default: 'Toulon', langfre: 'Toulon' },
|
|
964
|
+
{
|
|
965
|
+
default: 'Sète',
|
|
966
|
+
langfre: 'Sète',
|
|
967
|
+
},
|
|
968
|
+
{ default: 'La Rochelle', langfre: 'La Rochelle' },
|
|
969
|
+
],
|
|
970
|
+
allKeywords: {
|
|
971
|
+
geonetworkthesauruslocalthemedcsmmdescripteur: {
|
|
972
|
+
id: 'geonetwork.thesaurus.local.theme.dcsmm-descripteur',
|
|
973
|
+
title: 'DCSMM : Descripteurs',
|
|
974
|
+
theme: 'theme',
|
|
975
|
+
link: '',
|
|
976
|
+
keywords: [
|
|
977
|
+
{
|
|
978
|
+
default: 'D8: Contaminants',
|
|
979
|
+
langfre: 'D8: Contaminants',
|
|
980
|
+
},
|
|
981
|
+
{
|
|
982
|
+
default: 'D1: Biodiversité',
|
|
983
|
+
langfre: 'D1: Biodiversité',
|
|
984
|
+
},
|
|
985
|
+
{
|
|
986
|
+
default: 'D7: Changements hydrographiques',
|
|
987
|
+
langfre: 'D7: Changements hydrographiques',
|
|
988
|
+
},
|
|
989
|
+
{
|
|
990
|
+
default: 'D4: Réseaux trophiques',
|
|
991
|
+
langfre: 'D4: Réseaux trophiques',
|
|
992
|
+
},
|
|
993
|
+
{
|
|
994
|
+
default: 'D5: Eutrophisation',
|
|
995
|
+
langfre: 'D5: Eutrophisation',
|
|
996
|
+
},
|
|
997
|
+
{
|
|
998
|
+
default: 'D9: Questions sanitaires',
|
|
999
|
+
langfre: 'D9: Questions sanitaires',
|
|
1000
|
+
},
|
|
1001
|
+
{
|
|
1002
|
+
default: 'D10: Déchets marins',
|
|
1003
|
+
langfre: 'D10: Déchets marins',
|
|
1004
|
+
},
|
|
1005
|
+
{
|
|
1006
|
+
default: 'D1: Biodiversité - Habitats benthiques',
|
|
1007
|
+
langfre: 'D1: Biodiversité - Habitats benthiques',
|
|
1008
|
+
},
|
|
1009
|
+
{
|
|
1010
|
+
default: 'D1: Biodiversité - Habitats pélagiques',
|
|
1011
|
+
langfre: 'D1: Biodiversité - Habitats pélagiques',
|
|
1012
|
+
},
|
|
1013
|
+
{
|
|
1014
|
+
default: 'D1: Biodiversité - Poissons',
|
|
1015
|
+
langfre: 'D1: Biodiversité - Poissons',
|
|
1016
|
+
},
|
|
1017
|
+
{
|
|
1018
|
+
default: 'D1: Biodiversité - Mammifères',
|
|
1019
|
+
langfre: 'D1: Biodiversité - Mammifères',
|
|
1020
|
+
},
|
|
1021
|
+
{
|
|
1022
|
+
default: 'D1: Biodiversité - Tortues',
|
|
1023
|
+
langfre: 'D1: Biodiversité - Tortues',
|
|
1024
|
+
},
|
|
1025
|
+
{
|
|
1026
|
+
default: 'D1: Biodiversité - Céphalopodes',
|
|
1027
|
+
langfre: 'D1: Biodiversité - Céphalopodes',
|
|
1028
|
+
},
|
|
1029
|
+
],
|
|
1030
|
+
},
|
|
1031
|
+
geonetworkthesauruslocalthemedcsmmmethode: {
|
|
1032
|
+
id: 'geonetwork.thesaurus.local.theme.dcsmm-methode',
|
|
1033
|
+
title: 'DCSMM : Méthodes de recueil des données',
|
|
1034
|
+
theme: 'theme',
|
|
1035
|
+
link: '',
|
|
1036
|
+
keywords: [
|
|
1037
|
+
{
|
|
1038
|
+
default: 'Observation par point',
|
|
1039
|
+
langfre: 'Observation par point',
|
|
1040
|
+
},
|
|
1041
|
+
{
|
|
1042
|
+
default: 'Observation directe',
|
|
1043
|
+
langfre: 'Observation directe',
|
|
1044
|
+
},
|
|
1045
|
+
],
|
|
1046
|
+
},
|
|
1047
|
+
geonetworkthesaurusexternalthemehttpinspireeceuropaeuthemetheme: {
|
|
1048
|
+
id: 'geonetwork.thesaurus.external.theme.httpinspireeceuropaeutheme-theme',
|
|
1049
|
+
title: 'GEMET - INSPIRE themes, version 1.0',
|
|
1050
|
+
theme: 'theme',
|
|
1051
|
+
link: '',
|
|
1052
|
+
keywords: [
|
|
1053
|
+
{
|
|
1054
|
+
default: 'Installations de suivi environnemental',
|
|
1055
|
+
langfre: 'Installations de suivi environnemental',
|
|
1056
|
+
},
|
|
1057
|
+
],
|
|
1058
|
+
},
|
|
1059
|
+
geonetworkthesauruslocalplaceohville: {
|
|
1060
|
+
id: 'geonetwork.thesaurus.local.place.oh_ville',
|
|
1061
|
+
title: 'Ocean Hackathon - Ville',
|
|
1062
|
+
theme: 'place',
|
|
1063
|
+
link: '',
|
|
1064
|
+
keywords: [
|
|
1065
|
+
{ default: 'Brest', langfre: 'Brest' },
|
|
1066
|
+
{
|
|
1067
|
+
default: 'Fort-de-France',
|
|
1068
|
+
langfre: 'Fort-de-France',
|
|
1069
|
+
},
|
|
1070
|
+
{ default: 'Boulogne-sur-Mer', langfre: 'Boulogne-sur-Mer' },
|
|
1071
|
+
{
|
|
1072
|
+
default: 'Nouméa',
|
|
1073
|
+
langfre: 'Nouméa',
|
|
1074
|
+
},
|
|
1075
|
+
{ default: 'Toulon', langfre: 'Toulon' },
|
|
1076
|
+
{
|
|
1077
|
+
default: 'Sète',
|
|
1078
|
+
langfre: 'Sète',
|
|
1079
|
+
},
|
|
1080
|
+
{ default: 'La Rochelle', langfre: 'La Rochelle' },
|
|
1081
|
+
],
|
|
1082
|
+
},
|
|
1083
|
+
geonetworkthesauruslocalplacedcsmmarea: {
|
|
1084
|
+
id: 'geonetwork.thesaurus.local.place.dcsmm.area',
|
|
1085
|
+
title: 'Sous-regions marines',
|
|
1086
|
+
theme: 'place',
|
|
1087
|
+
link: '',
|
|
1088
|
+
keywords: [{ default: 'National', langfre: 'National' }],
|
|
1089
|
+
},
|
|
1090
|
+
geonetworkthesauruslocalthemeodatisthematiques: {
|
|
1091
|
+
id: 'geonetwork.thesaurus.local.theme.odatis_thematiques',
|
|
1092
|
+
title: 'Thèmatiques ODATIS',
|
|
1093
|
+
theme: 'theme',
|
|
1094
|
+
link: '',
|
|
1095
|
+
keywords: [
|
|
1096
|
+
{
|
|
1097
|
+
default: 'Base de données de recherche',
|
|
1098
|
+
langfre: 'Base de données de recherche',
|
|
1099
|
+
},
|
|
1100
|
+
{
|
|
1101
|
+
default: 'Dispositifs de surveillance',
|
|
1102
|
+
langfre: 'Dispositifs de surveillance',
|
|
1103
|
+
},
|
|
1104
|
+
],
|
|
1105
|
+
},
|
|
1106
|
+
geonetworkthesauruslocalthemesextanttheme: {
|
|
1107
|
+
id: 'geonetwork.thesaurus.local.theme.sextant-theme',
|
|
1108
|
+
title: 'Thèmes Sextant',
|
|
1109
|
+
theme: 'theme',
|
|
1110
|
+
link: '',
|
|
1111
|
+
keywords: [
|
|
1112
|
+
{
|
|
1113
|
+
default:
|
|
1114
|
+
"/Activités humaines/Réseaux d'observation et de surveillance du littoral",
|
|
1115
|
+
langfre:
|
|
1116
|
+
"/Activités humaines/Réseaux d'observation et de surveillance du littoral",
|
|
1117
|
+
},
|
|
1118
|
+
],
|
|
1119
|
+
},
|
|
1120
|
+
geonetworkthesauruslocalthemesimmthematiques: {
|
|
1121
|
+
id: 'geonetwork.thesaurus.local.theme.simm.thematiques',
|
|
1122
|
+
title: 'Thématiques - SIMM',
|
|
1123
|
+
theme: 'theme',
|
|
1124
|
+
link: '',
|
|
1125
|
+
keywords: [
|
|
1126
|
+
{
|
|
1127
|
+
default: '/Etat du Milieu/Biogéochimie',
|
|
1128
|
+
langfre: '/Etat du Milieu/Biogéochimie',
|
|
1129
|
+
},
|
|
1130
|
+
{
|
|
1131
|
+
default: '/Etat du Milieu/Pollutions',
|
|
1132
|
+
langfre: '/Etat du Milieu/Pollutions',
|
|
1133
|
+
},
|
|
1134
|
+
{
|
|
1135
|
+
default: '/Etat du Milieu/Littoral',
|
|
1136
|
+
langfre: '/Etat du Milieu/Littoral',
|
|
1137
|
+
},
|
|
1138
|
+
{
|
|
1139
|
+
default: '/Etat du Milieu/Habitats',
|
|
1140
|
+
langfre: '/Etat du Milieu/Habitats',
|
|
1141
|
+
},
|
|
1142
|
+
{
|
|
1143
|
+
default: '/Etat du Milieu/Espèces',
|
|
1144
|
+
langfre: '/Etat du Milieu/Espèces',
|
|
1145
|
+
},
|
|
1146
|
+
],
|
|
1147
|
+
},
|
|
1148
|
+
geonetworkthesauruslocalthemetypejeuxdonnee: {
|
|
1149
|
+
id: 'geonetwork.thesaurus.local.theme.type_jeux_donnee',
|
|
1150
|
+
title: 'Type de jeux de donnée ODATIS',
|
|
1151
|
+
theme: 'theme',
|
|
1152
|
+
link: '',
|
|
1153
|
+
keywords: [
|
|
1154
|
+
{
|
|
1155
|
+
default: '/Observations in-situ/Réseaux',
|
|
1156
|
+
langfre: '/Observations in-situ/Réseaux',
|
|
1157
|
+
},
|
|
1158
|
+
],
|
|
1159
|
+
},
|
|
1160
|
+
geonetworkthesauruslocalthemeodatisvariables: {
|
|
1161
|
+
id: 'geonetwork.thesaurus.local.theme.odatis_variables',
|
|
1162
|
+
title: 'Variables ODATIS',
|
|
1163
|
+
theme: 'theme',
|
|
1164
|
+
link: '',
|
|
1165
|
+
keywords: [
|
|
1166
|
+
{
|
|
1167
|
+
default: '/Biologie marine/Bivalves',
|
|
1168
|
+
langfre: '/Biologie marine/Bivalves',
|
|
1169
|
+
},
|
|
1170
|
+
{
|
|
1171
|
+
default:
|
|
1172
|
+
'/Biogéochimie marine/Eléments chimiques et contaminants',
|
|
1173
|
+
langfre:
|
|
1174
|
+
'/Biogéochimie marine/Eléments chimiques et contaminants',
|
|
1175
|
+
},
|
|
1176
|
+
{
|
|
1177
|
+
default: "/Physique de l'Océan/Turbidité",
|
|
1178
|
+
langfre: "/Physique de l'Océan/Turbidité",
|
|
1179
|
+
},
|
|
1180
|
+
{
|
|
1181
|
+
default: '/Biogéochimie marine/Pigments',
|
|
1182
|
+
langfre: '/Biogéochimie marine/Pigments',
|
|
1183
|
+
},
|
|
1184
|
+
{
|
|
1185
|
+
default: '/Biologie marine/Toxines',
|
|
1186
|
+
langfre: '/Biologie marine/Toxines',
|
|
1187
|
+
},
|
|
1188
|
+
{
|
|
1189
|
+
default: '/Biologie marine/Phytoplancton',
|
|
1190
|
+
langfre: '/Biologie marine/Phytoplancton',
|
|
1191
|
+
},
|
|
1192
|
+
{
|
|
1193
|
+
default: '/Biologie marine/Zooplancton',
|
|
1194
|
+
langfre: '/Biologie marine/Zooplancton',
|
|
1195
|
+
},
|
|
1196
|
+
{
|
|
1197
|
+
default: "/Physique de l'Océan/Température",
|
|
1198
|
+
langfre: "/Physique de l'Océan/Température",
|
|
1199
|
+
},
|
|
1200
|
+
{
|
|
1201
|
+
default: "/Physique de l'Océan/Salinité",
|
|
1202
|
+
langfre: "/Physique de l'Océan/Salinité",
|
|
1203
|
+
},
|
|
1204
|
+
{
|
|
1205
|
+
default: '/Biogéochimie marine/Oxygène dissous',
|
|
1206
|
+
langfre: '/Biogéochimie marine/Oxygène dissous',
|
|
1207
|
+
},
|
|
1208
|
+
{
|
|
1209
|
+
default: '/Biologie marine/Organismes pathogènes',
|
|
1210
|
+
langfre: '/Biologie marine/Organismes pathogènes',
|
|
1211
|
+
},
|
|
1212
|
+
{
|
|
1213
|
+
default: '/Biologie marine/Organismes marins tropicaux',
|
|
1214
|
+
langfre: '/Biologie marine/Organismes marins tropicaux',
|
|
1215
|
+
},
|
|
1216
|
+
{
|
|
1217
|
+
default: '/Biologie marine/Matière en suspension',
|
|
1218
|
+
langfre: '/Biologie marine/Matière en suspension',
|
|
1219
|
+
},
|
|
1220
|
+
{
|
|
1221
|
+
default: '/Biogéochimie marine/Nutriments (sels nutritifs)',
|
|
1222
|
+
langfre: '/Biogéochimie marine/Nutriments (sels nutritifs)',
|
|
1223
|
+
},
|
|
1224
|
+
{
|
|
1225
|
+
default: '/Biologie marine/Habitats benthiques',
|
|
1226
|
+
langfre: '/Biologie marine/Habitats benthiques',
|
|
1227
|
+
},
|
|
1228
|
+
],
|
|
1229
|
+
},
|
|
1230
|
+
'otherKeywords-theme': {
|
|
1231
|
+
keywords: [
|
|
1232
|
+
{
|
|
1233
|
+
default: 'Lieux de surveillance',
|
|
1234
|
+
langfre: 'Lieux de surveillance',
|
|
1235
|
+
},
|
|
1236
|
+
{ default: 'Observation', langfre: 'Observation' },
|
|
1237
|
+
{
|
|
1238
|
+
default: 'Surveillance',
|
|
1239
|
+
langfre: 'Surveillance',
|
|
1240
|
+
},
|
|
1241
|
+
{ default: 'Environnement', langfre: 'Environnement' },
|
|
1242
|
+
{
|
|
1243
|
+
default: 'Littoral',
|
|
1244
|
+
langfre: 'Littoral',
|
|
1245
|
+
},
|
|
1246
|
+
{ default: 'Quadrige', langfre: 'Quadrige' },
|
|
1247
|
+
{
|
|
1248
|
+
default: 'DCE',
|
|
1249
|
+
langfre: 'DCE',
|
|
1250
|
+
},
|
|
1251
|
+
{ default: 'DCSMM', langfre: 'DCSMM' },
|
|
1252
|
+
{
|
|
1253
|
+
default: 'OSPAR',
|
|
1254
|
+
langfre: 'OSPAR',
|
|
1255
|
+
},
|
|
1256
|
+
{ default: 'MEDPOL', langfre: 'MEDPOL' },
|
|
1257
|
+
{
|
|
1258
|
+
default: 'Données ouvertes',
|
|
1259
|
+
langfre: 'Données ouvertes',
|
|
1260
|
+
},
|
|
1261
|
+
{ default: 'Open Data', langfre: 'Open Data' },
|
|
1262
|
+
{ default: 'Surval', langfre: 'Surval' },
|
|
1263
|
+
],
|
|
1264
|
+
},
|
|
1265
|
+
},
|
|
1266
|
+
cl_topic: [{ key: 'oceans', default: 'Océans', langfre: 'Océans' }],
|
|
1267
|
+
resolutionScaleDenominator: ['5000'],
|
|
1268
|
+
MD_ConstraintsUseLimitationObject: [
|
|
1269
|
+
{
|
|
1270
|
+
default: 'Restriction lié à l’exercice du droit moral',
|
|
1271
|
+
langfre: 'Restriction lié à l’exercice du droit moral',
|
|
1272
|
+
langger:
|
|
1273
|
+
'Einschränkung im Zusammenhang mit der Ausübung moralischer Rechte',
|
|
1274
|
+
},
|
|
1275
|
+
],
|
|
1276
|
+
geom: {
|
|
1277
|
+
type: 'Polygon',
|
|
1278
|
+
coordinates: [
|
|
1279
|
+
[
|
|
1280
|
+
[-180.0, -70.0],
|
|
1281
|
+
[180.0, -70.0],
|
|
1282
|
+
[180.0, 70.0],
|
|
1283
|
+
[-180.0, 70.0],
|
|
1284
|
+
[-180.0, -70.0],
|
|
1285
|
+
],
|
|
1286
|
+
],
|
|
1287
|
+
},
|
|
1288
|
+
location: '0,0',
|
|
1289
|
+
resourceTemporalExtentDateRange: [
|
|
1290
|
+
{ gte: '1974-01-01T00:00:00.000Z' },
|
|
1291
|
+
],
|
|
1292
|
+
coordinateSystem: ['WGS 84 (EPSG:4326)'],
|
|
1293
|
+
crsDetails: [
|
|
1294
|
+
{
|
|
1295
|
+
code: 'WGS 84 (EPSG:4326)',
|
|
1296
|
+
codeSpace: 'EPSG',
|
|
1297
|
+
name: 'WGS 84 (EPSG:4326)',
|
|
1298
|
+
url: '',
|
|
1299
|
+
},
|
|
1300
|
+
],
|
|
1301
|
+
specificationConformance: [
|
|
1302
|
+
{
|
|
1303
|
+
title: 'Inspire specifications',
|
|
1304
|
+
date: '2012-01-16',
|
|
1305
|
+
explanation: 'Non évalué',
|
|
1306
|
+
pass: 'false',
|
|
1307
|
+
},
|
|
1308
|
+
],
|
|
1309
|
+
lineageObject: {
|
|
1310
|
+
default:
|
|
1311
|
+
'Les données sont bancarisées dans la base de données Quadrige.',
|
|
1312
|
+
langfre:
|
|
1313
|
+
'Les données sont bancarisées dans la base de données Quadrige.',
|
|
1314
|
+
},
|
|
1315
|
+
format: [''],
|
|
1316
|
+
linkUrl: [
|
|
1317
|
+
'https://wwz.ifremer.fr/envlit/Quadrige-la-base-de-donnees',
|
|
1318
|
+
'https://wwz.ifremer.fr/envlit/Surveillance-du-littoral',
|
|
1319
|
+
'http://archimer.ifremer.fr/doc/00409/52016/',
|
|
1320
|
+
'http://www.ifremer.fr/services/wms/surveillance_littorale',
|
|
1321
|
+
'http://www.ifremer.fr/services/wfs/surveillance_littorale',
|
|
1322
|
+
'https://www.ifremer.fr/services/wps3/surval',
|
|
1323
|
+
'http://www.ifremer.fr/services/wms/surveillance_littorale',
|
|
1324
|
+
'http://www.ifremer.fr/services/wfs/surveillance_littorale',
|
|
1325
|
+
'https://www.ifremer.fr/services/wps3/surval',
|
|
1326
|
+
'http://www.ifremer.fr/services/wms/surveillance_littorale',
|
|
1327
|
+
'http://www.ifremer.fr/services/wfs/surveillance_littorale',
|
|
1328
|
+
'https://www.ifremer.fr/services/wps3/surval',
|
|
1329
|
+
'https://doi.org/10.12770/cf5048f6-5bbf-4e44-ba74-e6f429af51ea',
|
|
1330
|
+
],
|
|
1331
|
+
linkProtocol: [
|
|
1332
|
+
'WWW:LINK',
|
|
1333
|
+
'WWW:LINK-1.0-http--link',
|
|
1334
|
+
'WWW:LINK',
|
|
1335
|
+
'OGC:WMS',
|
|
1336
|
+
'OGC:WFS',
|
|
1337
|
+
'OGC:WPS',
|
|
1338
|
+
'OGC:WMS',
|
|
1339
|
+
'OGC:WFS',
|
|
1340
|
+
'OGC:WPS',
|
|
1341
|
+
'OGC:WMS',
|
|
1342
|
+
'OGC:WFS',
|
|
1343
|
+
'OGC:WPS',
|
|
1344
|
+
'WWW:LINK-1.0-http--metadata-URL',
|
|
1345
|
+
],
|
|
1346
|
+
linkUrlProtocolWWWLINK: [
|
|
1347
|
+
'https://wwz.ifremer.fr/envlit/Quadrige-la-base-de-donnees',
|
|
1348
|
+
'http://archimer.ifremer.fr/doc/00409/52016/',
|
|
1349
|
+
],
|
|
1350
|
+
link: [
|
|
1351
|
+
{
|
|
1352
|
+
protocol: 'WWW:LINK',
|
|
1353
|
+
url: 'https://wwz.ifremer.fr/envlit/Quadrige-la-base-de-donnees',
|
|
1354
|
+
name: 'La base de données Quadrige',
|
|
1355
|
+
description: '',
|
|
1356
|
+
function: '',
|
|
1357
|
+
applicationProfile: '',
|
|
1358
|
+
group: 0,
|
|
1359
|
+
},
|
|
1360
|
+
{
|
|
1361
|
+
protocol: 'WWW:LINK-1.0-http--link',
|
|
1362
|
+
url: 'https://wwz.ifremer.fr/envlit/Surveillance-du-littoral',
|
|
1363
|
+
name: 'La surveillance du milieu marin et côtier',
|
|
1364
|
+
description: '',
|
|
1365
|
+
function: '',
|
|
1366
|
+
applicationProfile: '',
|
|
1367
|
+
group: 0,
|
|
1368
|
+
},
|
|
1369
|
+
{
|
|
1370
|
+
protocol: 'WWW:LINK',
|
|
1371
|
+
url: 'http://archimer.ifremer.fr/doc/00409/52016/',
|
|
1372
|
+
name: 'Manuel pour l’utilisation des données REPHY',
|
|
1373
|
+
description:
|
|
1374
|
+
'Manuel pour l’utilisation des données REPHY. Informations destinées à améliorer la compréhension des fichiers de données REPHY mis à disposition des scientifiques et du public. ODE/VIGIES/17-15. Ifremer, ODE/VIGIES, Coordination REPHY & Cellule Quadrige (2017).',
|
|
1375
|
+
function: '',
|
|
1376
|
+
applicationProfile: '',
|
|
1377
|
+
group: 1,
|
|
1378
|
+
},
|
|
1379
|
+
{
|
|
1380
|
+
protocol: 'OGC:WMS',
|
|
1381
|
+
url: 'http://www.ifremer.fr/services/wms/surveillance_littorale',
|
|
1382
|
+
name: 'surval_parametre_point',
|
|
1383
|
+
description: 'Lieu de surveillance (point)',
|
|
1384
|
+
function: '',
|
|
1385
|
+
applicationProfile: '',
|
|
1386
|
+
group: 2,
|
|
1387
|
+
},
|
|
1388
|
+
{
|
|
1389
|
+
protocol: 'OGC:WFS',
|
|
1390
|
+
url: 'http://www.ifremer.fr/services/wfs/surveillance_littorale',
|
|
1391
|
+
name: 'surval_parametre_point',
|
|
1392
|
+
description: 'Lieu de surveillance (point)',
|
|
1393
|
+
function: '',
|
|
1394
|
+
applicationProfile:
|
|
1395
|
+
'{\n\t\t\t\t\t\t\t"tokenizedFields":{\n\t\t\t\t\t\t\t "THEME":";",\n\t\t\t\t\t\t\t\t"PROGRAMME":";",\n\t\t\t\t\t\t\t\t"PARAMETRE":";"\n\t\t\t\t\t\t\t},\t\t\t\n\t\t\t\t\t\t\t"fields":[\n\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t"name":"THEME",\n\t\t\t\t\t\t\t\t\t"label":{\n\t\t\t\t\t\t\t\t\t\t"fr":"Thème",\n\t\t\t\t\t\t\t\t\t\t"en":"Thème"\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t},{\n\t\t\t\t\t\t\t\t "name":"PROGRAMME",\n\t\t\t\t\t\t\t\t\t"label":{\n\t\t\t\t\t\t\t\t\t\t"fr":"Programme de suivi",\n\t\t\t\t\t\t\t\t\t\t"en":"Programme de suivi"\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t},{\n\t\t\t\t\t\t\t\t\t"name":"PARAMETRE",\n\t\t\t\t\t\t\t\t\t"label":{\n\t\t\t\t\t\t\t\t\t\t"fr":"Paramètre",\n\t\t\t\t\t\t\t\t\t\t"en":"Paramètre"\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t},{\n\t\t\t\t\t\t\t\t\t"name": "range_Date",\n\t\t\t\t\t\t\t\t\t"type": "rangeDate",\n\t\t\t\t\t\t\t\t\t"minField": "DATEMIN",\n\t\t\t\t\t\t\t\t\t"maxField": "DATEMAX",\n\t\t\t\t\t\t\t\t\t"label":{\n\t\t\t\t\t\t\t\t\t\t"fr":"Date",\n\t\t\t\t\t\t\t\t\t\t"en":"Date"\n\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t"display": "graph"\n\t\t\t\t\t\t\t\t},{\n\t\t\t\t\t\t\t\t\t"name":"LIEU_LIBELLE",\n\t\t\t\t\t\t\t\t\t"label":{\n\t\t\t\t\t\t\t\t\t\t"fr":"Lieu",\n\t\t\t\t\t\t\t\t\t\t"en":"Lieu"\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t},{\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t"name":"QUADRIGE_ZONEMARINE",\n\t\t\t\t\t\t\t\t\t"label":{\n\t\t\t\t\t\t\t\t\t\t"fr":"Zone marine Quadrige",\n\t\t\t\t\t\t\t\t\t\t"en":"Zone marine Quadrige"\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t},{\n\t\t\t\t\t\t\t\t\t"name":"DCSMM_SOUS_REGION",\n\t\t\t\t\t\t\t\t\t"label":{\n\t\t\t\t\t\t\t\t\t\t"fr":"Sous-région marine DCSMM",\n\t\t\t\t\t\t\t\t\t\t"en":"Sous-région marine DCSMM"\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t},{\n\t\t\t\t\t\t\t\t\t"name":"DCE_MASSE_EAU",\n\t\t\t\t\t\t\t\t\t"label":{\n\t\t\t\t\t\t\t\t\t\t"fr":"Masse d’eau DCE",\n\t\t\t\t\t\t\t\t\t\t"en":"Masse d’eau DCE"\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t},{\n\t\t\t\t\t\t\t\t\t"name":"GRAPHES", \n\t\t\t\t\t\t\t\t\t"hidden": true,\n\t\t\t\t\t\t\t\t\t"suffix":"from=${filtre_range_Date.from}&to=${filtre_range_Date.to}&typeParam=${filtre_PARAMETRE}"\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t],\n\t\t\t\t\t\t\t"treeFields": [\n\t\t\t\t\t\t\t\t"PARAMETRE"\n\t\t\t\t\t\t\t]}',
|
|
1396
|
+
group: 2,
|
|
1397
|
+
},
|
|
1398
|
+
{
|
|
1399
|
+
protocol: 'OGC:WPS',
|
|
1400
|
+
url: 'https://www.ifremer.fr/services/wps3/surval',
|
|
1401
|
+
name: 'r:survalextraction30140',
|
|
1402
|
+
description: "Extraction des données d'observation",
|
|
1403
|
+
function: '',
|
|
1404
|
+
applicationProfile:
|
|
1405
|
+
'{\n "inputs":[\n {\n "identifier":"theme",\n "linkedWfsFilter":"THEME",\n "hidden": true,\n "tokenizeWfsFilterValues": true,\n "wfsFilterValuesDelimiter": ";"\t\t \n }, {\n "identifier":"programme_suivi",\n "linkedWfsFilter":"PROGRAMME",\n "hidden": true,\n "tokenizeWfsFilterValues": true,\n "wfsFilterValuesDelimiter": ";"\t\t \n },\n {\n "identifier":"parametres",\n "linkedWfsFilter":"PARAMETRE",\n "hidden": true,\n "tokenizeWfsFilterValues": true,\n "wfsFilterValuesDelimiter": ";"\n },\n {\n "identifier":"date_min",\n "linkedWfsFilter":"range_Date.from",\n "hidden": true\n },\n {\n "identifier":"date_max",\n "linkedWfsFilter":"range_Date.to",\n "hidden": true\n },\n {\n "identifier":"zone_marine_quadrige",\n "linkedWfsFilter":"ZONE_MARINE_QUADRIGE",\n "hidden": true,\n "tokenizeWfsFilterValues": true,\n "wfsFilterValuesDelimiter": ";"\t\t \n },\n {\n "identifier":"sous_region_marine_dcsmm",\n "linkedWfsFilter":"SOUS_REGION_MARINE_DCSMM",\n "hidden": true,\n "tokenizeWfsFilterValues": true,\n "wfsFilterValuesDelimiter": ";"\t\t \n },\n {\n "identifier":"masse_eau_dce",\n "linkedWfsFilter":"MASSE_EAU_DCE",\n "hidden": true,\n "tokenizeWfsFilterValues": true,\n "wfsFilterValuesDelimiter": ";"\t\t \n },\n {\n "identifier":"supports_niveaux_prelevement",\n "hidden": true\n },\n {\n "identifier":"taxon",\n "hidden": true\n },\n {\n "identifier":"taxon_group",\n "hidden": true\n }, \n {\n "identifier":"entity_id",\n "hidden": true\t\t \n },\n {\n "identifier":"entity_label",\n "linkedWfsFilter":"LIEU_LIBELLE",\n "hidden": true,\n "tokenizeWfsFilterValues": true,\n "wfsFilterValuesDelimiter": ";"\t\t \n },\t \n {\n "identifier":"limits",\n "linkedWfsFilter":"geometry",\n "hidden": true\n },\n {\n "identifier":"geometry_type",\n "defaultValue":"POINT",\n "hidden": true\n } \n ]\n }',
|
|
1406
|
+
group: 2,
|
|
1407
|
+
},
|
|
1408
|
+
{
|
|
1409
|
+
protocol: 'OGC:WMS',
|
|
1410
|
+
url: 'http://www.ifremer.fr/services/wms/surveillance_littorale',
|
|
1411
|
+
name: 'surval_parametre_ligne',
|
|
1412
|
+
description: 'Lieu de surveillance (ligne)',
|
|
1413
|
+
function: '',
|
|
1414
|
+
applicationProfile: '',
|
|
1415
|
+
group: 3,
|
|
1416
|
+
},
|
|
1417
|
+
{
|
|
1418
|
+
protocol: 'OGC:WFS',
|
|
1419
|
+
url: 'http://www.ifremer.fr/services/wfs/surveillance_littorale',
|
|
1420
|
+
name: 'surval_parametre_ligne',
|
|
1421
|
+
description: 'Lieu de surveillance (ligne)',
|
|
1422
|
+
function: '',
|
|
1423
|
+
applicationProfile:
|
|
1424
|
+
'{\n\t\t\t\t\t\t\t"tokenizedFields":{\n\t\t\t\t\t\t\t "THEME":";",\n\t\t\t\t\t\t\t\t"PROGRAMME":";",\n\t\t\t\t\t\t\t\t"PARAMETRE":";"\n\t\t\t\t\t\t\t},\t\t\t\n\t\t\t\t\t\t\t"fields":[\n\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t"name":"THEME",\n\t\t\t\t\t\t\t\t\t"label":{\n\t\t\t\t\t\t\t\t\t\t"fr":"Thème",\n\t\t\t\t\t\t\t\t\t\t"en":"Thème"\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t},{\n\t\t\t\t\t\t\t\t "name":"PROGRAMME",\n\t\t\t\t\t\t\t\t\t"label":{\n\t\t\t\t\t\t\t\t\t\t"fr":"Programme de suivi",\n\t\t\t\t\t\t\t\t\t\t"en":"Programme de suivi"\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t},{\n\t\t\t\t\t\t\t\t\t"name":"PARAMETRE",\n\t\t\t\t\t\t\t\t\t"label":{\n\t\t\t\t\t\t\t\t\t\t"fr":"Paramètre",\n\t\t\t\t\t\t\t\t\t\t"en":"Paramètre"\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t},{\n\t\t\t\t\t\t\t\t\t"name": "range_Date",\n\t\t\t\t\t\t\t\t\t"type": "rangeDate",\n\t\t\t\t\t\t\t\t\t"minField": "DATEMIN",\n\t\t\t\t\t\t\t\t\t"maxField": "DATEMAX",\n\t\t\t\t\t\t\t\t\t"label":{\n\t\t\t\t\t\t\t\t\t\t"fr":"Date",\n\t\t\t\t\t\t\t\t\t\t"en":"Date"\n\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t"display": "graph"\n\t\t\t\t\t\t\t\t},{\n\t\t\t\t\t\t\t\t\t"name":"LIEU_LIBELLE",\n\t\t\t\t\t\t\t\t\t"label":{\n\t\t\t\t\t\t\t\t\t\t"fr":"Lieu",\n\t\t\t\t\t\t\t\t\t\t"en":"Lieu"\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t},{\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t"name":"QUADRIGE_ZONEMARINE",\n\t\t\t\t\t\t\t\t\t"label":{\n\t\t\t\t\t\t\t\t\t\t"fr":"Zone marine Quadrige",\n\t\t\t\t\t\t\t\t\t\t"en":"Zone marine Quadrige"\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t},{\n\t\t\t\t\t\t\t\t\t"name":"DCSMM_SOUS_REGION",\n\t\t\t\t\t\t\t\t\t"label":{\n\t\t\t\t\t\t\t\t\t\t"fr":"Sous-région marine DCSMM",\n\t\t\t\t\t\t\t\t\t\t"en":"Sous-région marine DCSMM"\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t},{\n\t\t\t\t\t\t\t\t\t"name":"DCE_MASSE_EAU",\n\t\t\t\t\t\t\t\t\t"label":{\n\t\t\t\t\t\t\t\t\t\t"fr":"Masse d’eau DCE",\n\t\t\t\t\t\t\t\t\t\t"en":"Masse d’eau DCE"\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t},{\n\t\t\t\t\t\t\t\t\t"name":"GRAPHES", \n\t\t\t\t\t\t\t\t\t"hidden": true,\n\t\t\t\t\t\t\t\t\t"suffix":"from=${filtre_range_Date.from}&to=${filtre_range_Date.to}&typeParam=${filtre_PARAMETRE}"\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t],\n\t\t\t\t\t\t\t"treeFields": [\n\t\t\t\t\t\t\t\t"PARAMETRE"\n\t\t\t\t\t\t\t]}',
|
|
1425
|
+
group: 3,
|
|
1426
|
+
},
|
|
1427
|
+
{
|
|
1428
|
+
protocol: 'OGC:WPS',
|
|
1429
|
+
url: 'https://www.ifremer.fr/services/wps3/surval',
|
|
1430
|
+
name: 'r:survalextraction30140',
|
|
1431
|
+
description: "Extraction des données d'observation",
|
|
1432
|
+
function: '',
|
|
1433
|
+
applicationProfile:
|
|
1434
|
+
'{\n "inputs":[\n {\n "identifier":"theme",\n "linkedWfsFilter":"THEME",\n "hidden": true,\n "tokenizeWfsFilterValues": true,\n "wfsFilterValuesDelimiter": ";"\t\t \n }, {\n "identifier":"programme_suivi",\n "linkedWfsFilter":"PROGRAMME",\n "hidden": true,\n "tokenizeWfsFilterValues": true,\n "wfsFilterValuesDelimiter": ";"\t\t \n },\n {\n "identifier":"parametres",\n "linkedWfsFilter":"PARAMETRE",\n "hidden": true,\n "tokenizeWfsFilterValues": true,\n "wfsFilterValuesDelimiter": ";"\n },\n {\n "identifier":"date_min",\n "linkedWfsFilter":"range_Date.from",\n "hidden": true\n },\n {\n "identifier":"date_max",\n "linkedWfsFilter":"range_Date.to",\n "hidden": true\n },\n {\n "identifier":"zone_marine_quadrige",\n "linkedWfsFilter":"ZONE_MARINE_QUADRIGE",\n "hidden": true,\n "tokenizeWfsFilterValues": true,\n "wfsFilterValuesDelimiter": ";"\t\t \n },\n {\n "identifier":"sous_region_marine_dcsmm",\n "linkedWfsFilter":"SOUS_REGION_MARINE_DCSMM",\n "hidden": true,\n "tokenizeWfsFilterValues": true,\n "wfsFilterValuesDelimiter": ";"\t\t \n },\n {\n "identifier":"masse_eau_dce",\n "linkedWfsFilter":"MASSE_EAU_DCE",\n "hidden": true,\n "tokenizeWfsFilterValues": true,\n "wfsFilterValuesDelimiter": ";"\t\t \n },\n {\n "identifier":"supports_niveaux_prelevement",\n "hidden": true\n },\n {\n "identifier":"taxon",\n "hidden": true\n },\n {\n "identifier":"taxon_group",\n "hidden": true\n }, \n {\n "identifier":"entity_id",\n "hidden": true\t\t \n },\n {\n "identifier":"entity_label",\n "linkedWfsFilter":"LIEU_LIBELLE",\n "hidden": true,\n "tokenizeWfsFilterValues": true,\n "wfsFilterValuesDelimiter": ";"\t\t \n },\t \n {\n "identifier":"limits",\n "linkedWfsFilter":"geometry",\n "hidden": true\n },\n {\n "identifier":"geometry_type",\n "defaultValue":"LINE",\n "hidden": true\n } \n ]\n }',
|
|
1435
|
+
group: 3,
|
|
1436
|
+
},
|
|
1437
|
+
{
|
|
1438
|
+
protocol: 'OGC:WMS',
|
|
1439
|
+
url: 'http://www.ifremer.fr/services/wms/surveillance_littorale',
|
|
1440
|
+
name: 'surval_parametre_polygone',
|
|
1441
|
+
description: 'Lieu de surveillance (polygone)',
|
|
1442
|
+
function: '',
|
|
1443
|
+
applicationProfile: '',
|
|
1444
|
+
group: 4,
|
|
1445
|
+
},
|
|
1446
|
+
{
|
|
1447
|
+
protocol: 'OGC:WFS',
|
|
1448
|
+
url: 'http://www.ifremer.fr/services/wfs/surveillance_littorale',
|
|
1449
|
+
name: 'surval_parametre_polygone',
|
|
1450
|
+
description: 'Lieu de surveillance (polygone)',
|
|
1451
|
+
function: '',
|
|
1452
|
+
applicationProfile:
|
|
1453
|
+
'{\n\t\t\t\t\t\t\t"tokenizedFields":{\n\t\t\t\t\t\t\t "THEME":";",\n\t\t\t\t\t\t\t\t"PROGRAMME":";",\n\t\t\t\t\t\t\t\t"PARAMETRE":";"\n\t\t\t\t\t\t\t},\t\t\t\n\t\t\t\t\t\t\t"fields":[\n\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t"name":"THEME",\n\t\t\t\t\t\t\t\t\t"label":{\n\t\t\t\t\t\t\t\t\t\t"fr":"Thème",\n\t\t\t\t\t\t\t\t\t\t"en":"Thème"\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t},{\n\t\t\t\t\t\t\t\t "name":"PROGRAMME",\n\t\t\t\t\t\t\t\t\t"label":{\n\t\t\t\t\t\t\t\t\t\t"fr":"Programme de suivi",\n\t\t\t\t\t\t\t\t\t\t"en":"Programme de suivi"\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t},{\n\t\t\t\t\t\t\t\t\t"name":"PARAMETRE",\n\t\t\t\t\t\t\t\t\t"label":{\n\t\t\t\t\t\t\t\t\t\t"fr":"Paramètre",\n\t\t\t\t\t\t\t\t\t\t"en":"Paramètre"\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t},{\n\t\t\t\t\t\t\t\t\t"name": "range_Date",\n\t\t\t\t\t\t\t\t\t"type": "rangeDate",\n\t\t\t\t\t\t\t\t\t"minField": "DATEMIN",\n\t\t\t\t\t\t\t\t\t"maxField": "DATEMAX",\n\t\t\t\t\t\t\t\t\t"label":{\n\t\t\t\t\t\t\t\t\t\t"fr":"Date",\n\t\t\t\t\t\t\t\t\t\t"en":"Date"\n\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t"display": "graph"\n\t\t\t\t\t\t\t\t},{\n\t\t\t\t\t\t\t\t\t"name":"LIEU_LIBELLE",\n\t\t\t\t\t\t\t\t\t"label":{\n\t\t\t\t\t\t\t\t\t\t"fr":"Lieu",\n\t\t\t\t\t\t\t\t\t\t"en":"Lieu"\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t},{\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t"name":"QUADRIGE_ZONEMARINE",\n\t\t\t\t\t\t\t\t\t"label":{\n\t\t\t\t\t\t\t\t\t\t"fr":"Zone marine Quadrige",\n\t\t\t\t\t\t\t\t\t\t"en":"Zone marine Quadrige"\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t},{\n\t\t\t\t\t\t\t\t\t"name":"DCSMM_SOUS_REGION",\n\t\t\t\t\t\t\t\t\t"label":{\n\t\t\t\t\t\t\t\t\t\t"fr":"Sous-région marine DCSMM",\n\t\t\t\t\t\t\t\t\t\t"en":"Sous-région marine DCSMM"\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t},{\n\t\t\t\t\t\t\t\t\t"name":"DCE_MASSE_EAU",\n\t\t\t\t\t\t\t\t\t"label":{\n\t\t\t\t\t\t\t\t\t\t"fr":"Masse d’eau DCE",\n\t\t\t\t\t\t\t\t\t\t"en":"Masse d’eau DCE"\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t},{\n\t\t\t\t\t\t\t\t\t"name":"GRAPHES", \n\t\t\t\t\t\t\t\t\t"hidden": true,\n\t\t\t\t\t\t\t\t\t"suffix":"from=${filtre_range_Date.from}&to=${filtre_range_Date.to}&typeParam=${filtre_PARAMETRE}"\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t],\n\t\t\t\t\t\t\t"treeFields": [\n\t\t\t\t\t\t\t\t"PARAMETRE"\n\t\t\t\t\t\t\t]}',
|
|
1454
|
+
group: 4,
|
|
1455
|
+
},
|
|
1456
|
+
{
|
|
1457
|
+
protocol: 'OGC:WPS',
|
|
1458
|
+
url: 'https://www.ifremer.fr/services/wps3/surval',
|
|
1459
|
+
name: 'r:survalextraction30140',
|
|
1460
|
+
description: "Extraction des données d'observation",
|
|
1461
|
+
function: '',
|
|
1462
|
+
applicationProfile:
|
|
1463
|
+
'{\n "inputs":[\n {\n "identifier":"theme",\n "linkedWfsFilter":"THEME",\n "hidden": true,\n "tokenizeWfsFilterValues": true,\n "wfsFilterValuesDelimiter": ";"\t\t \n }, {\n "identifier":"programme_suivi",\n "linkedWfsFilter":"PROGRAMME",\n "hidden": true,\n "tokenizeWfsFilterValues": true,\n "wfsFilterValuesDelimiter": ";"\t\t \n },\n {\n "identifier":"parametres",\n "linkedWfsFilter":"PARAMETRE",\n "hidden": true,\n "tokenizeWfsFilterValues": true,\n "wfsFilterValuesDelimiter": ";"\n },\n {\n "identifier":"date_min",\n "linkedWfsFilter":"range_Date.from",\n "hidden": true\n },\n {\n "identifier":"date_max",\n "linkedWfsFilter":"range_Date.to",\n "hidden": true\n },\n {\n "identifier":"zone_marine_quadrige",\n "linkedWfsFilter":"ZONE_MARINE_QUADRIGE",\n "hidden": true,\n "tokenizeWfsFilterValues": true,\n "wfsFilterValuesDelimiter": ";"\t\t \n },\n {\n "identifier":"sous_region_marine_dcsmm",\n "linkedWfsFilter":"SOUS_REGION_MARINE_DCSMM",\n "hidden": true,\n "tokenizeWfsFilterValues": true,\n "wfsFilterValuesDelimiter": ";"\t\t \n },\n {\n "identifier":"masse_eau_dce",\n "linkedWfsFilter":"MASSE_EAU_DCE",\n "hidden": true,\n "tokenizeWfsFilterValues": true,\n "wfsFilterValuesDelimiter": ";"\t\t \n },\n {\n "identifier":"supports_niveaux_prelevement",\n "hidden": true\n },\n {\n "identifier":"taxon",\n "hidden": true\n },\n {\n "identifier":"taxon_group",\n "hidden": true\n }, \n {\n "identifier":"entity_id",\n "hidden": true\t\t \n },\n {\n "identifier":"entity_label",\n "linkedWfsFilter":"LIEU_LIBELLE",\n "hidden": true,\n "tokenizeWfsFilterValues": true,\n "wfsFilterValuesDelimiter": ";"\t\t \n },\t \n {\n "identifier":"limits",\n "linkedWfsFilter":"geometry",\n "hidden": true\n },\n {\n "identifier":"geometry_type",\n "defaultValue":"AREA",\n "hidden": true\n } \n ]\n }',
|
|
1464
|
+
group: 4,
|
|
1465
|
+
},
|
|
1466
|
+
{
|
|
1467
|
+
protocol: 'WWW:LINK-1.0-http--metadata-URL',
|
|
1468
|
+
url: 'https://doi.org/10.12770/cf5048f6-5bbf-4e44-ba74-e6f429af51ea',
|
|
1469
|
+
name: 'DOI du jeu de données',
|
|
1470
|
+
description: 'DOI du jeu de données',
|
|
1471
|
+
function: '',
|
|
1472
|
+
applicationProfile: '',
|
|
1473
|
+
group: 5,
|
|
1474
|
+
},
|
|
1475
|
+
],
|
|
1476
|
+
linkUrlProtocolWWWLINK10httplink:
|
|
1477
|
+
'https://wwz.ifremer.fr/envlit/Surveillance-du-littoral',
|
|
1478
|
+
linkUrlProtocolOGCWMS: [
|
|
1479
|
+
'http://www.ifremer.fr/services/wms/surveillance_littorale',
|
|
1480
|
+
'http://www.ifremer.fr/services/wms/surveillance_littorale',
|
|
1481
|
+
'http://www.ifremer.fr/services/wms/surveillance_littorale',
|
|
1482
|
+
],
|
|
1483
|
+
linkUrlProtocolOGCWFS: [
|
|
1484
|
+
'http://www.ifremer.fr/services/wfs/surveillance_littorale',
|
|
1485
|
+
'http://www.ifremer.fr/services/wfs/surveillance_littorale',
|
|
1486
|
+
'http://www.ifremer.fr/services/wfs/surveillance_littorale',
|
|
1487
|
+
],
|
|
1488
|
+
linkUrlProtocolOGCWPS: [
|
|
1489
|
+
'https://www.ifremer.fr/services/wps3/surval',
|
|
1490
|
+
'https://www.ifremer.fr/services/wps3/surval',
|
|
1491
|
+
'https://www.ifremer.fr/services/wps3/surval',
|
|
1492
|
+
],
|
|
1493
|
+
linkUrlProtocolWWWLINK10httpmetadataURL:
|
|
1494
|
+
'https://doi.org/10.12770/cf5048f6-5bbf-4e44-ba74-e6f429af51ea',
|
|
1495
|
+
recordGroup: 'cf5048f6-5bbf-4e44-ba74-e6f429af51ea',
|
|
1496
|
+
isPublishedToAll: 'true',
|
|
1497
|
+
recordOwner: 'Test ADMIN',
|
|
1498
|
+
uuid: 'cf5048f6-5bbf-4e44-ba74-e6f429af51ea',
|
|
1499
|
+
displayOrder: '0',
|
|
1500
|
+
popularity: 2,
|
|
1501
|
+
userinfo: 'testadmin|ADMIN|Test|Administrator',
|
|
1502
|
+
record: 'record',
|
|
1503
|
+
draft: 'n',
|
|
1504
|
+
changeDate: '2021-10-05T12:48:57.678Z',
|
|
1505
|
+
id: '11700',
|
|
1506
|
+
createDate: '2021-10-05T12:48:57.678Z',
|
|
1507
|
+
owner: '100',
|
|
1508
|
+
groupOwner: '2',
|
|
1509
|
+
logo: '/images/logos/81e8a591-7815-4d2f-a7da-5673192e74c9.png',
|
|
1510
|
+
hasxlinks: 'false',
|
|
1511
|
+
groupPublished: ['sample', 'all'],
|
|
1512
|
+
featureOfRecord: 'record',
|
|
1513
|
+
extra: 'null',
|
|
1514
|
+
documentStandard: 'iso19139',
|
|
1515
|
+
valid: '-1',
|
|
1516
|
+
isTemplate: 'n',
|
|
1517
|
+
feedbackCount: '0',
|
|
1518
|
+
rating: '0',
|
|
1519
|
+
isHarvested: 'false',
|
|
1520
|
+
sourceCatalogue: '81e8a591-7815-4d2f-a7da-5673192e74c9',
|
|
1521
|
+
userSavedCount: '12',
|
|
1522
|
+
cl_function: [
|
|
1523
|
+
{
|
|
1524
|
+
key: 'download',
|
|
1525
|
+
default: 'Téléchargement',
|
|
1526
|
+
langfre: 'Téléchargement',
|
|
1527
|
+
link: 'http://standards.iso.org/iso/19139/resources/gmxCodelists.xml#CI_OnLineFunctionCode',
|
|
1528
|
+
},
|
|
1529
|
+
],
|
|
1530
|
+
revisionDateForResource: ['2021-12-13T00:00:00.000Z'],
|
|
1531
|
+
revisionYearForResource: '2021',
|
|
1532
|
+
revisionMonthForResource: '2021-12',
|
|
1533
|
+
MD_LegalConstraintsUseLimitationObject: [
|
|
1534
|
+
{
|
|
1535
|
+
default: "Restriction légale d'utilisation à préciser",
|
|
1536
|
+
langfre: "Restriction légale d'utilisation à préciser",
|
|
1537
|
+
},
|
|
1538
|
+
],
|
|
1539
|
+
MD_LegalConstraintsOtherConstraintsObject: [
|
|
1540
|
+
{
|
|
1541
|
+
default: 'Pas de restriction d’accès public',
|
|
1542
|
+
langfre: 'Pas de restriction d’accès public',
|
|
1543
|
+
link: 'http://inspire.ec.europa.eu/metadatacodelist/LimitationsOnPublicAccess/noLimitations',
|
|
1544
|
+
},
|
|
1545
|
+
{
|
|
1546
|
+
default:
|
|
1547
|
+
'Licence Ouverte version 2.0 https://www.etalab.gouv.fr/wp-content/uploads/2017/04/ETALAB-Licence-Ouverte-v2.0.pdf',
|
|
1548
|
+
langfre:
|
|
1549
|
+
'Licence Ouverte version 2.0 https://www.etalab.gouv.fr/wp-content/uploads/2017/04/ETALAB-Licence-Ouverte-v2.0.pdf',
|
|
1550
|
+
},
|
|
1551
|
+
],
|
|
1552
|
+
licenseObject: [
|
|
1553
|
+
{
|
|
1554
|
+
default: 'Pas de restriction d’accès public',
|
|
1555
|
+
langfre: 'Pas de restriction d’accès public',
|
|
1556
|
+
link: 'http://inspire.ec.europa.eu/metadatacodelist/LimitationsOnPublicAccess/noLimitations',
|
|
1557
|
+
},
|
|
1558
|
+
{
|
|
1559
|
+
default:
|
|
1560
|
+
'Licence Ouverte version 2.0 https://www.etalab.gouv.fr/wp-content/uploads/2017/04/ETALAB-Licence-Ouverte-v2.0.pdf',
|
|
1561
|
+
langfre:
|
|
1562
|
+
'Licence Ouverte version 2.0 https://www.etalab.gouv.fr/wp-content/uploads/2017/04/ETALAB-Licence-Ouverte-v2.0.pdf',
|
|
1563
|
+
},
|
|
1564
|
+
],
|
|
1565
|
+
extentDescriptionObject: [
|
|
1566
|
+
{
|
|
1567
|
+
default: 'Hauts-de-France (Région)',
|
|
1568
|
+
langfre: 'Hauts-de-France (Région)',
|
|
1569
|
+
},
|
|
1570
|
+
],
|
|
1571
|
+
valid_inspire: '-1',
|
|
1572
|
+
xlink: [
|
|
1573
|
+
'http://www.eionet.europa.eu/gemet/concept/6279',
|
|
1574
|
+
'http://geonetwork-opensource.org/gemet',
|
|
1575
|
+
'https://www.geo2france.fr/geonetwork/srv/api/registries/vocabularies/external.theme.gemet',
|
|
1576
|
+
'http://geonetwork-opensource.org/administrativeAreaFr#REG_32',
|
|
1577
|
+
'https://www.geo2france.fr/catalogue/administrativeEntities',
|
|
1578
|
+
'https://www.geo2france.fr/geonetwork/srv/api/registries/vocabularies/external.place.territoires',
|
|
1579
|
+
'http://inspire.ec.europa.eu/metadatacodelist/LimitationsOnPublicAccess/noLimitations',
|
|
1580
|
+
],
|
|
1581
|
+
},
|
|
1582
|
+
edit: false,
|
|
1583
|
+
owner: false,
|
|
1584
|
+
isPublishedToAll: true,
|
|
1585
|
+
view: true,
|
|
1586
|
+
notify: false,
|
|
1587
|
+
download: true,
|
|
1588
|
+
dynamic: true,
|
|
1589
|
+
featured: false,
|
|
1590
|
+
selected: false,
|
|
1591
|
+
},
|
|
1592
|
+
],
|
|
1593
|
+
},
|
|
1594
|
+
})
|