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
Currently the quality metrics data is queried separately and added to the CMAQ values data by doing a utc_date_time comparison in a loop.
utc_date_time
This is inefficient and should be done as an outer join to the CMAQ value query itself.
Per discussion with @hyi regarding experience with @arunacs at hackathon. Existing implementation is too slow for queries at year long range.
The text was updated successfully, but these errors were encountered:
#18 refactored cmaq server get_values source code to use join when qu…
6f485ef
…ality metrics are available
lstillwe
No branches or pull requests
Currently the quality metrics data is queried separately and added to the CMAQ values data by doing a
utc_date_time
comparison in a loop.This is inefficient and should be done as an outer join to the CMAQ value query itself.
Per discussion with @hyi regarding experience with @arunacs at hackathon. Existing implementation is too slow for queries at year long range.
The text was updated successfully, but these errors were encountered: