INSPIREMetadataValidator
INSPIREMetadataValidator
R6Class
object.
Object of R6Class
for setting an INSPIREMetadataValidator
INSPIRE Reference Validator Web Service (https://inspire.ec.europa.eu/validator/swagger-ui.html)
geometa::geometaLogger
-> INSPIREMetadataValidator
url
url of the INSPIRE metadata validator
running
wether the service is up and running
new()
Method used to instantiate an INSPIRE Metadata validator. To check
metadata with the INSPIRE metadata validator, a user API key is now required,
and should be specified with the apiKey
. By default, the url
will be
the INSPIRE production service https://inspire.ec.europa.eu/validator/swagger-ui.html.
The keyring_backend
can be set to use a different backend for storing
the INSPIRE metadata validator API key with keyring (Default value is 'env').
INSPIREMetadataValidator$new(
url = "https://inspire.ec.europa.eu/validator/v2",
apiKey,
keyring_backend = "env"
)
uploadFile()
Uploads a file. Upload a XML metadata file to INSPIRE web-service. Method called internally through
getValidationReport
.
getValidationReport()
Get validation report for a metadata specified either as R object of class
ISOMetadata (from geometa package) or XMLInternalNode-class
(from XML package), or as XML file, providing the path of the XML file
to be sent to the INSPIRE metadata validator web-service. By default, a summary
report is returned. To append the raw response of INSPIRE validation web-service
to the summary report, set raw = TRUE
.
an object of class list
# \donttest{
apiKey <- ""
if(nzchar(apiKey)){
inspireValidator <- INSPIREMetadataValidator$new(apiKey = apiKey)
inspireReport <- inspireValidator$getValidationReport(obj = ISOMetadata$new())
}
# }