-
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
max val in rtree.silhouette_coeff #480
base: main
Are you sure you want to change the base?
Conversation
Tests are passing locally. Failure due to a fresh issue in |
Codecov Report
@@ Coverage Diff @@
## main #480 +/- ##
=======================================
+ Coverage 79.9% 79.9% +0.1%
=======================================
Files 122 122
Lines 13225 13225
=======================================
+ Hits 10563 10572 +9
+ Misses 2662 2653 -9
|
Can we test this? |
Probably a good idea to... Let me try to carve out some time to look into it unless you already have an idea? |
nope |
Tricky, yeah. Out of curiosity, where is Rtree used in spopt? Can we use STRtree from shapely 2.0 or |
Seems as it is actually not even being used in |
Is it used anywhere? Is there a value in keeping it around or is that something that could be deprecated? |
Good question... |
I believe it's only used in the "locators" code in libpysal, which I also don't think is used. +1 for deprecation of that and depending code. |
I've seen that but that whole module seems to be deprecated and can be removed. |
* TEST: add 3.11 and shapely_dev coverage * TEST: fix environment-file list * TEST: remove option numba * Update ci/311_shapely_dev.yaml Co-authored-by: Martin Fleischmann <[email protected]> --------- Co-authored-by: James Gaboardi <[email protected]> Co-authored-by: Martin Fleischmann <[email protected]>
This PR provides an overdo solution to a rough edge in
cg.rtree
.xref pysal/spopt#57