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 @@ -437,6 +437,8 @@ def search(self):
437
437
self .timeout = self .spnTimeout .value ()
438
438
439
439
# bbox
440
+ # CRS is WGS84 with axis order longitude, latitude
441
+ # defined by 'urn:ogc:def:crs:OGC:1.3:CRS84'
440
442
minx = self .leWest .text ()
441
443
miny = self .leSouth .text ()
442
444
maxx = self .leEast .text ()
@@ -447,7 +449,8 @@ def search(self):
447
449
# even for a global bbox, if a spatial filter is applied, then
448
450
# the CSW server will skip records without a bbox
449
451
if bbox != ['-180' , '-90' , '180' , '90' ]:
450
- self .constraints .append (BBox (bbox ))
452
+ self .constraints .append (BBox (bbox ,
453
+ crs = 'urn:ogc:def:crs:OGC:1.3:CRS84' ))
451
454
452
455
# keywords
453
456
if self .leKeywords .text ():
You can’t perform that action at this time.
0 commit comments