You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feat: Granules Sort by time or other properties (#532)
* breaking: using latest uds-lib + update docker
* feat: use latest uds-lib
* chore: allow local ES
* fix: add es type
* fix: adding a no-ssl option
* feat: optionally omitting cumulus in collection creation
* feat: split archive api to a different file to simplify documentation
* feat: move one more archive api
* fix: add granule addition (w/o cumulus)
* feat: allow cross collection query + bbox
* feat: Api documentation (#522)
* chore: add documentation
* chore: update names
* chore: update tag
* fix: boto3 s3 transfer lib issue
* feat: add sort by argument
* update keyword to match ogc
* fix: bbox need to check for None type
* chore: dummy
filter: Union[str, None] =Query(None, description="OGC CQL filters: https://portal.ogc.org/files/96288#rc_cql-text -- Example: id in (g1,g2,g3) and tags::core = 'level-3' and (time1 < 34 or time1 > 14)"),
78
-
bbox: Union[str, None]=Query(None, description='Bounding box in minx,miny,maxx,maxy -- Example: bbox=12.3,0.3,14.4,2.3')):
78
+
bbox: Union[str, None]=Query(None, description='Bounding box in minx,miny,maxx,maxy -- Example: bbox=12.3,0.3,14.4,2.3'),
79
+
sortby: Union[str, None]=Query(None, description='Sort the results based on the comma separated parameters, each sorting key can be started with + / - for ascending / descending order. missing operator is assumed "+". Example: sortby=+id,-properties.created'),
0 commit comments