Conversation
- `osmnx` does not expose `project_gdf()` to API anymore, use from submodule - and replaced `unary_union` attribute with `union_all()`
- it used the lat-lng attributes which are no longer saved by default - update test data
- update docs/changelog.rst - limit test steps to 1h
811a464 to
de99e56
Compare
|
Codecov ReportAttention: Patch coverage is
❗ Your organization needs to install the Codecov GitHub app to enable full functionality. Additional details and impacted files@@ Coverage Diff @@
## main #100 +/- ##
==========================================
+ Coverage 98.51% 98.54% +0.03%
==========================================
Files 31 31
Lines 1885 1861 -24
Branches 448 333 -115
==========================================
- Hits 1857 1834 -23
Misses 4 4
+ Partials 24 23 -1 ☔ View full report in Codecov by Sentry. |
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
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.
This pull request includes a variety of changes across multiple files to enhance linting configurations, update documentation, and modify code for improved functionality and compatibility.
Versioning:
superblockify/_version.pyto 1.0.1.Documentation Updates:
docs/changelog.rstwith details about lint reconfiguration, bug fixes, updates, and documentation improvements.docs/conf.pyto dynamically update the copyright year usingdatetime.now().yearand changed the release version to 1.0.1.Code Enhancements:
unary_unionwithunion_allin multiple files (docs/guide/31_tessellation.myst,docs/guide/32_edge_population.myst,examples/07-superblock-boundary.ipynb) to improve geometric operations. [1] [2] [3]docs/guide/30_population_density.mystandexamples/06-population-density.ipynbto add alow_cutoffparameter to theget_populationfunction, allowing for the exclusion of low population values. [1] [2]Linting Configuration:
.github/workflows/lint.ymlto ignore additional pylint warningsR0917for both source code and tests.