-
Notifications
You must be signed in to change notification settings - Fork 11
Update All Dependence as a final version #411
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
Open
UrbanGISer
wants to merge
9
commits into
main
Choose a base branch
from
3841-update-dependencies-to-latest-version
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
- 1 Spatial heatmap and Spatial View: Eliminate Warning and Error messages - [x] Add files to leaflet lib D:\GitHub\knime-geospatial-extension\knime_extension\libs\leaflet\1.9.3\ ├── jquery-3.7.1.min.js ├── bootstrap-glyphicons.css └── leaflet_heat.min.js - [x] revise code ` gradient_map[1 / steps * i] = colormap.rgb_hex_str(1 / steps * i)` to `gradient_map[str(1 / steps * i)] = colormap.rgb_hex_str(1 / steps * i)` - [x] revise leaflet_heat.min.js `ctx = canvas.getContext('2d')` to `ctx = canvas.getContext('2d', { willReadFrequently: true })` - 2 Kepler.gl View: - [x] Add files to kepler lib maplibre-gl.css maplibre-gl.js - [x] revise code ``` # html = replace_external_js_css_paths( # r'\1./libs/kepler/2.5.5/\3"\4', # html, # ) ``` - 3 EDSA nodes libpysal- loop importing issue while libpysal>=4.10 - [x] Comment out all code of libpysal in geospatial_ext.py - [x] switch from `import pysal.lib as lps` to `import libpysal as lps` - 4 H3 Nodes - [x] Create H3 nodes - [x] PointToH3 - 5 GWR and MGWR node - [x] iloc issue in GWR - [x] iloc issue in MGWR - 6 Road Network Isochrone - [x] update osmnx - 7 Location Analysis nodes append to concat - [x] LSCP - [x] MCLP - 8 OSM Network nodes G = ox.graph.graph_from_polygon(gdf_union, network_type=self.networktype) edges = ox.convert.graph_to_gdfs(G, nodes=False) - 9 US TIGER Map Node `base_url = "https://www2.census.gov/geo/tiger/TIGER2020PL/STATE/"` to `base_url = "ftp://ftp2.census.gov/geo/tiger/TIGER2020PL/STATE/"` - 10 Update geospatial env yml
build function for spreg table extraction to simplify data; add more rows in the result table.
Double check that the mock Libpysal Examples are no longer needed: #165 |
Update extension version to 2.0 to reflect the major update in the Geopandas library which might cause slight behavior changes. |
Migrate conda to pixi
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
1 Spatial heatmap and Spatial View: Eliminate Warning and Error messages
Add files to leaflet lib D:\GitHub\knime-geospatial-extension\knime_extension\libs\leaflet\1.9.3\ ├── jquery-3.7.1.min.js
├── bootstrap-glyphicons.css
└── leaflet_heat.min.js
revise code
gradient_map[1 / steps * i] = colormap.rgb_hex_str(1 / steps * i)
togradient_map[str(1 / steps * i)] = colormap.rgb_hex_str(1 / steps * i)
revise leaflet_heat.min.js
ctx = canvas.getContext('2d')
toctx = canvas.getContext('2d', { willReadFrequently: true })
2 Kepler.gl View:
Add files to kepler lib maplibre-gl.css
maplibre-gl.js
revise code
3 EDSA nodes libpysal- loop importing issue while libpysal>=4.10
Comment out all code of libpysal in geospatial_ext.py
switch from
import pysal.lib as lps
toimport libpysal as lps
4 H3 Nodes
Create H3 nodes
PointToH3
5 GWR and MGWR node
iloc issue in GWR
iloc issue in MGWR
6 Road Network Isochrone
update osmnx
7 Location Analysis nodes append to concat
LSCP
MCLP
8 OSM Network nodes G = ox.graph.graph_from_polygon(gdf_union, network_type=self.networktype) edges = ox.convert.graph_to_gdfs(G, nodes=False)
9 US TIGER Map Node
base_url = "https://www2.census.gov/geo/tiger/TIGER2020PL/STATE/"
tobase_url = "ftp://ftp2.census.gov/geo/tiger/TIGER2020PL/STATE/"
10 Update geospatial env yml