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

docs: describe Curb activities w/ table #69

Draft
wants to merge 3 commits into
base: release-1.0.0
Choose a base branch
from
Draft
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
21 changes: 11 additions & 10 deletions curbs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -366,16 +366,17 @@ is due to priorities: a `loading` rule that is higher priority than a `no loadin
for instance, implies that the Curb Zone does allow loading at the time in question, while a
`no parking` rule would not. If "negative", `rate` array should be empty.

- `parking` - implies that loading and stopping are also permitted
- `no parking` - may not stop and leave vehicle unattended
- `loading` - loading of goods; implies that stopping is also permitted
- `no loading` - no loading allowed; implies that parking is also prohibited
- `unloading` - unloading of goods; implies that stopping is also permitted
- `no unloading` - no unloading allowed; implies that parking is also prohibited
- `stopping` - stopping briefly to pick up or drop off passengers
- `no stopping` - stopping, loading, unloading, and parking are all prohibited; not a typical travel lane
- `travel` - represents curbside lanes intended for moving vehicles, like bus lanes, bike lanes,
and rush-hour-only travel lanes; implies that parking, loading, unloading, and stopping are prohibited.
| Activity | Description | parking allowed | loading allowed | unloading allowed | stopping allowed | travel allowed |
|--------------|---------------------------------------------------------------------------------------------------------------------|-----------------|-----------------|-------------------|------------------|----------------|
| parking | pay stop and leave vehicle unattended | ✅ | ✅ | ✅ | ✅ | 〰️ |
| no parking | may not stop and leave vehicle unattended | ❌ | ✅ | ✅ | ✅ | 〰️ |
| loading | loading of goods | ❌ | ✅ | 〰️ | ✅ | 〰️ |
| no loading | no loading allowed | ❌ | ❌ | 〰️ | ✅ | 〰️ |
| unloading | unloading of goods | ❌ | 〰️ | ✅ | ✅ | 〰️ |
| no unloading | no unloading allowed | ❌ | 〰️ | ❌ | ✅ | 〰️ |
| stopping | stopping briefly to pick up or drop off passengers | ❌ | ❌ | ❌ | ✅ | 〰️ |
| no stopping | not a typical travel lane | ❌ | ❌ | ❌ | ❌ | ✅ |
| travel | represents curbside lanes intended for moving vehicles, like bus lanes, bike lanes, and rush-hour-only travel lanes | ❌ | ❌ | ❌ | ❌ | ✅ |
Comment on lines +378 to +379
Copy link
Collaborator Author

Choose a reason for hiding this comment

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

@schnuerle , this does a good job of representing my problem w/ no stopping vs travel. In this model, they represent the same thing.

Copy link
Member

Choose a reason for hiding this comment

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

Love the table, nice work! For the "?" you could use the Emoji White Question Mark or even Wavy Dash to show it's not clearly defined.

In my mind, these activities that are used for defining rules for curb policy, no stopping and travel are different, beyond what the table currently shows, maybe more about physical build. An example "travel" area by the curb could be a flush curb to the travel lane of a road, while a no stopping rule could apply to a curb cut in an area that is never a normal travel lane. I'm not sure of the policy differences and needs between these rule definitions of 'travel' vs 'no stopping' - maybe you just want to be clear that this zone at this time of day is a travel lane and be clear about that, vs just a no stopping area?

Copy link
Collaborator Author

@zanebclark zanebclark Jan 25, 2022

Choose a reason for hiding this comment

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

I've replaced the question mark w/ the emoji. I think I got the right wavy one. Let me know if I'm off

Copy link
Collaborator Author

Choose a reason for hiding this comment

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

while a no stopping rule could apply to a curb cut in an area that is never a normal travel lane.

If you can't stop there and you can't travel there, I'm not sure what you could do there. I can think of one example of such a situation, but it suggests we ought to have a no travel activity instead of a travel one. It also bends the definition of a curb:

A promenade or large sidewalk-like area could have a no travel activity defined for all non-municipal car-like classes and a no parking policy defined for scooters.

Copy link

Choose a reason for hiding this comment

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

It seems that temporary uses that block use of the curb, such parklets for outdoor dining, or a construction lay down area could represent an opportunity to use the proposed no travel activity, as only using no stopping could communicate that the curb lane could still be utilized in some fashion as a travel lane.

Copy link

Choose a reason for hiding this comment

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

Also, local jurisdictions will need to do some translation work to fit local regulatory practices to CDS. As an example, in SF we use no stopping on signage to designate curb space that is temporarily permitted for moving trucks to stop and conduct loading activity.

Copy link
Collaborator Author

Choose a reason for hiding this comment

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

@schnuerle and @kenyaw , check out the #64 discussion for the continuation on this


[Top][toc]

Expand Down