Discussion for the unofficial, community-developed addons, extensions and scripts built for the Waze Map Editor.

The official index of these tools is the Community Plugins, Extensions and Tools wiki page.
Post by ispyisail
No Inward/Outward Connectivity of a driveable road
These are the words I wanted to use ...........but couldn't think of them

I just used the picture to try and highlight what I was trying to say (seamed to do the trick)
ispyisail
Waze Local Champs
Waze Local Champs
Posts: 3369
Has thanked: 502 times
Been thanked: 547 times
Send a message

Post by ispyisail
This, like the check for Revcons, was "broken" during the WME update a couple of months ago (the one that broke nearly every feature of Toolbox) because it changed how the turn restrictions were attached to the segment vs junction.
So this is a known issue? I wonder if going to be fixed?

I need this feature bad.................

Validator is as important as my wife, not necessarily in this order :)
ispyisail
Waze Local Champs
Waze Local Champs
Posts: 3369
Has thanked: 502 times
Been thanked: 547 times
Send a message

Post by ispyisail
One could argue that they should be soft turns then it doesn't matter................but that is another story
ispyisail
Waze Local Champs
Waze Local Champs
Posts: 3369
Has thanked: 502 times
Been thanked: 547 times
Send a message

Post by ispyisail
..You know, I think that might be what it was. I filtered all the checks but one custom check to look for negative elevations back home. Maybe I forgot to take that out. Crap.
Been there, done that :)
ispyisail
Waze Local Champs
Waze Local Champs
Posts: 3369
Has thanked: 502 times
Been thanked: 547 times
Send a message

Post by ispyisail
Anybody know to make custom script to find street names with all capital letters

Thanks
ispyisail
Waze Local Champs
Waze Local Champs
Posts: 3369
Has thanked: 502 times
Been thanked: 547 times
Send a message

ispyisail
Waze Local Champs
Waze Local Champs
Posts: 3369
Has thanked: 502 times
Been thanked: 547 times
Send a message

Post by ispyisail
Thanks guys

The first example seamed to work but after some thought how about this

I want to find any street name with 2 capital letters in a row

e.g.

SMith Rd
Smith RD
SmiTH Rd
sMIth RD
SMith-bob Rd
bob-bob RD

or even harder

Any street name that does not have a capital at the start and after any space

Smith Smith Smith Rd = Pass
Smith Smith Smith rd = Fail
Smith smith Smith Rd = Fail
etc

If the second example is possible don't worry about the first example
ispyisail
Waze Local Champs
Waze Local Champs
Posts: 3369
Has thanked: 502 times
Been thanked: 547 times
Send a message

Post by ispyisail
Question

We are looking at a map raid in Australia.

I would like to scan the assigned area with rules to create an errors file

Is it possible to export this file to a CSV file or similar to google docs from validator?

Thanks
ispyisail
Waze Local Champs
Waze Local Champs
Posts: 3369
Has thanked: 502 times
Been thanked: 547 times
Send a message

Post by ispyisail
I've decided that I only want this for "Street" and "Primary street"

Code: Select all

${typeRank}:${street}
/^(1|2):( [a-z])|[A-Z]{2}/
I know this example does not work

Any tips

Thanks
ispyisail
Waze Local Champs
Waze Local Champs
Posts: 3369
Has thanked: 502 times
Been thanked: 547 times
Send a message

Post by ispyisail
crazycaveman wrote:You need a .* in there before the opening parenthesis; also the typerank is wrong. Give this a try:

Code: Select all

${typeRank}:${street}
/^1[01]:.*( [a-z)|([A-Z]{2})
When you combine two checks like that, the regex tries to match it in the exact order you have it, which is why the .* is necessary
Thanks
ispyisail
Waze Local Champs
Waze Local Champs
Posts: 3369
Has thanked: 502 times
Been thanked: 547 times
Send a message