Hi,
I notice that in the CSW request the wrong result is due to the
<ogc:PropertyName>ows:BoundingBox</ogc:PropertyName>
Infact if I try this one request:
<?xml version="1.0" encoding="UTF-8"?>
<csw:GetRecords xmlns:csw="[http://www.opengis.net/cat/csw/2.0.2](http://www.opengis.net/cat/csw/2.0.2)" xmlns:ows="[http://www.opengis.net/ows](http://www.opengis.net/ows)" xmlns:xsi="[http://www.w3.org/2001/XMLSchema-instance](http://www.w3.org/2001/XMLSchema-instance)" maxRecords="10" outputFormat="application/xml" outputSchema="[http://www.opengis.net/cat/csw/2.0.2](http://www.opengis.net/cat/csw/2.0.2)" resultType="results" service="CSW" version="2.0.2" xsi:schemaLocation="[http://www.opengis.net/cat/csw/2.0.2](http://www.opengis.net/cat/csw/2.0.2) [http://schemas.opengis.net/csw/2.0.2/CSW-discovery.xsd](http://schemas.opengis.net/csw/2.0.2/CSW-discovery.xsd)">
<csw:Query typeNames="csw:Record">
<csw:ElementSetName>full</csw:ElementSetName>
<csw:Constraint version="1.1.0">
<ogc:Filter xmlns:ogc="[http://www.opengis.net/ogc](http://www.opengis.net/ogc)">
<ogc:BBOX>
<gml:Envelope xmlns:gml="[http://www.opengis.net/gml](http://www.opengis.net/gml)" >
<gml:lowerCorner>-180 -90</gml:lowerCorner>
<gml:upperCorner>180 90</gml:upperCorner>
</gml:Envelope>
</ogc:BBOX>
</ogc:Filter>
</csw:Constraint>
</csw:Query>
</csw:GetRecords>
I have the correct result (n.1 found).
So perhaps there is some change in GN 2.7.0 about the "ows:BoundingBox" ?
It is a deprecated tag or instead is an unwanted missing in the GN 2.7.0 ?
Many thx,