Skip to content
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

Add ZipCode Counting Notebook #919

Merged
merged 24 commits into from
Mar 27, 2023
Merged
Show file tree
Hide file tree
Changes from 16 commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
00f8709
Introduce zip code counting notebook
isVoid Feb 13, 2023
76f9bd8
add visualization image
isVoid Feb 13, 2023
890edd6
update quadtree structure and param
isVoid Feb 14, 2023
f50ab81
updated visualization link
isVoid Feb 14, 2023
b5593b4
Add to README and update state boundary links
isVoid Feb 14, 2023
394c743
Merge branch 'branch-23.04' of https://github.com/rapidsai/cuspatial …
isVoid Feb 16, 2023
cbfce70
Merge branch 'branch-23.04' of https://github.com/rapidsai/cuspatial …
isVoid Feb 16, 2023
9edba39
Merge branch 'branch-23.04' of https://github.com/rapidsai/cuspatial …
isVoid Feb 24, 2023
7729e76
update notebook with new interface
isVoid Feb 24, 2023
84dfe44
remove stale dependency
isVoid Feb 24, 2023
4504848
update pydeck dependency
isVoid Feb 24, 2023
e002560
comment out viz code
isVoid Mar 1, 2023
6b33c9c
Merge branch 'branch-23.04' into notebook/zipcode_counting
isVoid Mar 1, 2023
095440d
Merge branch 'branch-23.04' of https://github.com/rapidsai/cuspatial …
isVoid Mar 10, 2023
39f3d7c
[skip-ci] update with s3 bucket link
isVoid Mar 11, 2023
316892b
Merge branch 'notebook/zipcode_counting' of github.com:isVoid/cuspati…
isVoid Mar 11, 2023
439baf1
Merge branch 'branch-23.04' into notebook/zipcode_counting
isVoid Mar 21, 2023
2f7ed55
update dependencies.yaml
isVoid Mar 23, 2023
90ce900
Merge branch 'notebook/zipcode_counting' of github.com:isVoid/cuspati…
isVoid Mar 23, 2023
8781b70
add dataset usage disclaimers
isVoid Mar 23, 2023
b538105
spell
isVoid Mar 23, 2023
4e77365
add tiger/shapefile license
isVoid Mar 23, 2023
ce98b52
update conda yml
isVoid Mar 23, 2023
1254726
Merge branch 'branch-23.04' into notebook/zipcode_counting
isVoid Mar 23, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions dependencies.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -149,6 +149,7 @@ dependencies:
- ipython
- notebook
- shapely
- pydeck
isVoid marked this conversation as resolved.
Show resolved Hide resolved
py_version:
specific:
- output_types: conda
Expand Down
1 change: 1 addition & 0 deletions notebooks/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ documentation tree,
Notebook Title | Data set(s) | Notebook Description | External Download (Size)
--- | --- | --- | ---
[NYC Taxi Years Correlation](nyc_taxi_years_correlation.ipynb) | [NYC Taxi Yellow 01/2016, 01/2017, taxi zone data](https://www1.nyc.gov/site/tlc/about/tlc-trip-record-data.page) | Demonstrates using Point in Polygon to correlate the NYC Taxi datasets pre-2017 `lat/lon` locations with the post-2017 `LocationID` for cross format comparisons. | Yes (~3GB)
[Stop Sign Counting By Zipcode Boundary](ZipCodes_Stops_PiP_cuSpatial.ipynb) | [Stop Sign Locations](https://wiki.openstreetmap.org/wiki/Tag:highway%3Dstop) [Zipcode Boundaries](https://catalog.data.gov/dataset/tiger-line-shapefile-2019-2010-nation-u-s-2010-census-5-digit-zip-code-tabulation-area-zcta5-na) [USA States Boundaries](https://wiki.openstreetmap.org/wiki/Tag:boundary%3Dadministrative) | Demonstrates Quadtree Point-in-Polygon to categorize stop signs by zipcode boundaries. | Yes (~1GB)

## For more details
Many more examples can be found in the [RAPIDS Notebooks
Expand Down
Loading