From 65a134ca47731b178901b4ca1ee3ba0066af1d98 Mon Sep 17 00:00:00 2001 From: Tom Kralidis Date: Tue, 29 Dec 2020 08:53:24 -0500 Subject: [PATCH] MetaSearch: update bbox CRS --- python/plugins/MetaSearch/dialogs/maindialog.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/python/plugins/MetaSearch/dialogs/maindialog.py b/python/plugins/MetaSearch/dialogs/maindialog.py index 1c3ccbf0313..ee4798a502f 100644 --- a/python/plugins/MetaSearch/dialogs/maindialog.py +++ b/python/plugins/MetaSearch/dialogs/maindialog.py @@ -469,8 +469,8 @@ class MetaSearchDialog(QDialog, BASE_CLASS): # even for a global bbox, if a spatial filter is applied, then # the CSW server will skip records without a bbox if bbox != ['-180', '-90', '180', '90']: - self.constraints.append(BBox(bbox, - crs='urn:ogc:def:crs:OGC:1.3:CRS84')) + self.constraints.append(BBox([miny, minx, maxy, maxx], + crs='urn:ogc:def:crs:EPSG::4326')) # keywords if self.leKeywords.text():