-
-
Notifications
You must be signed in to change notification settings - Fork 359
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
Clarify wording of the crossing quest #5936
Conversation
I was confused by the wording of the answer "No, but crossing is possible" to the question "Is there a crossing here?". I needed to check in the source code of StreetComplete what the answer is saying. I propose to change the wording. My proposed wording mentions informal trails and adds a picture of such an informal trail, which would have helped me.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Regarding the size of the hint picture, best use the same height as for other hint pictures.
E.g. the hint pictures for tactile paving have a height of:
mdpi - 160
hdpi - 240
xhdpi - 320
xxhdpi - 480
(Don't upscale pictures, blurry pictures are not accepted. But I see, the source photo has a resolution of 718x718px, so that should work.)
app/src/main/res/values/strings.xml
Outdated
<string name="quest_crossing_no">No, but crossing is possible</string> | ||
<string name="quest_crossing_no">No, but there is an informal crossing (e.g. informal trail)</string> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The wording seems redundant to me (two times "informal").
"Informal crossing" is not a common term and the "OSM meaning" of that term is, well, OSM specific. E.g. the crossing as shown in the title image of this youtube video (found in one of the first results of a duckduckgo search for "informal crossing") https://www.youtube.com/watch?v=ctNrjp_m4To is NOT an crossing=informal
, but a normal crossing (with no markings).
So, I want to avoid this term.
"Informal trail" on the other hand is better known. But not all crossing=informal
are with informal paths. So, the hint text should reflect that, i.e. not contain "usually looks like..."
So, I'd suggest:
quest_crossing_no="No, but crossing is possible (e.g. at informal trail)"
quest_crossing_hint="An informal trail crossing a road:"
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Good point. I'd also like to change the wording "but crossing is possible" a bit more towards what https://wiki.openstreetmap.org/wiki/Tag:crossing%3Dinformal says.
What about changing "informal crossing" to "intended crossing" like this:
quest_crossing_no="No intended crossing, but pedestrians commonly cross here (e.g. informal trails)"
quest_crossing_hint="An informal trail crossing a road:"
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don't know... it's a lot of text and I don't really get what it is supposed to clarify. You know that the wiki article was mostly written by us, right?
I don't quite get what is the issue with the current wording, what exactly confused you?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I am new to the OSM world and the first time I used StreetComplete, there was a situation where I was unsure which answer to choose for "Is there a crossing here?". Here is the pic of the crossing I took:
You can see that the sidewalk looks exactly the same as the road (there are no markings, no lowered curbs, no traffic signs. the pattern of the paving stones is different, but not sure if this is an official sign of marking the side walk). I wondered if this constitutes a crossing or not. Now after doing some research I think this is highway=crossing with crossing=unmarked. But as a newbie I didn't know that. Reading the answers in the app quiz I wasn't sure if I should pick "Yes (e.g. the curb is lowered here or there are markings)" or "No, but crossing is possible". I mean the curb is not lowered and there are no markings, but crossing also is possible.
Looking back I think two things would have helped me:
-
An example of crossing=informal
-
Being more explicit that crossings are also crossings if they do not have any markings, as long as they are intended by the municipality.
That's why I am proposing to add the "intended crossing" or "informal crossing" wording somewhere. Maybe a better approach would be to add the picture from above with a text like "Crossings don't need any markings:" as a hint?
Does this make sense? Do you have any ideas on making this situation of a pedestrian crossing more clear? Or do you want to only incorporate the crossing=informal example?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ah, thank you for this explanation. Well, as far as I know, for situations like above - da scheiden sich die Geister - there is no consensus in the community as far as I am aware.
Some argue, there shouldn't be a highway=crossing
at all, others argue that the "Road" in red in your example, even if just some sort of alley, could just as well be asphalted and lowered, in which case it is definitely a highway=crossing
, so tagging it always is fair.
Reviewing what I remember of the discussion(s), I tend to agree with the latter group, although while it is not clear in the wiki documentation, it would be problematic to propagate one over the other. So, this is the reason for why the example in your picture is not really mentioned at all in StreetComplete.
It is also the reason why StreetComplete never asks this quest for intersections of footways with highway=service
in order to avoid asking users at all for situations like pictured above. Isn't the above a driveway of sorts? So, I am puzzled why you were asked at all.
Anyway, I guess highway=residential
roads that look like above also exist, although rarely.
I understand the issue better now and your suggestions make sense. Maybe using "intended" in wording indeed helps making it clearer:
Is there a crossing here?
- Yes, intended as crossing
- Not intended as crossing, still possible to cross (e.g. informal trails)
- No, crossing is prohibited or impossible
I gather that including the examples in the "yes" answer may actually rather confuse than help, as no markings are necessary for something to be a crossing. And as mapping sidewalks as separate ways instead of properties of the roadway is becoming more and more popular, we have more and more cases where there are just "implicit" crossings on every intersection, even if it is deep in a residential area (with no markings, traffic signals etc). And sometimes, the curbs are just not lowered there.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for your detailed answer :) I like your proposed wordings. I think dropping the examples in the "yes" answer makes sense.
Isn't the above a driveway of sorts? So, I am puzzled why you were asked at all.
I will go and check sometime this week. I don't remember.
This comment was marked as resolved.
This comment was marked as resolved.
app/src/main/res/values/strings.xml
Outdated
<string name="quest_crossing_yes">Yes (e.g. the curb is lowered here or there are markings)</string> | ||
<string name="quest_crossing_no">No, but crossing is possible</string> | ||
<string name="quest_crossing_yes2">Yes, intended as crossing</string> | ||
<string name="quest_crossing_no2">Not intended as crossing, still possible to cross (e.g. informal trails)</string> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is it correct to change the "name" field because I want to force the translations to also change their wording?
Is it correct to remove the old translation strings?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hm well, if the wording changes substantially, then yes. But in this case, IMO, it doesn't change substantially, it is just a clarification, so the name should not be changed.
When the source translation changes, existing translations of this string are shown as "fuzzy" in POEditor (the crowd translation platform), it is also possible to filter showing only fuzzy strings.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ah, I see e9b9b93
app/src/main/java/de/westnordost/streetcomplete/quests/crossing/AddCrossingForm.kt
Outdated
Show resolved
Hide resolved
@@ -998,9 +998,10 @@ A level counts as a roof level when its windows are in the roof. Subsequently, r | |||
<string name="quest_crossing_kerb_height_title">What’s the height of the curbs at this crossing?</string> | |||
|
|||
<string name="quest_crossing_title2">Is there a crossing here?</string> | |||
<string name="quest_crossing_yes">Yes (e.g. the curb is lowered here or there are markings)</string> | |||
<string name="quest_crossing_no">No, but crossing is possible</string> | |||
<string name="quest_crossing_yes">Yes, intended as crossing</string> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think the examples were really helpful. Can we change this to "Yes, intended as crossing (e.g. with lowered curb or markings)"?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I gave the reason for removing it in #5936 (comment) . Do you disagree?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ah, I haven't seen the explanation before. So it should be fine.
I was confused by the wording of the answer "No, but crossing is possible" to the question "Is there a crossing here?". I needed to check in the source code of StreetComplete to understand what the answer means.
I propose to change the wording of the answer. My proposed wording mentions informal trails and adds a picture of such an informal trail, which would have helped me.