Follow Slashdot blog updates by subscribing to our blog RSS feed

 



Forgot your password?
typodupeerror
×
Technology

Rescuers Question What3words' Use in Emergencies (bbc.com) 122

AmiMoJo writes: Mountain rescuers have questioned the accuracy of using a location app, citing dozens of examples where the wrong address was given to their teams. What3Words (W3W) divides the world into three-by-three metre squares, each with a three-word address. It is free and used by 85% of UK emergency services. Reasons for the errors were not given, but were likely to be things such as mispronunciation or spelling errors. W3W said human error was "a possibility with any type of tool." The mapping system was created by an algorithm which assigned three words to each square in the world. Mark Lewis, the head of ICT at Mountain Rescue England and Wales (MREW), said that the use of the W3W app had been "testing" for rescue teams. He gave the BBC a database from the last 12 months which listed 45 locations across England and Wales that rescuers received from lost or injured walkers and climbers, which turned out to be incorrect.
This discussion has been archived. No new comments can be posted.

Rescuers Question What3words' Use in Emergencies

Comments Filter:
  • by Rosco P. Coltrane ( 209368 ) on Tuesday June 01, 2021 @10:48AM (#61442908)

    "Hello, Italian 112? I need help: I'm located at Van Fang Coolio."

    That'll work...

    • by Ksevio ( 865461 )

      Well there's a vans.fang.cool in the middle of the desert in Arizona so we'll look for you there

    • by idji ( 984038 )
      They picked dumb, obscure English words that are too similar sounding to other words, and hard for foreigners to pronounce and hard to understand. Why on Earth did they allow plurals????
  • by bill_mcgonigle ( 4333 ) * on Tuesday June 01, 2021 @10:49AM (#61442910) Homepage Journal

    People have been complaining for a while that nearby locations sometimes have very similar words. It's not likely that there's a new problem that nobody knows about. The trick for this company, which has been very aggressive about prosecuting people with similar technology, is that they basically have to redo everything, but that would decrease the value of what they've done so far. Effectively, this was loaded with technical debt out of the gate. A clean break with proper disambiguation is really the only way to make this work.

    • People have been complaining for a while that nearby locations sometimes have very similar words.

      I thought avoiding that was the whole patentetable trick they did?

      • People have been complaining for a while that nearby locations sometimes have very similar words.

        I thought avoiding that was the whole patentetable trick they did?

        Sounds like a variation on graph coloring [wikipedia.org], it's NP-complete but there's a bunch of good approximation algorithms. Of course you've got regions of similarities you want to avoid instead of simple vertices, but I don't think it's too dissimilar.

        I'm sure you could get a patent, but it sounds more like a tough assignment in an algorithms course.

    • by mspohr ( 589790 )

      What's wrong with latitude and longitude? It's universal, doesn't require a special app. Every map has lat/long.
      Can be as precise as you want.

      • Re:Disambiguation (Score:4, Insightful)

        by DontBeAMoran ( 4843879 ) on Tuesday June 01, 2021 @12:13PM (#61443348)

        Yeah but older people invented it, it has existed and worked for decades and so the younger generation think they can do better and replace it with their own solution.

        See also: "using latitude and longitude is not trendy".

        • Yeah but older people invented it, it has existed and worked for decades and so the younger generation think they can do better and replace it with their own solution.

          See also: "using latitude and longitude is not trendy".

          That and it's solving the wrong problem. Every phone knows where it is, so if somebody has cellular service to ask search and rescue to come find them in the first place, then the phone should be automatically transmitting its location to the emergency services line as data, right along with the call. Dispatch should then be transmitting that location as data to search and rescue. There should be no human transcription at all, anywhere in the chain.

          The problem is the protocols used in phones are inadequa

      • What's wrong with latitude and longitude? It's universal, doesn't require a special app. Every map has lat/long. Can be as precise as you want.

        Not much, actually W3W just maps lat/long from the GPS to squares that have a three word name.

        But when pronouncing the coordinates over a poor connection or trying to remember a location, the three word name have some obvious advantages for many. But hey, you can be someone like me that still remembers the 10 digit number off my library card I had in my early teens, the one that expired at least 30 years ago.

        I think it is a neat idea, although I am not too fond of W3W's attitude. Great idea but it should be

        • If the app also displayed the NATO phonetic spelling [nato.int] of the three words, that might work better over a bad connection.
          • While it might initially seem to be a good idea it is not enough. W3W is language dependent, so for example you can't use the NATO phonetic spelling to spell out all location words that my local language uses nor the majority of the 48 languages W3W uses. You need to display the local spelling alphabet.

            But modified like that, why not submit it as a feature request to W3W? It could definitely be useful.

            Anyway, I think the basic idea of W3W is good: to give people who struggle to grasp the cartesian coordinat

      • by hey! ( 33014 )

        In part it's the same problem the international radio phonetic alphabet solves; it's easier for human hearing to copy the data "X-ray yankee zulu" over a noisy audio channel than it is to copy "X Y Z".

        The really innovative thing here isn't really the *solution*; it's the rather narrow but useful problem they've chosen: transferring a coordinate from one human to another by speech with sufficient precision that the humans can locate each other. If I need to transfer the coordinate 42.514792100005614, -71.27

        • by mspohr ( 589790 )

          Your example is absurd. You have 15 digits after the decimal point which takes you to subatomic precision. Three digits or four is sufficient for finding people on earth.
          I contend that numbers are easier to pronounce and understand than words.

          Using these ideas we can construct a table of what each digit in a decimal degree signifies:

          The sign tells us whether we are north or south, east or west on the globe.
          A nonzero hundreds digit tells us we're using longitude, not latitude!
          The tens digit gives a position

          • by hey! ( 33014 )

            Eight digits are still harder to remember than three words and still harder to transmit by voice. That's the point. The example I chose happens to be from a file I'm working with right now; obviously you would chop off some of the least significant digits, but how many? It depends. the answer is different at 0 degrees latitude and 45.

            Really lat/lon aren't used much as working coordinate systems, except by amateurs. My original data was in state plane coordinates, I converted to WGS84 for export to a GP

    • People have been complaining for a while that nearby locations sometimes have very similar words. It's not likely that there's a new problem that nobody knows about. The trick for this company, which has been very aggressive about prosecuting people with similar technology, is that they basically have to redo everything, but that would decrease the value of what they've done so far. Effectively, this was loaded with technical debt out of the gate. A clean break with proper disambiguation is really the only way to make this work.

      Funny, nearby locations having similar latitude and longitude numbers is actually a benefit.

      Maybe you could make a hybrid system where long/lat integers are replaced by words, but the specific location still uses the remaining decimal location. Might give you back some user friendliness without all these problems. So just straight lat/long might be better.

    • by NFN_NLN ( 633283 )

      > A clean break with proper disambiguation is really the only way to make this work.

      Agreed, Mixing singular and plural versions of the same word!? That's like mixing 0 and O in your license key. The time spent to address all the support tickets would be better served just creating a less ambiguous system to begin with.

    • Re:Disambiguation (Score:5, Insightful)

      by Spazmania ( 174582 ) on Tuesday June 01, 2021 @01:06PM (#61443616) Homepage

      Mr Tierney told the BBC: "This is not an algorithm issue. Something like 73% of What3Words addresses contain a word that can be changed just by adding or removing a letter."

      That's definitely an algorithm issue. The algorithm which assigned words to locations failed to collpase phonetically similar words into identical tokens. That's the key linchpin of this sort of effort and they got it wrong.

      • by AuMatar ( 183847 )

        I don't think there's enough words in the english language that you can remove that possibility and still map to 3x3 meters with only 3 words. Especially since you'd also want to remove ordering issues (a,b,c and b,a,c both existing is bad because people mess up order like that) so you need to pick words without replacement.

      • That's not necessarily a problem as long as similar phrases are across the world from each other, and the lookup algorithm can find approximate matches nearby. In the other hand, if two similar phrases are in the same town, that's a big problem.
    • People have been complaining for a while that nearby locations sometimes have very similar words.

      The true stupidity is that we've decided to reintroduce a human element of actually telling someone their location than simply using ELS to transfer the GPS data directly from the handset to emergency services.

      These tech industry startup morons need to leave this shit alone.

  • I think W3W is a beautiful idea. But the English language, with all its variants, can be prone to error. We simply don't have a "universal" Standard English. To fix this, I'd:

    1) Make sure an English region/dialect is selected
    2) Have a built-in error reporter so you can see which words are commonly miscommunicated
    3) Automatically ban words once they reach some threshold from #2

    Maybe there'd be some cool algorithm to predetermine miscommunicated words, which would obviate #2-3.
    • Re:How to solve (Score:4, Insightful)

      by arglebargle_xiv ( 2212710 ) on Tuesday June 01, 2021 @11:07AM (#61443000)
      It's not a beautiful idea, it's a really dumb idea. To use W3W, you need a smart phone with GPS capabilities. Which means you don't need W3W at all, you just use your phone to tell people where you are. For example Google Maps has this built in. All W3W is doing is adding an extra layer of complexity and potential failure to the mix.
      • Because reading GPS coordinates over the phone could never lead to an error?

        Not sure why UK emergency services adopted this standard, how bad was previous system? In the US it is a novelty, nothing more.

        • Open Location Codes [wikipedia.org] have been a thing for a very long time now.

        • Reading out a location, be it in regular coordinates format or in W3W format, is a really dumb idea anyway. In Finland, they have a national 112 app that, when you run it and press the big "CALL 112" button, calls 112 - unsurprisingly - and automatically sends your location to the emergency services. Not spelling out anything, no misinterpretation, no stupid proprietary English-dictionary-based encoding.

          • Given some of the other replies to this thread, I think the "you must read out coordinates over a voice call" idea seems to be a common mental block. Except for exceptional circumstances where for some reason voice connectivity works but data doesn't, there's never any reason to read out coordinates.
            • What if you have GPS device and a phone as two separate devices? Or an old fashioned radio transmiter/walkie-talkie

              • by WoTG ( 610710 )

                A standalone GPS device probably wouldn't have W3W.

                • Right.

                  Still I think W3W is a nice solution for specific situations, like a spelling alphabet for GPS coordinates. No more, no less.

                  However, like the ICAO/NATO-Alphabet it must not be closed source or patented. It probably should be governed by the same standardization body as other spelling tables. There's more to a spelling table than picking random words that start with a certain letter. There's a reason why it's Bravo and Zulu and not Beta and Zeta. And 45 mislocations are a hint that there are to many s

              • Most stand-alone GPS devices for hiking actually only have texting via satellite, and almost all of them, if not all of them, offer it as a built in option. So sending GPS coordinates and not some stupid fucking voice thing makes a lot more sense.
            • by mspohr ( 589790 )

              Google maps (and others) send lat/long without having to read numbers. Precise and unambiguous.

          • This assumes emergency services have easy app integration the central office can forward the lat long to.

            I'd like to think so, but...

        • That's still missing the point: The phone tells the emergency services exactly where you are. If you've got phone connectivity why would you read out anything? Using a GPS-enabled smart phone where you then have to read out coordinates over a voice call is like the Victorian idea of how to use telephones where you were supposed to phone ahead to let the other party know that a telegram was on the way.
          • It's called a fallback.

            Automatic position transmission is nice and dandy - if it works. You may be on vacation and have a phone that doesn't support national/local standard, not the right app installed, data not working, but voice still is (will be an issue sometimes until everything is full 5g)

            • Never heard of a place where voice is available but not SMS.
        • Re: How to solve (Score:4, Informative)

          by jeremyp ( 130771 ) on Tuesday June 01, 2021 @11:44AM (#61443198) Homepage Journal

          Neither do I. In the UK, an OS six figure grid reference used to be the standard and will locate you to within 100 metres, which is probably good enough for locating somebody needing rescuing.

          e.g. TQ290796 represents exactly one 100 metre square in the UK. It's a bit longer than three words but can still be read over the phone fairly easily.

          • Oh fuck me, that's too fucking easy. Can't sell shitty apps with that system.
          • by piojo ( 995934 )

            A six digit number isn't perfect. During panic, reading a number out loud might be difficult. You know the feeling where your legs shake and you can't think? It's an uncommon phenomenon, but I imagine it's common in people that need rescue.

            • by AuMatar ( 183847 )

              And in that level of panic you really think W3W will do any better? If they can't read a short number, they're not going to be clear with 3 non-common words.

        • by mspohr ( 589790 )

          Looks like W3W is prone to error. People mispronounce words or garble the reception.
          Numbers are much easier than words.

        • by AuMatar ( 183847 )

          You can share location directly from Google Maps and half a dozen other apps. No reason to read a location.

          And for actual emergency services, e-911 can pull the GPS right from your phone automatically when you call them.

      • It wouldn't call it 'really dumb,' although it is just papering over an integration issue, which is lack of data transmission compatibility in some cases.

        Several years ago I did some work on systems supporting military close-in air support, and surprisingly, it still entailed voice transmission of coordinates and other data at least in certain cases. Historically this has resulted in deaths from friendly fire.

      • Three words are much easier to convey than seventy nine point zero six five two four four by negative five point zero nine one seven seven.

        • Re:How to solve (Score:4, Insightful)

          by SuiteSisterMary ( 123932 ) <slebrunNO@SPAMgmail.com> on Tuesday June 01, 2021 @12:32PM (#61443458) Journal

          Not when 'hidden.forbidden.playground,' 'hidden.forbidden.playgrounds' and 'ridden.forbidden.playgrounds' are all vastly different locations.

          I'd rather say 'seven nine point zero six five two four for by negative five point zero nine one seven seven' than 'romeo india delta delta echo november dot foxtrot oscar romeo beta india delta delta echo november dot papa lima alpha yankee golf romeo oscar uniform november delta sierra' personally.

          Three decimal places gets rescue parties pretty damn close. I kind of like the idea of W3W for saying 'this is the door you want to knock on,' though it doesn't help with multi-level dwellings, but it fails utterly as an emergency location protocol, due to needing to communicate very precise pronunciations over poor quality voice links.

      • Which means you don't need W3W at all, you just use your phone to tell people where you are.

        Wait... why are you telling people where you are at all? Android has had Emergency Location Services since version 4 and Apple introduced a similar system years ago. Why are we not expecting emergency services to actually know where we are already when we call them?

    • #3 sounds like a great idea, but in practice you don't want to start changing the names assigned to locations after they've been in use a while.

      Imagine the fun if your local gov't decided to either rename your street or re-number houses along your street because there were 'too many errors'?

  • I don't understand (Score:5, Insightful)

    by Errol backfiring ( 1280012 ) on Tuesday June 01, 2021 @11:03AM (#61442970) Journal
    If, in an emergency, I can visit a website where I can look up 3 words, I can also go to openstreetmap and send a link of my location.Even if there are no streets nearby.
    • It's another silver bullet solving a problem that doesn't exist that business management degree types can latch on to.
      • This is for mountain hikers, there used to be a system that was replaced by W3W. And before that system was a previous system, and one before that, and so on...

        The question, still unanswered by this craptacular reporting, is how does W3W compare to the previous system, and what were the issues with the previous system that provoked the move to W3W?

        All this reporting tells us is that W3W, in the field isn't perfect. We're left to imagine how it compares to all previous systems used.

    • by Luthair ( 847766 )

      Yea, I seem to recall seeing stories about people being told to download and install the application when they're in trouble. It would be a hell of a lot easier for everyone involved to just download an app that just sends your precise GPS co-ordinates to the rescue service in the event of an emergency.

      If you're regularly going off the beaten path you should really buy an emergency beacon.

  • How hard is it to have phone feature that can easily text your cry for help along with automatically inserting the GPS coordinates, phones can even speak them into a voice line.

    Make dialing the equivalent of 911 emergency services automatically enable GPS location so that this insertion works. For the duration of the call.

    Sounds like a stupid solution looking for a problem. I guess it might be fun if you are a geocache fanatic, my cache is at 'whiskey tangerine fork'. Sounds cool for about 3 seconds.
    • I heard the UK changed their 911 number...

      https://m.youtube.com/watch?v=... [youtube.com]

      • by jeremyp ( 130771 )

        911 has never worked in the UK. It's always been 999 and now you can use 112 too.

        • You should use the correct emergency number for the jurisdiction you are in. In North America that's 911, and in the UK it's 999 or 112.

          For interest's sake. In North America the first emergency services number used in the late 50s was in Winnipeg MB, and they used 999 since the UK already established that at least a decade earlier. And then by the 60s, the rest of North America started adopting the idea, too. But because some places in North America allowed use of 999 as an exchange or nxx (and still do),

        • Woosh. You didn't click the link, did you?

    • Don't cell towers already capture/calculate your location?

      • Don't cell towers already capture/calculate your location?

        They do. Well enough that when a friend was suicidal, and I called 911, they found her in time using her cell phone location, just from me giving them her phone number.

      • Yes, but if you are only within range of one tower it is a relatively large search area. Proper triangulation like in the movies requires three towers within range.
        • by AuMatar ( 183847 )

          With 2 you can get quite a lot better. 1 cell tower gives a range from the tower (really a ring around the tower, due to uncertainty in the measurement). 2 towers reduces you to the intersection of those 2 rings, which will meet in 2 places. A 3rd will get you down to 1 intersection. But even 2 is enough to go on if you can send 2 teams.

    • Some countries already have this. For example we have an emergency location app that posts your location to social media and whatnot (for "I'm OK" notifications to family and friends) or to emergency services (for "I'm not OK" notifications). You don't need to read out anything, you just hit the appropriate button.
  • by hackertourist ( 2202674 ) on Tuesday June 01, 2021 @11:10AM (#61443012)

    The big problems with W3W are:
    1. the words themselves have no bearing on location. When you have lat/long, you can use it to navigate: if your destination has a larger Lat number, you have to go North until the numbers match. If you're in grid square 'correct horse battery' there's no telling which way to go (or how far) to 'tower staple enemy' unless you run their app.
    2. you have to rely on proprietary technology to encode and decode. W3W is just another website/app that can go down at any time. My phone will produce lat/long without any network connection.
    3. pronuncation of the words. Lots of ambiguity in the English language. Numbers are easy (esp if you use the NATO convention of 'niner' instead of 'nine') by comparison.

    • As someone that takes credit cards over the phone a few times a day, long numbers are not as easy as one may think.

      Especially if there's no natural grouping for reading them out in a pattern.

      W3W should be easier, and errors should be more obvious (though a few mistakes have been found with similar locations having similar words).

      • People tend to want to read numbers in groups ("twentythree"), I find reading them individually instead makes for fewer mistakes.
        More so in languages that swap the word order (in Dutch, 23 is 'drieentwintig', or three and twenty).

      • Three decimal places of accuracy in GPS gets you to about 110 meters accuracy. 'I'm at 70.156 by 123.456' is a lot easier to communicate than 'I'm at achievement.tacklers.heap'.

        And there's a problem when 'hidden.forbidden.playground,' 'hidden.forbidden.playgrounds' and 'ridden.forbidden.playgrounds' are all vastly different locations.

        • by AvitarX ( 172628 )

          I would argue that vastly different locations is a strength and not a weakness. It allows for a sanity check that missing the second decimal of GPS does not.

          • Yeah, but the moment you're trying to communicate 'not playground, playgroundS' over a shitty vocal link, the system is already wasting more time than spelling out GPS coordinates.
    • No the big problem is that people are using it for emergency services in the UK when the UK emergency services specifically with British Telecom invented a damn automated and these days (in the west) universally adopted alternative. https://en.wikipedia.org/wiki/... [wikipedia.org]

  • What was the failure rate before What3Words, and how does it compare to the 45 'failures' over the reported 12 months?

    • by pjt33 ( 739471 )

      The past 12 months have been atypical enough that I'd be wary of making a direct comparison with, say, 2015.

      • Percentages, rather than raw numbers, would likely provide a useful metric for comparison.

        It's safe to assume the previous system had errors, otherwise why adopt W3W?

        • It's not about adopting W3W. Nobody is doing that, pretty much. W3W is a product, and the guys who made it are working hard to sell it. That is the only reason it's used by anyone. Not because it has any actual advantages.

        • by pjt33 ( 739471 )

          Sure, the previous system probably wasn't perfect either. I wouldn't be at all surprised if it was OS map coordinates, and the problem was that fewer walkers nowadays buy and carry OS maps (or know how to locate themselves on a paper map using a compass and a couple of landmarks). But my (overly implicit) point was that the confusion about what forms of exercise and travel to/from exercise were and weren't permitted at various stages of lockdown might have changed the demographic of who was out getting into

  • Like most technology, you should use it if you can, as it will help you do things better. However you should know its limitation and use your own best judgement with what it gives you.

     

  • Klaatu Barada N... necktie Yea, I see no issues here.
  • Deeply flawed (Score:5, Insightful)

    by SuiteSisterMary ( 123932 ) <slebrunNO@SPAMgmail.com> on Tuesday June 01, 2021 @12:22PM (#61443398) Journal

    Just for fun, I decided to see if 'Hidden Forbidden Holyground' exists.

    It does not. Strike 1.

    However, there is a hidden.forbidden.playground, cool.

    There is a also a hidden.forbidden.playgrounds. Not cool. Strike 2.

    There is also a 'ridden.forbidden.playgrounds'. Very not cool. Strike 3.

    The system is not suitable for communicating over any sort of voice link, because it's too ambiguous. If you're reduced to spelling out 'hotel india delta delta echo november dot foxtrot oscar beta india delta delta echo november.papa lima alpha yankee golf romeo oscar uniform november delta sierra' you might as well just read off latitude and longitude in degrees decimal.

    • Re:Deeply flawed (Score:5, Insightful)

      by 140Mandak262Jamuna ( 970587 ) on Tuesday June 01, 2021 @01:04PM (#61443604) Journal
      The aim is NOT to provide a quick way to let people contact emergency responders to let them know their location.

      The aim is to make a cool looking, but deeply flawed, scenario, propose this as a super duper solution to people looking for the next unicorn to invest, take their money and keep taking their money till they realize this ain't no unicorn on its way to 4 billion market cap.

      The rubes that got bilked should count it as tuition paid to the University of Life.

    • by paradxum ( 67051 )
      I'd say it's not a "bad" idea per-se. But YES, anyone that is creating a code using full words should check the soudex of each word to ensure uniqueness.
    • by AmiMoJo ( 196126 )

      It's also English centric. Numbers are far more universal, Arabic numerals are pretty much universal. What's more most languages have figured out how to communicate them clearly over every kind of link because they are so fundamental.

    • On the plus side, xkcd fans will be glad to know there's a "horses.battery.staple" location near Gjoa Haven, Nunavut "battery.staple.correct" near Happy Valley-Goose Bay, Newfoundland; "batteries.staple.correct" near Greenstone, Ontario... and several other near-matches.

      Perhaps the most relevant location is in Multia, Central Finland - or as the locals like to call it, "useless.twit.apps"

  • If you are a user of their app there is a new universal four word phrase that will locate anyone, anywhere: I'm.A.Stupid.Cunt.
  • by Casandro ( 751346 ) on Tuesday June 01, 2021 @01:51PM (#61443826)

    I mean it's a trivial, but proprietary, system to change coordinates into words. It uses badly curated lists of words where misheard words or different spellings will lead to different coordinates.

    It's just one of those things that doesn't make sense. It's not even particularly clever, like being able to give positions at different levels of accuracy. All they do is to use a trivial algorithm to divide the earth's surface into roughly squarish sections, number them from pole to pole, split it up into a "3 digits" base n number (with n being the number of words in the database) and choosing the word based on the digit it represents. This is something any borderline competent programmer can come up with and throw together in an hour or so.

    There is no substance behind it, it's all marketing for idiots.

  • I mean, since you need to use a GPS to find the 3 words that name your exact location anyways, what's wrong with just giving the latitude and longitude, exactly?
  • Isn't SOS good?

Thus spake the master programmer: "After three days without programming, life becomes meaningless." -- Geoffrey James, "The Tao of Programming"

Working...