Hello,
quick & easy suggestion: in the notebooks you create a function to generate the JSON query:
def query(parameter, mintemporal, maxtemporal, mindepth, maxdepth, minlon, maxlon, minlat, maxlat):
body = {
"query_parameters": [
...
return body
and then you call the function
which means query is not a function anymore but a dictionary, hence the function cannot be called again (or one needs to re-define the function). So renaming the function would avoid this issue.
Hello,
quick & easy suggestion: in the notebooks you create a function to generate the JSON query:
and then you call the function
which means
queryis not a function anymore but a dictionary, hence the function cannot be called again (or one needs to re-define the function). So renaming the function would avoid this issue.