-
Notifications
You must be signed in to change notification settings - Fork 9
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 amda template params #192
Support amda template params #192
Conversation
…try to use a templated parameter
c62b112
to
6cea08f
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm doing some more tests, but I'm already posting this first part of my review.
speasy/webservices/amda/ws.py
Outdated
warnings.warn(f"""Argument {arg.key} is not provided, using default value {v} | ||
You can set Derived Parameters inputs using: | ||
spz.get_data("amda/{product.spz_uid()}, start_time, stop_time, product_inputs={{'{k}': '{arg.default}' }}) | ||
""", category=RuntimeWarning, skip_file_prefixes=(os.path.dirname(spz.__file__),)) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It seems that skip_file_prefixes is only available since Python 3.12
tests/test_speasy.py
Outdated
"start_time": '2023-01-04T07:51', | ||
"stop_time": '2023-01-04T07:52', | ||
"disable_proxy": True, | ||
"disable_cache": True, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
"disable_cache": True is already set in test_get_data.
I need to remove it here to prevent "TypeError: speasy.core.requests_scheduling.request_dispatch.get_data() got multiple values for keyword argument 'disable_cache'" exception.
tests/test_speasy.py
Outdated
"disable_proxy": True, | ||
"disable_cache": True, | ||
"product_inputs": { | ||
'lookdir': "100" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Lookdir 100 does not exist.
I replace it by Lookdir 1.
To sum up, here's how I modified the test:
{
"product": 'amda/jedi_i90_flux',
"start_time": '2023-01-04T07:51',
"stop_time": '2023-01-04T07:52',
"disable_proxy": True,
"product_inputs": {
'lookdir': "1"
}
}
speasy/core/inventory/indexes.py
Outdated
def __iter__(self): | ||
return self._arguments.__iter__() | ||
|
||
class DerivedParameterIndex(ParameterIndex): |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Derived parameter is a concept already used by AMDA for something else.
I suggest renaming it ‘ExtraParameterIndex’ or something like that
Apart from the few points mentioned above, everything seems to be working perfectly. |
- Uses dedicated indexes for arguments - allow per provider min proxy version - warns when using default values instead of error Signed-off-by: Alexis Jeandet <alexis.jeandet@member.fsf.org>
6cea08f
to
463f475
Compare
|
In my opinion, the latest push is perfect! |
This PR fixes issue #163
Now if you get data for "amda/jade_l5e180_def" parameters, an exception is raised to indicate that an "additional arguments" is needed.
This tells you that the additional ‘lookdir’ argument is required to get the data for this parameter. For exemple:
And the same thing is available for access to VEX/IMA/extraparams data (and for all AMDA templated parameters):
You just need to select the anode you want: