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

Available parameters for fmiopendata.wfs download_stored_query #29

Open
wxwolff opened this issue May 6, 2022 · 1 comment
Open

Available parameters for fmiopendata.wfs download_stored_query #29

wxwolff opened this issue May 6, 2022 · 1 comment

Comments

@wxwolff
Copy link

wxwolff commented May 6, 2022

Hi,

Love this package. Thanks!

  1. Is there a list of available parameters for monthly observations?

  2. 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

@pnuu
Copy link
Owner

pnuu commented Oct 13, 2022

Sorry for the delay and thanks for the feedback!

You can get both with the same query simply by adding 'tmon' to 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 :-)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants