I am trying to filter out data from a WMS Service by the value of a certain attribute. Here is the WMS link: https://openmaps.gov.bc.ca/geo/pub/WHSE_LAND_AND_NATURAL_RESOURCE.PROT_CURRENT_FIRE_PNTS_SP/ows?SERVICE=WMS&REQUEST=GetCapabilities
Essentially, I am trying to filter out points with the value 'Out' for the 'Fire Status' Attribute and keep all other points with no changes. I have looked into SLD properties but I am not sure if there is an easier way of solving this problem.
You would probably be better fetching the data via a WFS (https://openmaps.gov.bc.ca/geo/pub/WHSE_LAND_AND_NATURAL_RESOURCE.PROT_CURRENT_FIRE_PNTS_SP/ows?SERVICE=wfs&REQUEST=GetCapabilities) and then using your client to filter the points as you want.
Alternatively, as it is a GeoServer you can use the vendor option to add a CQL_FILTER to the
getMap
request (CQL_FILTER=%22FIRE_STATUS%22%3C%3E%27Out%27
):which returns: