You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fix critical bugs in documentation and library code
## Documentation Fixes
- Fixed Toronto CMA region code from '535' to '35535' in getting_started.md
- Added labels="short" to all get_census calls in working_with_geometry.md
- Removed all sample data fallbacks from tutorials and examples
## Library Bugs Fixed
### 1. labels="short" not working with cached data
- **Bug**: When data was returned from cache, the labels parameter was ignored
- **Fix**: Call _extract_vector_metadata() on cached data in core.py:121
- **Impact**: Vector columns now correctly named 'v_CA21_1' instead of 'v_CA21_1: Population, 2021'
### 2. Missing CRS in GeoDataFrames
- **Bug**: GeoDataFrames had CRS=None, causing incorrect area calculations
- **Fix**: Explicitly set crs="EPSG:4326" when creating GeoDataFrame in core.py:446
- **Impact**: Geographic operations now work correctly with proper coordinate system
## Build Results
- Documentation builds successfully with visualizations now displaying
- All tutorials execute without errors
- Maps and plots now render correctly in HTML output
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude <noreply@anthropic.com>
0 commit comments