Is it possible to import WFS 2.0 feeds to create content on Wemap?

Your data is only available as a WFS 2.0 feed? Note that it is possible to add attributes and create URLs compatible with our JSON connector.


  1. List the different information layers available in your feed.

WFS feeds group together multiple data layers that you must split to retrieve them one by one and create corresponding point lists.


Using the query request=getCapabilities&service=wfs you can list and determine the names of the different data layers.


e.g.: https://ows.region-bretagne.fr/geoserver/rb/wfs?request=getCapabilities&service=wfs



  1. Build the URL to extract data layer by layer in JSON format

Modify your URL:

  • specify the format to use, here JSON (request=GetFeature&service=wfs&outputFormat=application/json)
  • indicate the layer name (TYPENAME=) that you want to extract.

E.g.: https://ows.region-bretagne.fr/geoserver/rb/wfs?request=getCapabilities&service=wfs

https://ows.region-bretagne.fr/geoserver/rb/wfs?request=GetFeature&service=wfs&outputFormat=application/json&TYPENAME=rb:site_region_accessibilite

Did this answer your question? Thanks for the feedback There was a problem submitting your feedback. Please try again later.