From e2eddde1bd4511c458f96be38550482356edc776 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?I=C3=B1aki?= Date: Thu, 6 Jun 2019 08:35:58 +0200 Subject: [PATCH] Modifications in the ETS to solve the issue #184 The check that the CRS is one of those in the list is removed. --- data/interoperability-metadata/ets-md-iop-bsxets.xml | 5 ----- 1 file changed, 5 deletions(-) diff --git a/data/interoperability-metadata/ets-md-iop-bsxets.xml b/data/interoperability-metadata/ets-md-iop-bsxets.xml index 570f7b750..96fe591a5 100644 --- a/data/interoperability-metadata/ets-md-iop-bsxets.xml +++ b/data/interoperability-metadata/ets-md-iop-bsxets.xml @@ -87,8 +87,6 @@ Inspect the data set metadata whether metadata describing the coordinate referen NOT_APPLICABLE -let $crsuris := ( -'http://www.opengis.net/def/crs/EPSG/0/4936', 'http://www.opengis.net/def/crs/EPSG/0/4937', 'http://www.opengis.net/def/crs/EPSG/0/4258', 'http://www.opengis.net/def/crs/EPSG/0/3035', 'http://www.opengis.net/def/crs/EPSG/0/3034', 'http://www.opengis.net/def/crs/EPSG/0/3038', 'http://www.opengis.net/def/crs/EPSG/0/3039', 'http://www.opengis.net/def/crs/EPSG/0/3040', 'http://www.opengis.net/def/crs/EPSG/0/3041', 'http://www.opengis.net/def/crs/EPSG/0/3042', 'http://www.opengis.net/def/crs/EPSG/0/3043', 'http://www.opengis.net/def/crs/EPSG/0/3044', 'http://www.opengis.net/def/crs/EPSG/0/3045', 'http://www.opengis.net/def/crs/EPSG/0/3046', 'http://www.opengis.net/def/crs/EPSG/0/3047', 'http://www.opengis.net/def/crs/EPSG/0/3048', 'http://www.opengis.net/def/crs/EPSG/0/3049', 'http://www.opengis.net/def/crs/EPSG/0/3050', 'http://www.opengis.net/def/crs/EPSG/0/3051', 'http://www.opengis.net/def/crs/EPSG/0/5730', 'http://www.opengis.net/def/crs/EPSG/0/7409') let $levels := ('dataset', 'series') let $recordsToInspect := $records[gmd:hierarchyLevel/*/@codeListValue = $levels] let $messages := @@ -98,8 +96,6 @@ let $messages := return if (not($crs)) then local:addMessage('TR.noCoordinateReferenceSystem', map { 'filename': local:filename($record), 'id': $rid }) - else if (not($crs=$crsuris)) then - local:addMessage('TR.unknownCRS3', map { 'filename': local:filename($record), 'id': $rid, 'crs': string-join($crs, ',') }) else () )[position() le $limitErrors] return @@ -110,7 +106,6 @@ return -