Solved

Issue with FeatureCollection in INSPIRE GML

  • 27 July 2017
  • 2 replies
  • 45 views

Userlevel 2
Badge +19

Good morning.

This week has been released the new INSPIRE validator:

http://inspire-sandbox.jrc.ec.europa.eu/validator

This tool allows you to validate a GML file.

I have several GML that I got using the INSPIRE GML writer in FME. To validate them, I just checked them against the XSD provided by INSPIRE. That validation was always OK.

But with the new validator I'm getting this error:

cvc-elt.1.a: Cannot find the declaration of element 'gml:FeatureCollection'.

I have attached a sample of my GML. There is a FeatureCollection tag...

Does anyone know if I have to change something of the INSPIRE GML writer to build a proper FeatureCollection?

Thanks!

icon

Best answer by lars_de_vries 27 July 2017, 13:12

View original

2 replies

Badge +3

Hi @oscard,

it could be an error in the GML, in the Writer and in the Validator.

You should have a look in the XSD to see whether the FeatureCollection tag is declared there. If it is declared, it might be an error in the Validator. If not, there might be a problem in the Writer.

Hope this helps.

Userlevel 2
Badge +19

Hi @oscard, 

it could be an error in the GML, in the Writer and in the Validator. 

You should have a look in the XSD to see whether the FeatureCollection tag is declared there. If it is declared, it might be an error in the Validator. If not, there might be a problem in the Writer. 

Hope this helps.

I needed to add more elements to the schemeLocation URL parameter of the writer:

 

 

http://www.opengis.net/wfs/2.0 http://schemas.opengis.net/wfs/2.0/wfs.xsd http://www.opengis.net/gml/3.2 http://schemas.opengis.net/gml/3.2.1/gml.xsd http://inspire.ec.europa.eu/schemas/cp/4.0 http://inspire.ec.europa.eu/schemas/cp/4.0/CadastralParcels.xsd

 

With that, the new validator gives the OK to my files.

 

Thanks for your answer. It took me to the right path.

 

Reply