Skip to content
Merged
Changes from all commits
Commits
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
2 changes: 2 additions & 0 deletions examples/osm-equity/handlers/shared/equity_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,8 @@
"california": (-124.41, 32.53, -114.13, 42.01),
"los angeles, ca": (-118.67, 33.70, -118.16, 34.34),
"san francisco, ca": (-122.52, 37.70, -122.36, 37.83),
"north america": (-168.0, 5.0, -52.0, 72.0),

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

The bounding box for "north america" (-168.0, 5.0, -52.0, 72.0) excludes the high Arctic islands of northern Canada (which extend up to ~83° N) and Greenland (which is geographically part of North America and extends to ~83.6° N and -11.3° W). If the study is intended to cover the entire continent, consider expanding the bounding box limits to fully encompass these regions.

Suggested change
"north america": (-168.0, 5.0, -52.0, 72.0),
"north america": (-168.0, 5.0, -10.0, 84.0),

"united states": (-124.8, 24.4, -66.9, 49.4),

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

The bounding box provided for "united states" (-124.8, 24.4, -66.9, 49.4) specifically covers the Conterminous United States (CONUS), excluding Alaska and Hawaii. To prevent confusion and avoid potential issues when real TIGER tracts or national-scale datasets are integrated (as noted in the TODO(real) comments), consider renaming this key to "conterminous united states" to accurately reflect its geographic scope.

Suggested change
"united states": (-124.8, 24.4, -66.9, 49.4),
"conterminous united states": (-124.8, 24.4, -66.9, 49.4),

}
_DEFAULT_BBOX = (-122.34, 37.72, -122.15, 37.85)

Expand Down
Loading