File tree Expand file tree Collapse file tree 1 file changed +4
-1
lines changed
python/plugins/MetaSearch/dialogs Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -456,6 +456,8 @@ def search(self):
456
456
self .timeout = self .spnTimeout .value ()
457
457
458
458
# bbox
459
+ # CRS is WGS84 with axis order longitude, latitude
460
+ # defined by 'urn:ogc:def:crs:OGC:1.3:CRS84'
459
461
minx = self .leWest .text ()
460
462
miny = self .leSouth .text ()
461
463
maxx = self .leEast .text ()
@@ -466,7 +468,8 @@ def search(self):
466
468
# even for a global bbox, if a spatial filter is applied, then
467
469
# the CSW server will skip records without a bbox
468
470
if bbox != ['-180' , '-90' , '180' , '90' ]:
469
- self .constraints .append (BBox (bbox ))
471
+ self .constraints .append (BBox (bbox ,
472
+ crs = 'urn:ogc:def:crs:OGC:1.3:CRS84' ))
470
473
471
474
# keywords
472
475
if self .leKeywords .text ():
You can’t perform that action at this time.
0 commit comments