You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@sdap.apache.org by "Nga Chung (JIRA)" <ji...@apache.org> on 2018/03/07 21:50:00 UTC

[jira] [Created] (SDAP-39) Update data-access to query by bounding box when possible

Nga Chung created SDAP-39:
-----------------------------

             Summary: Update data-access to query by bounding box when possible
                 Key: SDAP-39
                 URL: https://issues.apache.org/jira/browse/SDAP-39
             Project: Apache Science Data Analytics Platform
          Issue Type: Improvement
            Reporter: Nga Chung


When querying for tiles by bounding box in Solr, use the bounding box as is rather than translating it to a polygon.

This query:

q=*:*&fq=dataset_s:MODIS_AQUA_AOD_500&fq=tile_min_time_dt:[2002-07-04T00:00:00Z+TO+2009-12-31T23:59:59Z]&fq=geo:[-90,-180+TO+90,180]

performs better than the equivalent:

q=*:*&fq=dataset_s:MODIS_AQUA_AOD_500&fq=tile_min_time_dt:[2002-07-04T00:00:00Z+TO+2009-12-31T23:59:59Z]&fq=\{!field+f%3Dgeo}Intersects(POLYGON((-180+-90,-180+90,0+90,180+90,180+-90,0+-90,-180+-90)))

 



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)