-
Notifications
You must be signed in to change notification settings - Fork 40
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
TypeError: combine_atlas_model() got an unexpected keyword argument 'variable' #119
Comments
Yep this is a bug from when I tried to address #100. I'll fix it today. |
Thanks for catching it! |
tsutterley
added a commit
that referenced
this issue
Nov 7, 2022
feat: add IERS https deltat sync feat: add IERS bulletin-A download ci: add workflow for appending delta times chore: update leap seconds list chore: update deltat file chore: update mean pole table chore: update finals file
tsutterley
added a commit
that referenced
this issue
Nov 7, 2022
feat: add IERS https deltat sync feat: add IERS bulletin-A download ci: add workflow for appending delta times chore: update leap seconds list chore: update deltat file chore: update mean pole table chore: update finals file
tsutterley
added a commit
that referenced
this issue
Nov 7, 2022
Hopefully everything's good now @robbibt. Let me know if you have any more problems. I'll put together a new release tomorrow so that these fixes are on pypi and conda-forge. thanks again! |
Winner, thankyou! Looking forward to updating to the latest version 😃 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi @tsutterley, I've been getting this error when trying to model tides using TPXO8-atlas on 1.1.1:
This only occurs in versions > 1.0.6. I think it may be because the
extract_tidal_constants
code here passes a lowercasevariable
param to thecombine_atlas_model
func:https://github.com/tsutterley/pyTMD/blob/main/pyTMD/read_tide_model.py#L330-L331
https://github.com/tsutterley/pyTMD/blob/main/pyTMD/read_tide_model.py#L399-L400
https://github.com/tsutterley/pyTMD/blob/main/pyTMD/read_tide_model.py#L465-L466
But
combine_atlas_model
actually accepts an all-caps paramVARIABLE
:https://github.com/tsutterley/pyTMD/blob/main/pyTMD/read_tide_model.py#L1259
(it's correctly passed here: https://github.com/tsutterley/pyTMD/blob/main/pyTMD/read_tide_model.py#L211)
The text was updated successfully, but these errors were encountered: