Is your feature request related to a problem? Please describe
Many input files have a "years" column which allows users to specify a list of years to apply the parameter(s) to. This is neat, however if you want to apply the parameter to lots of years (but not all years, for which you could use "all"), then this list could get very long. For example this
Describe the solution you'd like
It would be nice if we could accept a range of years so users don't have to write out each and every year. Not sure what syntax this should take. We could use rust syntax, for example:
- "2000 up to and including 2020" would be
2000..=2020
- "any year up to and including 2020" would be
..=2020
Describe alternatives you've considered
The rust syntax may be a bit obscure to some users so we could consider coming up with custom syntax of our own
Is your feature request related to a problem? Please describe
Many input files have a "years" column which allows users to specify a list of years to apply the parameter(s) to. This is neat, however if you want to apply the parameter to lots of years (but not all years, for which you could use "all"), then this list could get very long. For example this
Describe the solution you'd like
It would be nice if we could accept a range of years so users don't have to write out each and every year. Not sure what syntax this should take. We could use rust syntax, for example:
2000..=2020..=2020Describe alternatives you've considered
The rust syntax may be a bit obscure to some users so we could consider coming up with custom syntax of our own