Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support OGC-API Processes - Part 3: Collection Inputs #682

Closed
3 tasks done
fmigneault opened this issue Jul 15, 2024 · 1 comment · Fixed by #685
Closed
3 tasks done

Support OGC-API Processes - Part 3: Collection Inputs #682

fmigneault opened this issue Jul 15, 2024 · 1 comment · Fixed by #685
Assignees
Labels
process/OAP-Part3: Workflows OGC API - Processes - Part 3: Workflows/Chaining project/OGC Related to OGC testbeds or relavant projects. project/OGC-GDC Developments related to OGC GeoDataCube triage/feature New requested feature.

Comments

@fmigneault
Copy link
Collaborator

fmigneault commented Jul 15, 2024

Description

Given a process execution, normally (Core specification), these are the allowed inputs formats:

{
  "input-value-literal": 123,
  "input-value": {  
    "value": 123
    "format": "int"
  },
  "input-value-remote": {  
    "href": "https://server.com/file.json",
    "type": "application/geo+json"
  }
}

This feature adds support for Collection Input, as follows:

{
  "some-input": {
    "collection": "https://server.com/collections/collectionId",
    "filter": {"op": "", "args": []},
    "filter-lang": "cql2-json",
    "properties": {  }, 
    "sortBy": "expr1,expr2,expr3"
  }
}

(note: only collection is needed, others are optional, and correspond to additional requirement classes)

The referenced collection must support (at least) one of OGC API data access mechanisms (e.g., OGC API - Tiles, Coverages, DGGS, Features, EDR, Maps) as defined by OGC API - Common - Part 2: Geospatial data.

Adds support of:

  • http://www.opengis.net/spec/ogcapi-processes-3/0.0/req/collection-input
  • http://www.opengis.net/spec/ogcapi-processes-3/0.0/req/remote-collections
  • http://www.opengis.net/spec/ogcapi-processes-3/0.0/req/input-fields-modifiers

References

@fmigneault fmigneault added the triage/feature New requested feature. label Jul 15, 2024
@fmigneault fmigneault self-assigned this Jul 15, 2024
@fmigneault fmigneault added project/OGC Related to OGC testbeds or relavant projects. project/OGC-GDC Developments related to OGC GeoDataCube labels Jul 15, 2024
@github-actions github-actions bot added the process/workflow Related to a Workflow process. label Jul 15, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
process/OAP-Part3: Workflows OGC API - Processes - Part 3: Workflows/Chaining project/OGC Related to OGC testbeds or relavant projects. project/OGC-GDC Developments related to OGC GeoDataCube triage/feature New requested feature.
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant