-
Notifications
You must be signed in to change notification settings - Fork 79
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
pass kwargs to explore #627
Conversation
cool. The way i'd handled that before was to just cheat and inculude extra args like tiles in the kwargs for one of the earlier maps (like stick them in the edge_kws). This is definitely preferable |
oh dope! |
Yeah but that is very unintuitive and requires you to know the implementation. |
💯
does that mean that works for the static plots too? |
No, because we don't reuse |
Codecov Report
@@ Coverage Diff @@
## main #627 +/- ##
=====================================
Coverage 84.5% 84.5%
=====================================
Files 139 139
Lines 14963 14967 +4
=====================================
+ Hits 12638 12642 +4
Misses 2325 2325
|
@knaaptime would you like to cut 4.9.1? :) |
As soon as I’m out of the Getis lecture at sdsu
…--
Elijah Knaap, Ph.D.
Senior Research Scientist & Associate Director
Center for Open Geographical Science
San Diego State University
knaaptime.com | @knaaptime
On Nov 3, 2023 at 3:37 PM -0700, Martin Fleischmann ***@***.***>, wrote:
@knaaptime would you like to cut 4.9.1? :)
—
Reply to this email directly, view it on GitHub, or unsubscribe.
You are receiving this because you were mentioned.Message ID: ***@***.***>
|
@knaaptime I suggest we first figure out what caused this conda-forge error https://dev.azure.com/conda-forge/feedstock-builds/_build/results?buildId=817319&view=logs&j=656edd35-690f-5c53-9ba3-09c10d0bea97&t=986b1512-c876-5f92-0d81-ba851554a0a3 cc @jGaboardi It is midnight here so that is not a task for me today :) |
so, i dunno why thats failing. The error seems to come from xarray not being available when weights is imported, but afaict xarray is never imported in the weights module except inside a function-level 'try' block. ...that said, it looks like we do define xarray as a hard dependency in pyproject.toml, but not in the conda forge recipe. A quick fix would be to include xarray in conda, but do we need it? Also not clear why the error is actually materializing here |
Follow-up on #617
We were not able to change anything about the map as we forgot to pass kwargs though like we did in
esda
. But stuff liketiles
orprefer_canvas
shall work out of the box.