We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Hi,
Love this package. Thanks!
Is there a list of available parameters for monthly observations?
Can you request more than one parameter per query?
I can do this:
obs = download_stored_query('fmi::observations::weather::monthly::multipointcoverage', args=['bbox=12,55,35,75', 'starttime=2018-01-01', 'endtime=2019-12-31', 'timeseries=True', 'parameters=rrmon'])
to get monthly precip. But I also want mean monthly temperature. Can I get both of them in one query?
Thanks,
David GPM Deputy Project Scientist for Ground Validation NASA Wallops Flight Facility
The text was updated successfully, but these errors were encountered:
Sorry for the delay and thanks for the feedback!
You can get both with the same query simply by adding 'tmon' to parameters:
'tmon'
parameters
obs = download_stored_query('fmi::observations::weather::monthly::multipointcoverage', args=['bbox=12,55,35,75', 'starttime=2018-01-01', 'endtime=2019-12-31', 'timeseries=True', 'parameters=rrmon,tmon'])
By default all the available parameters are returned, so not defining any of the would work, too :-)
Sorry, something went wrong.
No branches or pull requests
Hi,
Love this package. Thanks!
Is there a list of available parameters for monthly observations?
Can you request more than one parameter per query?
I can do this:
obs = download_stored_query('fmi::observations::weather::monthly::multipointcoverage',
args=['bbox=12,55,35,75',
'starttime=2018-01-01',
'endtime=2019-12-31',
'timeseries=True',
'parameters=rrmon'])
to get monthly precip. But I also want mean monthly temperature. Can I get both of them in one query?
Thanks,
David
GPM Deputy Project Scientist for Ground Validation
NASA Wallops Flight Facility
The text was updated successfully, but these errors were encountered: