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

Option lineage #197

Merged
merged 3 commits into from
Apr 1, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion birdy/client/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ def __init__(
caps_xml=None,
desc_xml=None,
language=None,
lineage=False,
):
"""
Args:
Expand All @@ -72,10 +73,12 @@ def __init__(
version (str): WPS version to use.
language (str): passed to :class:`owslib.wps.WebProcessingService`
ex: 'fr-CA', 'en_US'.
lineage: (bool): If True, the Execute operation includes lineage information.
"""
self._converters = converters
self._interactive = progress
self._mode = ASYNC if progress else SYNC
self._lineage = lineage
self._notebook = notebook.is_notebook()
self._inputs = {}
self._outputs = {}
Expand Down Expand Up @@ -344,7 +347,11 @@ def _execute(self, pid, **kwargs):

try:
wps_response = self._wps.execute(
pid, inputs=wps_inputs, output=wps_outputs, mode=mode
pid,
inputs=wps_inputs,
output=wps_outputs,
mode=mode,
lineage=self._lineage,
)

if self._interactive and self._processes[pid].statusSupported:
Expand Down
118 changes: 0 additions & 118 deletions notebooks/examples/c4cds.ipynb

This file was deleted.

Loading