Questions tagged [web-feature-service]

The Open Geospatial Consortium Web Feature Service Interface Standard (WFS) provides an interface allowing requests for geographical features across the web using platform-independent calls.

The Open Geospatial Consortium Web Feature Service Interface Standard (WFS) provides an interface allowing requests for geographical features across the web using platform-independent calls.

Source: Wikipedia

48 questions
1
vote
0 answers

Display multiple WFS layers with popup

I want to display multiple WFS layers and display popup only for top layer. I wan't to disable all the base layer popup. Or if i wan't to display one features from all the layer (combine all layer features in one popup ).I have done some code but i…
1
vote
1 answer

GML layer is displying in changed rotation

I created GML WFS layer from Geo-server and using in Open Layer 3,but in output showing map rotations are changed .On my PC showing the GML but in fiddle doesn't showing output.Is there any mistake in my code . I want to create GML or GML2 format…
1
vote
0 answers

Geoserver Cross-layer filter in OpenLayers 2 for WFS protocol

I need to execute a spatial INTERSECTS query between layers of type Point and Polygon, to find points that intersect with a polygon of attribute fclass == park. CQL Query: INTERSECTS(geom,…
1
vote
1 answer

Adding Vector Data - GML format with WFS Transport (possible bug?)

I'm trying to add features to my OpenLayers map, by querying a publicly available WFS server which serves GML data. // initalize the map var map = new ol.Map({ layers: [ new ol.layer.Tile({ // OpenLayers public map server …
1
vote
1 answer

Leaflet Popup GetContent (Convert meters to feet)

I am creating an app using leaflet and I have near zero javascript experience so bear with me... I have the leaflet map up and running and have a web feature service containing USGS stream flow data however all of the information is in meters and I…
Judson
  • 53
  • 1
  • 1
  • 4
1
vote
1 answer

FeatureJSON using CompositeFeatureCollection

I'm making use of FeatureJSON from org.geotools:gt-geojson:15-SNAPSHOT dependency in a Maven project and I'm able to serve GeoJSON for instances of SimpleFeature and SimpleFeatureCollection without any problems. However I find myself wanting to…
Wolfgang
  • 145
  • 8
1
vote
1 answer

Converting Web Feature Service Geographical Markup Language data into a shape with R

I'm trying to convert Web Feature Service layers that are in XML/GML into a shapefile using R, I'm not quite there and would appreciate any help. The WFS link is:…
1
vote
1 answer

Insert transaction from demo does not work for me (docker kartoza)

I'm new to geoserver and I'm trying to understand the basics. So expect (I do) that I missed an obvious detail :-/. I have a problem with the Insert Transaction request in the Demos available in the geoserver web interface. Simply, it does not show…
MastroGeppetto
  • 538
  • 1
  • 5
  • 10
1
vote
1 answer

Using wfs-t in OpenLayers 3?

I'm using OpenLayers-3.6.0 in a web application. I have wfs layer as follow: var url="http://localhost:8080/geoserver/wfs?&" + "service=wfs&version=1.1.0&request=GetFeature&typeNames=usa:states"; var format = new ol.format.WFS({}); var source…
1
vote
1 answer

Add a WFS service in a Leaflet map and need to control the current scale

I need to load a WFS service (points) in my Leaflet map. I know how to load a WFS service in my map but I've to check dinamically the map current scale / extent because I've to limit the number of features I've to request to the server and to render…
Cesare
  • 1,367
  • 7
  • 25
  • 57
1
vote
2 answers

Geoserver: WFS does not return nodes for columns with null values

GeoServer 2.3 does not return an empty XML node for columns with null values. For example, this is a snippet taken from a WFS response to a CQL query:
Klaus Nji
  • 15,695
  • 23
  • 96
  • 171
1
vote
2 answers

Publishing geospatial data with Plone

I am setting up a new site on plone using collective.geo.bundle, but I need to make the data accessible to desktop GIS. Two obvious ways of doing this are to use a postgres/postgis database, or to publish the data through a WFS service. The…
aquavitae
  • 14,088
  • 7
  • 53
  • 99
0
votes
0 answers

Load big Wfs Layer in R

I´m trying to load the layer Mroad_Lden_17 of the WFS in R, but the layer Mroad_Lden_17 is with its 809559 features pretty big which is why loading it takes a long time and in the end isnt even successfull. To avoid this problem, e.g solve it I…
lunaz
  • 1
0
votes
0 answers

geotools wfs-ng thread safety and strange behaviour problem

I'm having a big trouble using geotools wfs-ng datastore plugin together with geoserver instance (geoserver is not a problem here, it's just a wfs implementation and provider of the data). Use case seems plain: custom web service that is sort of…
PiotrkS
  • 381
  • 3
  • 6
0
votes
0 answers

AGOL python web-tier authentication secured with PKI/CAC

I am using a python script to connect to an AGOL feature service layer, and update the layer. Right now, I use the following to access it: gis_url = "https://xxxx.maps.arcgis.com" #### Add your username and password gis_username =…