The author didn't touch upon what I think is the biggest issue with this. I can be pretty damn sure that 51.50799,-0.12803 is really close to 51.51799,-0.12803 and even closer to 51.50800,-0.12803 just by looking at the numbers because they follow a decimal precision style location system. However, I have no idea if mile.crazy.shade is next to mouth.award.bowl or if they are 1,0000 miles apart.
If anything, they should have designed it such that it follows an IP style system where you get more precise/specific with each period and the words more to the left indicate a larger area and we drill down to other smaller areas with each period. And you could make words in the specific section be similar to things that are near it. For example, it could roughly translate to state.town.subsection within a country. So mouth.award.bowl could be right next to mouth.award.cup because cup and bowl are related.
Regardless, this is a shit system and I can't believe anyone even bothered to create it. Also, I've never heard of it prior to today. Who uses this crap?
Regardless, this is a shit system and I can't believe anyone even bothered to create it. Also, I've never heard of it prior to today. Who uses this crap?
From what I've read, it gets used by nomadic peoples and people where regular postal addresses have not been established. So, for example, parts of Mongolia.
I'm not arguing with you. Just answering your question.
I actually favorited your comment. I think it's very insightful. I have a (useless -- er, unused) Certificate in GIS and still enjoy reading about map stuff.
I remember they pitched Mongolia as a place this would be used, but I fail to see how it actually would be. I haven't been back to Mongolia since this came out, but I would bet good money that no one (besides whatever government entity signed onto (bribed/schmoozed) the project) would use this. English isn't that common among nomads that it would make any sense. Everyone knows the Latin alphabet, but reading and writing is all in Mongolian Cyrillic, so it doesn't even make sense that way.
In the cities (where the large majority of the population lives) in the organized ger districts, there are street names and numbers, so this is really a solution in search of a problem.
Not necessarily. While Ulaanbaatar does have street numbers and such, they're not well-known and are basically never used when giving out directions/advertising. It's more like: The "yellow building to the right side of the big department store". Official addresses also rarely use street names, it's more like: Flat #5, Apartment #2, Microdistrict #4, Sukhbaatar District.
So in reality everyone just uses Post Office Boxes for mail, who often just call you and say mail's arrived and charge 400 tugrug.
That said, no-one I know has even heard about what3words, aside from those who read the initial press release. And I'm from Mongolia.
> One of the complaints in the article is that the different localizations offer uneven quality.
And there's no publicly documented way to convert between the localizations. It's not even clear that there's a 1:1 correspondence between the word lists!
It's clear in the article that the lists don't map so you can't even translate between them without going back to W3W and running it through their stuff.
> So, if I want to tell a French speaker where ///mile.crazy.shade is, I have to use ///embouchure.adjuger.saladier
> Loosely translated back as ///mouth.award.bowl an entirely different location!
* Realize that things like 'SSN's are being used as social identifiers and actually just issue them.
* Allow legal entities to authenticate and update their preferred physical address
In ONE place (so I NEVER have to update billing addresses again!)
(maybe even for different kinds of data-packets)
* Make it possible to mail to someone's identity (as the address), BUT
you first have to authenticate as a legal entity
(person or registered organization / business)
that authentication data is hard coded on to the envelope.
This way if someone is abusively sending things they can be targeted by a class action suit/etc.
I wish we would make it possible in the US to use an email address as an address for purposes of things like having a bank account and pick up things like debit cards in person from any branch of that bank if you are traveling, homeless, whatever.
My life is mostly online. I was a military wife for a lot of years and moved around a lot. Lots of people have very physically mobile lives these days.
Yet, we haven't adapted our systems to this reality. We want to tie everyone to a physical address for a long list of things, as if we are plants who can't move from this one location or something.
I don't know what the answer is, but, wow, I sure wish we would come up with better answers than acting like this is still the 1950s and everyone will work for the same company and live in the same house for decades and we can each be found in some particular location all the time.
What you will get is a web application you get to sign into to actually get your mail, and you will receive a notification mail in your regular email inbox stating that you have received mail (but not from whom, or what the subject is, because that is privacy sensitive information), so that you know that you should go and get it yourself via the web application.
This is what every digital 'inbox' that isn't email has done thus far. This is in fact exactly what the Dutch government has done with their digital inbox which is intended to replace physical letters from services like the revenue service and municipalities. Thankfully that monstrosity is optional (for now).
In Australia you can get a PO Box and pay a bit extra to have everything coming there scanned and emailed to you. Obviously wouldn't work for id cards though.
With that you can have a linear ordering of space at each scale. Rounding errors become rounding errors. I remember seeing an implementation of that on npm or some such thing.
Geohashes are really cool, glad to see them mentioned in this thread. If you aren't familiar, you owe it to yourself to read the second Wikipedia article linked by the parent, it's a neat concept.
Mathematically, I would phrase this by saying that the mapping of physical location to (lat,lon) pair is continuous. Space-filling curves and related things like Google's plus codes are nearly as good, in that (if you squint) they are continuous almost everywhere (everywhere but the boundary of some grid). W3W on the other hand is discontinuous everywhere.
I think the advantage of lat/lon boils down to the fact that everyone knows 79.999 is close to 80.000, even though they look quite different as raw text.
So you have to be careful with the terminology. Space filling curves can be a continuous mapping of the line to the curve itself. However, this does not set up a continuous mapping from the space to the coordinate system, which is also quite important.
A tiny change in your coordinate will mean a tiny change in your physical position, but a tiny change in your physical position will almost always mean a quite large (and basically not predictable without doing an involved calculation) change in your coordinate.
Yeah, let me try to be more precise, though maybe it's worth writing down in a more formal setting because comments are awkward. Say we're looking at the Hilbert curve. I claim that for almost all physical positions, a sufficiently small change in position yields a correspondingly small change in coordinate.
In the purely mathematical sense, this means something like "continuous except at points with at least one rational coordinate".
In the programming sense, where everything must be approximated and you're mapping a 2-d lattice to a 1-d lattice, then it's a bit tricky to formulate, but something like: if you take the maximum distance in 1-d space between a 2-d point and its eight "neighbors", then the probability of this distance being > N should be O(1/sqrt(N)). Concretely,
P(point has an adjacent point whose Hilbert coordinate disagrees past the highest n bits) == P(d > 4^n) < 4*(1/2)^n
Notice the Log y axis. I don't you think you could consider this even roughly continuous. This is only even bounded because I only took points within the 256x256 grid, if I let it run over say a 1000x1000 grid the hilbert distances wouldn't plot well even on a log plot.
The second plot I took any random point within euclidian distance 8 from a random first point, and didn't restrict it to stay in the same 256x256 grid. 10k points total. Even at distance 1, you get hilbert distances like:
I'm not sure why that first plot wouldn't be considered continuous. There's a pretty clear positive correlation, which should be more pronounced with a non-log scale y-axis, and more pronounced as you increase the order of the curve.
I'm confused about the second plot; what order is the curve? It seems weird that there are no points between 10^12 and 10^156.
The second graph has a huge jump because the left side of the area I'm taking points from is a boundary between two very distant parts of the curve. In any space filling curve you will be able to find arbitrarily large jumps like this.
The difference would be more pronounced on a non-log scale, except the huge numbers at the top of the range would squish the graph down so you couldn't see what was going on.
The first graph isn't just not continuous, it's not even 1-1. (I'm ignoring the fact that is also discrete so that any formal sense of 'continuity' can't exist. Even if you tried to make it continuous by filling in the gaps it would be impossible.)
The problem with those kind of numbers is that they are easy to get wrong by a couple of digits. Think about how difficult it can be to read a number over the phone.
And guessing distances seems like a pretty unusual thing to do. Especially as latitude/longitude is a terrible system for that anyway. Small distances are very small numbers and hard to think about.
It is possible to make a spelling mistake in what three words, but the mistake will be readily obvious if you know the general location.
I shared your scepticism until I tried the app. The auto-complete is really slick and it just works. For sending coordinates through a human/speech interface it is just going to be more reliable. For ever other problem use another solution.
> Think about how difficult it can be to read a number over the phone.
Same thing is true for words, there are words in my native portuguese that are dificult to tell from each other even in person, imagine by phone. If some one misunderstands a word and it's valid on a combination?
For example (in portuguese), Paca.Tatu.Cotia (Paca.Armadilo.Agouti in english) can be misheard as Maca.Tatu.Quati (Stretcher.Armadilo.Coati in english). What if both combinations are valid, but thousands of km away ?
But because they are thousands of km away it is easy for a human to tell which is correct based on context. And the search screen works very well. It autocorrects, gives a distance and a country flag.
I understand the difficulty with speech, but that is true of any verbal communication.
> The problem with those kind of numbers is that they are easy to get wrong by a couple of digits. Think about how difficult it can be to read a number over the phone.
This already presupposes that the parties involved in the communication are using smartphones, so why not send the coordinates over SMS, email or any other available messaging system?
"If anything, they should have designed it such that it follows an IP style system where you get more precise/specific with each period..."
I think it is interesting that you say that, because I see this system as DNS system on top of IP.
So latlong is your IP, and W3W is your human-readable domain name.
Which begs the question: would a better system involve letting people pay to register names that point to latlongs? There is a free tier that are an open-source list of names for the entire globe, but companies could pay to have names like "free.tacos.here" point to their locations.
> So latlong is your IP, and W3W is your human-readable domain name.
No, it's not. It's actually more like the opposite. The domain name system is hierarchical, and W3W is clearly (and I gather, intentionally) not.
IP addresses are also hierarchical, but the mapping of domain names to them is only somewhat systematic.
Really, though, W3W identifiers are most like Tor onion names. Just hashes. Indeed, some have suggested replacing alphanumeric onion names with something like W3W.
Really? My wife is ~70, and not all that technical, but she knows (for example) that "maps.google.com" is a Google URL. And she even knows that "mail.google.com.assholes.io" is not a Google URL.
It's just anecdotal, I know. But I find it hard to imagine that most people don't understand URL hierarchies. I mean, people who use computers commonly organize files in folders.
But maybe that's becoming a lost art, as most new users just have mobile devices.
> Also, I've never heard of it prior to today. Who uses this crap?
That is the darkest most evil sentiment to any product manager. It basically says a person cannot form an independent opinion and looks to their neighbor to derive credibility. If enough people think that way new ideas never enter the market. This is the opposite of merit.
In this case it's not looking to your neighbor to derive credibility, it's to derive utility.
I mean, if I buy a hammer, I couldn't care less whether anyone else uses it. Its utility is entirely decoupled from the amount of users. In this case, you're not buying into a hammer, because utility is dependent on the number of users. If "//cat.dog.goose" means nothing to anyone around me, I can't use it to communicate a location to anyone around me.
Maybe it shouldn't just be taken as "the darkest most evil sentiment" but as the general reaction consumers will have to products or services where utility is a function of adoption. With any luck, some few people will insist on using it and kickstart more widespread adoption, but that's just it: luck.
Apparently some African country bought into it I think.
>Regardless, this is a shit system and I can't believe anyone even bothered to create it. Also, I've never heard of it prior to today. Who uses this crap?
It's literally a con job designed to create a middleman where one isn't needed. It's the modern libertarian dream.
There is nothing libertarian about conning people or "creating a middleman where one isn't needed." If you believe that, you have been badly misinformed.
If people use it voluntarily due to marketing, then it appears to be one of the downsides of a free market and liberty of choice working as intended. Individual actors in the market are not always rational or well-informed.
This actually has a usage for emergency services. People call and don't know where they are. This app can let the operator send them a text with a link in that they follow and can communicate very effectively the precise location.
No, the writer's misunderstanding of that use case is explained in the comments. Emergency services don't have sms/mms service. The W3W service would presumably use SMS to get location. (phone sends lat/long coords via sms, gets 3 word response).
SMS tends to be more reliable than a data connection in areas with a poor connection (remote, or interference).
This is doable right now - having some sort of data-to-emergencyservices gateway does not exist.
Why not just build an SMS gateway for emergency services with GPS coordinates and call it a day? It seems like the important bit is the gateway, not the 3 word response
Yes. That would be awesome. But it doesn't exist. And a third-party/private company doesn't have the ability to do that without govt partnership. What they can do is develop a completely separate system with a sustainable business model and basically demonstrate how it can piggy back on existing emergency systems regardless of the capabilities of said system (ie one doesn't need to know if the 911 system is the "upgraded" version or make that determination during an emergency).
Also, in many cases a phone is not able to use (or has limited use) of data during a phone call. An sms would be able to go through concurrently. Imagine being on a 911 call. They ask you to click the W3W button (built in? Next to other on-call buttons?) and read out the response.
Not a w3w shill - but I think there's a use case for the emergency system that uses sms and it is usable right now and doesn't require any system wide upgrades. The only potential upgrade would be at the OS level just to simplify (button addition).
The ideal would be having the DB of W3w words locally so that it doesn't need the SMS gateway. Or having a completely open system...
Every internet capable device has GPS, iploc, or both. This is just adding an extra step to the process that requires a bunch of button pushes and lip flapping.
Or in other words, if someone on a 911 call has time to open their text message app, click a link, wait for a page to load, find the important text, and read it aloud, then they have time to open their text message app and hit the "send my coordinates" button.
W3W suffers horribly from "call for price". You won't catch Google or Amazon making you call and talk to a human being (on GMT time no less) before figuring out if you can afford their service.
I'm preparing my own version, truly open source (though with a premium component), with the following improvements over W3W:
•Length-optimized. If one character sufficiently describes your location, you don't need to tack on extras. A 12-character code with the last two lopped off will be imperceptibly close to the original.
•Precision optimized. Every additional character, no matter the value, will result in a location not identical to the absence of that character.
•Precision-focused. When a location is precise to the nearest 100km, km, m, or µm, the browser tools make that clear.
•Logic-optimized. With pencil and paper, you'll be able to figure out how to go N, E, S, W by X distance by adjusting a particular character.
•Spheroid-optimized. The Mercator projection is often held to be an imperialist distortion of the globe, and that's what traditional latitudes and longitudes use. Half the "namespace" of nearly every coordinate system is biased toward the poles. The distance between 89° N, 10°W, and 89°N, 10°E is 38km, but at 1°N, it's 2226km. My system has a simple and clever way to equally represent the dense equatorial regions and the sparse arctic and antarctic regions, and that equals shorter codes.
> Half the "namespace" of nearly every coordinate system is biased toward the poles. The distance between 89° N, 10°W, and 89°N, 10°E is 38km, but at 1°N, it's 2226km. My system has a simple and clever way to equally represent the dense equatorial regions and the sparse arctic and antarctic regions, and that equals shorter codes.
The "S2" geometry system (http://s2geometry.io/) is what Google Maps and many other large systems use. It has a small bias towards the poles in terms of some S2 cells being slightly larger than others at the extremes but the bias is pretty minimal.
Another system, Uber's H3 (https://eng.uber.com/h3/), handles this problem in an even better way, although it loses some of the benefits of S2, such as having fine-grained cells no longer exactly fitting into their parent cells. It has other benefits however.
One thing missing from all of these system, including W3W, is that none of them have a height component. If I go to a party in a strange condo and need to call for an ambulance, there is a huge difference between being on the first floor and the fiftieth floor of the same building and W3W does nothing to solve this problem.
To be fair, W3W is already "spheroid-optimized", in that the named squares are quite close to 10'x10' both at the equator and poles. There are grid "skips" (see one here [1]) every so often to keep all of the squares close to the same size.
Also don't discount the benefit of their distribution of the words. If you're using voice input and trying to get somewhere, the system can guess which of multiple inputs you mean. If you're in Louisville Kentucky you're more likely to be trying to get to "captain.water.water" (a ~90 minute drive from downtown) than "captains.water.water" (located on an island in the North Atlantic). Do you have a mechanism (maybe a check digit?) to help with that?
The non-proximity of W3W locations with similar identifiers is intentional; it's meant as an easy way to perform error checking. The concept is that you state your location, and if you state it wrong, or the other person gets it wrong, the mistake will be obvious because the small change to the identifier results in a location extremely distant from you.
The system pretty explicitly considers all squares equal, without a hierarchy such as you envision. There are no identifiers for larger agglomerations of individual squares.
(And more specifically, where identifiers are hierarchical, you generally have the larger scope first, not last. URLs are a bizarre exception.)
But (and maybe I'm just too cynical) the huge benefit for W3W is that it's much harder to reverse engineer the identifier-assignment code. So only W3W can generate valid identifiers.
HTTP paths are not conceptually hierarchical at all; they're opaque strings.
People set them up that way in practice because they prefer thinking that way. Or, I guess, because they want to sort their URLs meaningfully. Does that happen?
That's a fair point. But the fact is that people do tend to set them up as hierarchies.
But maybe you're right that most people don't understand that, given how adversaries exploit stuff like "games.apple.com.foobar.hosting.tw". You wouldn't fall for that if you understood the system.
While they're not conceptually hierarchical, it's not fair to say that they are opaque strings either. "////" is not a valid HTTP 1.1 path, for example, and "" means "/"
If one of the words is slightly wrong, then you want it to be obvious.
If the Kentucky emergency operator adds an extra s they will see that it can’t be right. With the contiguous numbering the ambulance would be close, but probably still unable to find you.
"The Mercator projection is often held to be an imperialist distortion of the globe, and that's what traditional latitudes and longitudes use." There is a difference between a projected coordinate system (like Mercator) and geographic coordinate systems. In Mercator you use projected Mercator-Meters not Latitude and Longitude. All you need to know for local R² (2D Euclidean) estimates, is that longitudes scale with cos(latitude), that's it. How does your system handle 89°N 0°W, and 89°N, 180°W ? Does it infer 222km or 346km? If it's the latter, it's not spherical as in S².
There is quite a body of research into equal-area hierarchical partitions of Sphere. Adressing there is mostly neither trivial nor intuitive and also not compatible with most raster data formats when it comes to storage.
Discrete Global Grid System (DGGS, Pyxis), HealPIX, H3 as variant of DGGRID, EQ_REGIONS, just to name those I remember.
What benefit do you have over Plus Codes (https://plus.codes/)? I only learned about them from this thread, but they seem to solve the problem quite well, and there's no premium component.
Plus Codes have little application outside building addressing. If I tell you I'm at 4CFM+JW, come get me, you're going to be pretty helpless, because I didn't include the city.
Want to shift a little to the east? 4CFM+JX works, but 4CFM+JY? Whoops. How about north or south? Maybe there's a way to do that, but I haven't found it yet.
How about upping the precision? The size of the square is maybe 4X the W3W grid cell, but not aware of a way for plus codes to achieve a smaller cell.
I'm not out here to bash everybody else's solutions. They're all pretty good, particularly when you limit them to particular applications. Mine just happens to be a slightly improved approach, and slightly less full of drawbacks than everybody else's.
TL;DR: see [3] for an overview of how plus codes work.
-----------------
>Plus Codes have little application outside building addressing.
This claim needs some arguing.
>If I tell you I'm at 4CFM+JW, come get me, you're going to be pretty helpless, because I didn't include the city.
So why would you tell me that? Either include the city, or use a longer plus code that includes the city.
Example from the spec[1]:
>>Nairobi Youth Sports Organization and Information Centre in Kibera, Nairobi, has the Open Location Code "6GCRMQPX9G". Using the location of Nairobi, the code can be shortened to "MQPX9G".
>How about upping the precision?
Use longer codes! It's all in the spec[1]. Again, quote:
>>Using a single grid refinement step, we have an 11 digit code that represents a 1/32000° by 1/40000° area (roughly 3.4 by 2.7 meters at the equator).
Now, regarding this:
>Want to shift a little to the east? 4CFM+JX works, but 4CFM+JY?
This is by design; some symbols were omitted to avoid having words in codes (which, as TFA discusses, can be problematic, e.g. some places might not be happy with codes that have EVIL in them).
>Maybe there's a way to do that, but I haven't found it yet.
The spec[1] is open, and it's all in there!
It is not as simple as what you expected, due to the design constraint above. But that is a tradeoff that I think is reasonable. After all, these addresses are going to be punched into a computer anyway.
E.g. play with the addresses here[2].
I'm really excited to see more development in this space, because one size does not fit all. However, it's important to know what existing systems get right too.
(E.g.: English W3W looks like way easier to say on the phone).
Disclaimer: I work for Google/Geo, the opinions expressed here are mine, and not of my employer.
>So why would you tell me that? Either include the city, or use a longer plus code that includes the city.
Or I could just use a system that doesn't have that drawback. Plus codes aren't awful. I just find room for improvement.
> This is by design; some symbols were omitted to avoid having words in codes (which, as TFA discusses, can be problematic, e.g. some places might not be happy with codes that have EVIL in them).
So what you're saying is only an open source project could deal with this level of potential offense. I'll agree with that. People who don't like EVIL could add more precision to make EVILGH.
>Or I could just use a system that doesn't have that drawback.
Which drawback? All systems have the drawback that if you don't say the entire address, you don't get the entire address.
>So what you're saying is only an open source..
I was not talking about that (for that matter, plus codes are free/open source). I was just explaining why you ran into this problem: "4CFM+JX works, but 4CFM+JY?". It wasn't obvious to me why "Y" is not a valid plus-code character either until I read the spec.
> My system has a simple and clever way to equally represent the dense equatorial regions and the sparse arctic and antarctic regions, and that equals shorter codes.
> With pencil and paper, you'll be able to figure out how to go N, E, S, W by X distance by adjusting a particular character.
But at least they tell you that it starts at $150K/year so you know right off the bat if it's even in your ballpark. A lot of SaaS products completely hide thier pricing entirely. I have zero interest in sitting through some sales-bro's phone pitch before I know if I'm even in the right pricing bracket. Nothing like sitting through an hour long preso only to find out afterwards something is 10x what you were looking to spend.
Do they now? They certainly didn't at the time a few years ago.
I at the time found some prices online searching around but nothing from them.
We were very hopeful we'd get some sort of discount because we're in educational tech, so our income per user is very low, but nope. Free to $100k overnight is insane. We’ve got a guy whose full time job now is basically developing analytics tools for us and it’s a cheaper solution.
Back in the day you you didn't have to pay if you ran a Google Ads campaign. There was no minimum spend. If you ran a monthly AdWords campaign for $1/mo you got free GA no matter what your traffic level was.
The main catch is that GA goes to "sampling mode" once your traffic gets high enough, and I think you have to pay extra to get full datasets.
If you see a high pricing on their webpage you might go away immediately. But if you make the effort to calling them, you are already committing yourself and you are more likely to accept a higher price than you would have if it was easily accessible.
Not a marketing person, but there also has to be value in the lowest possible bar to begin participating, and then a higher one later to increase engagement with public price menus. "Call now for sales pitch" is not that: it means secret deals and whatever they can haggle out of you.
You are absolutely right, there is actually a whole panel of different techniques that aim at getting you accept offers you would not accept straight on.
I believe as a consumer it is important to be aware of those different manipulation techniques so you can step back and take a rational decision.
For example in case of call for sale, it should trigger an alarm telling you to walk away. If you have a high interest in the product and want to call anyway, make sure to know what price you are willing to pay BEFORE calling and do not commit to anything during the call.
- You are WAY underestimating modern Microsoft, they may be a dinosaur in that they are a relatively old company but they are definitely still one of the bigger predators around.
- Not every business has the same target audience. Some companies desire "everyone" and will make the barrier as low as possible; some companies will purposely target only those customers with the money and commitment to call a sales team and will not make the effort to support customers who are not worth the attention.
Sounds cool, but W3W solves a few different problems. It's got to sound natural, be easy to recognize by various voice systems, and easy to communicate between people.
"12 character code" might solve the problem from your perspective, but the point is that barcodes and IDs are annoying to read and copy by hand.
I thought this was a wink and a nod to just using standard latitude/longitude. Doesn't lat/long naturally solve each of your bullet points?
•Length-optimized. More digits = more precision, check.
•Precision optimized. Except for adding zeros, check.
•Precision-focused. Sig figs cover this.
•Logic-optimized. Adding or subtracting to lat or long respectively.
•Spheroid-optimized. I believe this applies to latitude and longitude, as well, since there's less surface area for a given coordinate space. Though, maybe it's the reverse, that it's more precise at the poles.
Not OOTB, but I would imagine that any geocoding system could include a suffix, like "(1987)", to know which dataset to use, so as long as there was a server providing accurate geocoding for a particular point in time.
This is a service-related question, though, not a method-related question. There's no math equation that'll tell you your house is there when it used to be here.
The formula might not be elegant, but if you have an exact description of tectonic drift, you can absolutely have a code that refers to a fixed location on its plate, rather than to a point on some imaginary sphere.
GPS coordinates are just one possible solution, there's no reason to consider equivalent encodings of the same values as the only alternatives.
> The formula might not be elegant, but if you have an exact description of tectonic drift, you can absolutely have a code that refers to a fixed location on its plate, rather than to a point on some imaginary sphere.
Sure, but (1) is there a good way to get an exact description of tectonic drift?, And (2) does tectonic drift account for all shifts of surface features (intuitively, it would not necessarily for features not fixed to bedrock, which accounts for a very large share of interesting-to-humans features)?
Geographers already have a system for recording positions relative to continental plates - in Europe that means ETRS89 [1], North American NAD-83 [2], Australian GDA94 and so on.
Of course, getting all software to support multiple datums might be a complicated matter, as 98% of things like online slippy maps and mobile phone geolocation APIs just use WGS84, the familiar datum used by GPS.
(1) By measuring the location of a few designated landmarks, it should be possible to extrapolate tectonic-level shifts to all other points on the same plate pretty accurately.
(2) Changes on a smaller scale, e.g. due to a landslide, are probably less surprising when they cause a change in location codes. On the other hand, there might be some houses on a hill somewhere slowly sliding down, where the system doesn't work.
(I also realized that my previous comment can be read as supporting a flat earth theory, especially the part about the sphere being imaginary. I firmly believe that the earth is a bumpy ellipsoid, though.)
> By measuring the location of a few designated landmarks, it should be possible to extrapolate tectonic-level shifts to all other points on the same plate pretty accurately.
I would think you'd need a lot of targets near plate boundaries (where deformation is high for that reason) as well as in known regions of intraplate deformation.
Fully accurately, you'll only be able to get retrospective locations (and probably some interpolation thereof), for pretty much the same reason that I can't actually tell you for sure exactly how many seconds the next decade is going to have. We won't know how many leap seconds it has until it is over, or the standards body commits to including no more. But I can tell you exactly how many seconds there were in 2000-2009 inclusive.
Your first four points basically describe lat/lon. But it is hard for humans to parse long characters/numbers. And it's even more difficult to speak random characters. E.g. "B" "b" "be" "bee" are all spoken the same. That's why we use something like the NATO Phonetic Alphabet.
this is way off topic but try buying Google Marketing Cloud services. you have to fill out a 'talk to sales' form, no one ever calls you back, and if you call/chat with any other type of support they have zero idea who to connect you to.
Google is not exempt from this type of behavior, unfortunately.
You should check out what we're working on at qalocate.bamsaas.com/whitepapers/. Even an improvement on W3W is still going to be rather limited and only address part of the problem. We're trying to provide solutions for the entire space.
Geohash is easily the best system currently out there.
Worse might be a little harsh, but my system:
•Packs slightly more bits into the string (naturally there's a tradeoff with data fidelity) for shorter strings
•Follows a completely logical alphanumeric distribution (Geohash will skip letters, some for good reason, like o and l, and some for not-so-much, like a)
•Some of the other benefits in the original post are also missing.
You could probably do this with other systems, but the goal is to allow everyday people to be able to pack a short string in a tweet and have everybody else know exactly where they mean.
>You could probably do this with other systems, but the goal is to allow everyday people to be able to pack a short string in a tweet and have everybody else know exactly where they mean.
89c25855b9b
That's the S2 string for a section of Times Square, NY.
Usefully "89c25855b" is a well-defined, less precise location comprising a larger area. You can go up or down in levels of precision easily and everything can be stored as a single 64-bit integer with lots of extremely useful properties, (e.g. the use of the Hillbert Curve with all of it's benefits, like localization in address space and real space - see http://blog.christianperone.com/2015/08/googles-s2-geometry-...)
If your system adds more benefits than this, I'd love to hear more about it!
The fact is the 4 coordinates (two numeric, two with the stupid "N/S/E/W" corresponding with traditional), decimal points, and reverse order from an X,Y coordinate system, are hardly easy to memorize. They're next to impossible to memorize.
Because, from what you've described, it sounds like your system will look like base64-encoded coordinates. Ie 39.022874, 21.913384 will be IJASDO, which isn't as easy to memorize as W3W.
I think "IJASDO" would be way easier to memorize than person.guards.gangs (I will definitely give W3W credit for picking unintentioned yet humorous word combos), particularly if English wasn't my first language.
If you disagree with this logic, explain to me why automobiles' license plates should use W3W-style. ("idiot-driver-honk").
Wait, was that first one persons.guards.gangs? persons.guard.gangs? You'd think if you were one off in the dictionary it would still get you where you needed to go, but no.
W3W is a clever product. Mine is also clever, and this industry will never have one-size-fits-all, and that's ok.
W3W has a not-so-clever marketing approach. I doubt plus.codes would have ever seen the light of day if W3W had a more FAANG-style approach to marketing.
Random letters are objectively much harder to memorize. 6 letters is essentially 6 words with one syllable each. W3w approach is only 3 syllables and much quicker to say. You would also have less issues where a pause is required. Like JA vs J ... A to keep this letters from sounding like one.
Perhaps an example would have helped. With numeric coordinates relative orientation is fairly intuitive. It's simple arithmetic. How does your proposed system replicate that?
Of course it has "call for price." Look at their team page. There are over 100 people listed. That is absolutely insane for a product of this simplicity. The VCs are clearly making them burn through cash as fast as possible so they can own everything.
“An addressing system is successful insofar as it enables us to execute the suite of cognitive tasks that constitute navigation. Associating a destination with its location on the earth is only one of these chores.
“If you have a powerful computer in your pocket, and you want to use your brain to remember and then use your voice or a text message to share a geographic location with someone else who also has a powerful pocket computer, what3words has got you covered. If you want to infer how far that location is from another location, or which roads might connect to it, you are out of luck. Building an addressing system is difficult, expensive work specifically because legitimate addresses embed so many levels of hierarchical categories and scalar proportions for us. Remembering coordinate locations is cognitively burdensome, but the signifiers retain some meaning relative to one another. You can tell the search and rescue team that you’ve twisted your ankle at ringleader.kilt.comedians, but as soon as you’ve moved 3 meters east, you’re at since.duplicates.backswing, and the technologically-enhanced mnemonic crutch has exhausted its usefulness. Augmenting one cognitive task in a manner that debilitates the constellation of surrounding faculties is not the right way to apply technology to our problems.”
> You can tell the search and rescue team that you’ve twisted your ankle at ringleader.kilt.comedians, but as soon as you’ve moved 3 meters east, you’re at since.duplicates.backswing, and the technologically-enhanced mnemonic crutch has exhausted its usefulness.
This represents my disappointment as well. When I initially heard of the system, I thought it was hierarchical; the first word describing some larger chunk, the second describing a chunk within that chunk, and the third describing the 10' x 10' block nested at the bottom. That would have been a fairly cool thing; you could easily go for less precision in order to represent a larger space -- your neighborhood, for instance. Instead, it just feels entirely non-intuitive for a system that seems to have been created to offer mnemonic names for spaces.
Perhaps there are technological limitations to the problem that I can't see that prevent a hierarchical solution from being possible or feasible. But I just see little value in an 'addressing' system where one cell's address is totally unrelated to the cells adjoining it.
Here's a link to a Wiki page, in the repo for Open Location Code (prior name for Plus Codes), where they compare it against numerous location encoding systems including W3W.
- The codes may be pseudo-randomly generated and so nearby places may have completely different codes.
- It may be possible for multiple people to apply for codes for the same location and for different codes to be generated.
- Making a mistake with a code may simply display somewhere else - for example, on What3Words, "banana rabbit monkey" is a location in Argentina, "banana monkey rabbit" is in Russia.
- [It charges] money either for granting a code, for resolving codes or for allowing users to select their own short code.
- [It does] not work offline and [has] a single provider.
Plus Codes has respective advantages for each of these points, i.e., it's not proprietary; can be encoded/decoded offline; nearby places have similar codes; codes can be made longer for more accuracy; excludes easily confused characters; etc. Overall I found the article makes a convincing case for Plus Codes.
This is my main complaint I can intuitively know, using rules of thumb, if a lat lon is within 100 miles, on this hemisphere, etc.
Is "angry ape alligator" right next door or in Europe? No idea. Which fire station do we relay a call to? I don't know, let's ask w3w servers (during an emergency ... )
To the precision that I want to get someone to help me when I'm trapped in a car, you really only need a few significant digits of lat/lon (.YYYY/.ZZZZ) will get you to within 1 km most of the time. The left-of-decimal numbers are not needed if you are calling local 911, as an increment there shifts by a hundred km.
I don't see the relevance of that complaint. People don't memorize their current lat long to 16 sig figs either. You'd still need a gps device or a paper map without w3w.
I think the point is that ringleader.kilt.comedians and since.duplicated.backswing have no relation at all to each other, and don't communicate to the user their spatial relationship. On the other hand, you could infer that 1234 W Something Rd is nearby 1238 W Something Rd.
EDIT: Also, given a set of lat/long coordinates, regardless of the precision, you could infer their spatial relationship as well.
Yea, in LL, 1 second of arc at the equator is about 101 feet or 31 meters which means it's pretty easy to figure out relative coordinates, particularly N/S. Even UTM/MGRS is better in this respect.
That UTM/MGRS even exits seems to be lost on most pitching W3W.
For great circles the metric ratio is close to 40000km/360. A simple trick would be converting to 400gon first¹, but even using 111 Km per degree is a useful approximation.
So 0.01 decimal degree difference in latitude is always 1.11km or roughly 1km.
All you need to remember is your length of 1 degree longitude at given latitude which is the following basic trigonmetric relation:
0.01deg = cos(lat) * 1.11km
Cheap linear approximation will do well here too.
In South to North order: So usually factor down to 0.8 to 0.7 (38 to 48 Miles) if you live anywhere in the continental US. For Europe it's 84km in Rome, 72km in Paris, 69 in London, 67 in Berlin and 56km in Stockholm
And for approximating local distances it's simply those metric deltas with pythagoras, no need for Haversine or even non-spherical earth models here.
The most important relation for anyone who is into earth and the metric system, is that it's 10M meters or 10,000 km from pole to equator per original definition. You dont even need to remember the earth radius, since that's also defined by 4x10,000km/2π historically.
¹It's a shame that the metric revolution stopped short of Gradians, when it comes to full metric convenience here.
"you could infer that 1234 W Something Rd is nearby 1238 W Something Rd."
Don't overestimate that. There are nasty exceptions where the street disappears and continues elsewhere without a significant gap in house numbers, especially in cities with a long history.
Don't throw the baby out with the bathwater here. Being able to naively navigate city -> street -> number is incredibly useful, and that it is occasionally broken doesn't make it an undesirable feature.
I haven't personally found it to be the case, but I do know that people in much of the developing world simply don't have/use street addresses like are common in the "West".
Just because you use a system like W3W or even just lat/long for a rural address in a developing country, doesn't really mean you will easily be able to navigate to it. Many rural roads don't have names/numbers and may not even be marked on mapping software. Navigating to these kinds of places takes local knowledge (or at least a GPS, a recent topo map, and careful planning) to get to.
That's why an address consists of more than a street name and a number. It includes town, province/state, postal code, and country. When given two actual complete addresses, it is indeed possible to infer relative distance with reasonable accuracy, exceptions notwithstanding. (And I live near St Paul Minnesota!)
Even granting that your “nasty exceptions” comprise fully half of all complete addresses, that would simply mean that a normal addressing scheme is better than W3W 50% of the time and no worse in all other cases.
I believe the point is that W3W have no relationship between each other - which is probably inherent, as I assume it's a hash of some kind. You can't do anything meaningful with two W3W addresses, even though they may be literally adjacent to each other.
A common feature of most addressing systems is being able to infer relative distance - this is usually true of even street address. (Yes, I am aware this is not always true, and yes, I am aware there are hilarious counter-examples. I don't think that changes the point.)
With lat/long, you don't need GPS, a paper map is surprisingly effective -- and, in what is the point here, with a paper map (or GPS), you don't need a link to What Three Words' servers. There isn't a good use case for a mnemonic for lat/long that loses the latter's spatial-relationship information.
Above all, the weird thing about W3W has always been that if you have the device to do the lookup, you have the device to exchange and store long and not particularly memorable strings of numbers...
If, by w3w you mean gps-capable device. Like a phone. Which can give you those digits. And if connected to the internet to query w3w's database, can send your precise location.
There's also the old country directions method - navigate by Landmarks. If your emergency services operator is familiar with the geography of their area, this becomes much easier. If you are similarly familiar, this can be very quick.
"Timmy fell down the well by the old mine on the edge of town! Good girl, Lassie."
I inherited a property management system where previous developers used what3words for storing location of homes (since reverse geocoding based on address is not reliable in some countries we support).
However, after an internal review we realised that a lot of our UK properties have locations in Asia or the US... It turned out that typos in what3words often result in a valid location on the other side of the world. The most common mistakes we found were plural words instead of singular ones (e.g. "cats" not "cat") or the other way around.
Of course we could have improved the user interface or added some extra validations, but at this point we realised that what3words is more trouble than it's worth, and decided to migrate to storing lat/long directly. That allowed us to avoid a third-party dependency and simplify the code, since we had to cache lat/long anyway in order to plot properties on a map or calculate distances between them.
The behaviour you're describing is actually supposed to be a feature. They call it "Error detection" on https://what3words.com/about, which apparently it's not.
Sure, but none of the numbers are homophones or even particularly easy to confuse (in English, anyway) when giving a location verbally. W3W marketing claims none of their words are either, but the evidence suggests otherwise...
Latitude errors are also much easier to correct if you incorrectly memorise it but know other information (country/city). But if you find out that arbitrary.word.cat gives you an obviously incorrect location, you've got very little chance of realising that actually it must have been arbitrary.world.cats
This is true, but the structure of the number itself carries a connotation to the reader to pay extra attention to their accuracy.
We expect numbers to be number-like where every little digit is important. We expect words to be word-like where plurals and sometimes even synonyms mean the same or similar things.
MGRS and UTM are missing from these comparisons. They're commonly used systems in North America and exist for easier human reasoning and communication about coordinates, so they'd be good to include.
Has anyone else tried to look up a location, find the emoji(s) for it and then put the text for it back into the search bar? It seems to not do reverse lookup, making it completely useless as far as I can tell. You can find the emoji(s) for a place, but not a place that corresponds to the emojis.
what3emojis seems a better idea in the way that at least you are not bound by language. You can describe and remember the emojis as you want. As long as you can convey them precisely.
> Here's the thing... If the person's phone has a data connection - the web page can just send the geolocation directly back to the emergency services!
No need even for the data connection. Any Android 2.3.7+ or iOS 11.3+ phone will automatically SMS the location when the emergency number is dialled.
There's also a ton of E911 infrastructure already for exactly this problem (USA, your number may vary!). It's not done at the user level and certainly not by a third party.
W3W seems to me like it adds more confusion to finding places than it adds clarity. The word choices involve tenses and plurals, which makes them seem quite east to get wrong from memory. This is exhibited in two of the carousels on their homepage:
* actors.asking.print
* manage.mercy.items
Both plural nouns could easily be confused for the singular form, and when I was typing the above, I in fact mixed it up on items.
I think the advantage of lat/long and plus codes is that they are more obscure. They don't make the odd promise of being memorable.
With W3W codes, are we supposed to remember more than one of these? I know the addresses of my parents and a few friends, but rely on mechanical storage for all others. I understand the advantage of having a more universal way of identifying precise locations, but don't see cute password-like names as a helpful solution to that.
Let computers do what computers do well. which is store and quickly serve up inscrutable bits of information.
I've built an open source alternative, 3geonames.org.
The code is made up of 3 Geonames, with the first Geoname being the most prominent location name in relation to actual geography, for eg:
https://3geonames.org/LONDON-ISUKI-LIPNITA .
The 140k Geonames have a phonetic distance of at least 1 from each other. Support for elevation and an app with voice geocoding is coming soon.
A few weeks ago, I hoped 3geonames could become a standard. But it has some painful limitations:
The system picks very unusual names. For example STOCARDA-KRRABA-SIPLA is in Germany, but doesn't use the German name of the city. (For those wondering, Stocarda means Stuttgart in Venetian according to Wikipedia.) That makes it harder to use for locals and can hurt the feelings of people in some regions. Also using cities of other countries can cause controversial codes, especially for young and or small countries.
3geonames has to use a language for each name. This makes it hard for people who don't speak that language to pronounce the words.
The 3geonames website describes the basic principles but there's no detailed description on how to build those codes besides (a somewhat hard to read) Perl script. For example, the documentation does not explain what encoding is used exactly.
A new version will address the issue of local names. It will also solve the problem of crossing national boundaries via the integration of OSM admin{} polygons. And add support for elevation up to +-18000 meters.
The documentation is quite sparse, I agree. I hope to find some time to deal with that also.
That's because a) Polygons are quite large (over 20k square kilometres) b) Manchester is a long name (I limit geoname length whenever possible), c) Manchester is possibly similar sounding to another big city name.
The only reason I had heard of it was because my car has it built into the navigation system. So, I can enter a W3W coordinate and my car will appropriately route me.
It's supposedly beneficial when trying to locate a particular person. They can just send you their W3W, the car can read it off the SMS, and automatically provide routing.
I have not used the capability, but explored it when I first got the car since I had never heard of W3W.
The 3 words are because 2 words doesn't give you enough bits of enumerated data. The words aren't to be thought of as X,Y,Z, they're just 3 blobs of bits, where each word represents something like a 0-200,000 range or something.
How many bits do you think it takes to precisely indicate a location on the surface of the earth?
If you are using 2 angles, I guess the place to start is with the circumference of the earth, which is 40 million meters. So to get within a meter, you then need to encode your angle with enough precision to indicate a single one of the 40 million possibilities.
Ummm. That's what latitude and longitude are. Angles. Or equivalently, radians.
And what's magic about one meter? Latitude and longitude can be arbitrarily precise. But whatever. You want 40 million? Well, 360 degrees / 40 million ~ 10^-5. That's easily handled by "43.63872, -116.24135".
- Number of common words in dictionary (generous) = 60,000
- Number of bits needed for single axis = log((40075 km)/(3 meters))/log(2) = 24 bits
- Number of bits needed for two axis = 48 bits
- Number of bits given by a single word = log(60000)/log(2) = 15.8
- Number of words required for two axis = ceil(48/15.8) = 3
Also, keep in mind, 60,000 words is generous; this many words would probably include lots of archaisms. For comparison, 1password uses 18,000 words in its dictionary. You could probably shave off some bits by getting rid of slices from the north/south poles. You might also save space by ignoring parts of the ocean, but then it starts getting non-trivial.
or I could give the next 2 characters to narrow it to a 1km x 1km (roughly) area that covers my town, or the 2 letters and 2 numbers that give a small area that pinpoints 2-3 houses on my street.
It's not really any more complex or hard to remember than a standard postal code or zip code.
Now that sounds like a very useful system. It's hierarchical. With arbitrary precision. With ~short, easy to remember (and easy to key/speak on radio) codes. Nice.
Are you talking about existing English words? I'm not sure there are enough longer words for this to be possible, depending on the range of numbers being encoded.
Sorry, I just don't get the point. Implementing a bunch of proprietary location-encoding schemes is just insane. I do see the profit motive, obviously. But I can only hope that people will avoid using stuff like this.
Maybe if it were totally open-source. And if it were implemented by some recognized international entity. Maybe some part of the UN.
It converts geographic positions into short strings of characters, but notably, a truncated string still points to the same location, just less precisely.
For example, the ferry building in San Francisco is CM87TT20, but CM87TT is a larger square that encompasses Treasure Island as well, and CM87 is most of the bay area.
First of all, WTW seems like a BS solution in search of a problem that wont go anywhere, anyway. So I don't see a reason not only to bother with them, but even to be bothered by what they do. Even if needed, this is much better: https://plus.codes/
Second, a nit: "Their grid is static, so any tectonic activity means your W3W changes.".
Not "any tectonic activity" but the rare tectonic activity that keeps your house number the same but changes your long/lat.
Third, another nit: "Numbers are fairly universal. Lots of countries use 0-9. English words are not universal. How does W3W deal with this?"
They don't have to? Domain names are not universal either (even when they added unicode after tons of years it has near zero adoption, plus implementation issues in many browsers/client libs. Heck still today Chrome shows the Poopla domain as mere punycode: https://xn--ls8h.la/)
W3w was a pretty nice idea and I know some people that have been involved with the company. However, it is indeed not open. It's also VC funded which means that openness is incompatible with making money for them. Which means that most of its potential is lost or off limits unless you are a paying customer. They have a few of those and have had some success doing deals with postal services in countries that lack formal addresses or for use cases where formal addresses are not that useful, like e.g. logistics or big public venues like airports. But the closed nature of this of course holds back most of the interesting use-cases.
For those who don't know, w3w simply encodes locations to 3 words using an algorithm that translates coordinates into what is probably a quad tree path (e.g. geohash) and breaks that into 3 chunks that get mapped to words. The proprietary part is the algorithm and the mapping of words to these chunks (mappings actually since they have them in several languages). Probably you could reverse engineer the algorithm but then you run into the little problem that the mapping is likely copyrighted, some patents may apply, etc.
There are some nice touches to the algorithm like e.g. associating shorter/common words with the most relevant locations so that if you are German speaking, the German version of the algorithm generates short codes inside Germany and longer ones on the other side of the planet.
A couple of issues with w3w: the codes are not hierarchical. So you can't rely on e.g. the first word denoting a bigger location; the second word denoting locations inside that area, etc. Consequently, two almost identical locations will have completely different words associated with them. So you can't at a glance tell where any combination of words is unless you run the algorithm. They are easy to remember but meaningless.
Open location codes and Geohashes are similar except they don't provide easy to remember human readable codes, which is the reason why neither is commonly used by consumers. However, I've always liked geohashes because things with the same prefix are in the same place, which is awesome if you need to build search engines (though more efficient ways of doing that are available). With 7 or 8 letters you get pretty good accuracy with those and the algorithm for encoding and decoding is pretty simple. OLC is similar but stays closer to the degrees/minuts/seconds notion. Also the codes are longer.
>(though more efficient ways of doing that are available)
Would you mind expanding on that? This topic piqued my interest because I've recently found myself using Geohashes to lookup nearby objects and I'm wondering if there's something better that I should be doing.
lucene used to have a geohash backed way of doing location search. They since switched to quadtrees that are binary encoded and added adding custom encoders to lucene for supporting this in recent versions.
I actually implemented search using simple geohashes indexed as terms back in the day. It works but this is way better.
This strategy of for-profit companies masquerading as open-source advocates is really common in science as well.
For instance, based on advertising from the ACS (American Chemical Society, the largest scientific organization in the world by membership), you would expect they are advocates of collaboration among chemists. In reality they will sue anyone that tries to store or distribute their standard for chemical identifier numbers (CAS#).
"superficially simple solution to a complex problems"
--- Exactly this
While it might initially seem a bit easier to remember words vs numbers, W3W is a non-solution in many ways, many nicely described in the article.
Most critically, the W3W indicators have zero relation to actual geography. Adjacent locations have entirely different quasi-random identifiers -- there is no progressive gradation, and no indication whether two locations are adjacent or on different continents.
It does not scale, and leaves us completely dependent on a data connection and their servers to navigate.
There is also no way to figure it out from known principles. The entire system has many points of failure. With a street address, I can know which way to from seeing a couple of existing addresses; W3W - no way, need a data connection.
With Lat-Long I immediately know what part of the world I'm in, and what direction I need to move to move to get closer to my target. A GPS unit, or a simple compass and map will work great. W3W -- zero clues, and need a data connection to them.
Horrible, non-scalable, non-solution looking for a problem.
Massive marketing attempting to overcome bad technology.
Mostly off topic:
I would like a URL shortener that uses a similar system so that instead of giving me small.url/b3DmQ it would be small.url/MouseHatDoor because I will sometimes share a link with my students and there is always one student who can't get it to work because they type it wrong or something. I can send them the link through a course announcement but it is more convenient to put a short url on screen and have them go there.
http://yellkey.com is designed for exactly this use case, and is near-exact clone of the now defunct http://shoutkey.com that was prevalent at our school for this. It provides single-word short URLs that expire after 24 hours, which is fine in practice for any in-person use case.
Might it be easier to have a web page that has a chronological or reverse chronological clickable list of links you want to give your students?
Then instead of sending them a shortened link to something, you just put the link on your page and tell them there's a new link for them there.
That would also make it easy for students who want to go back and review older links you sent. Instead of digging through prior announcements to find the right one, they could just go to your links page.
Probably not. First of all, "bravo tree uppercase delta mike uppercase quebec" isn't as memorable as "mouse hat door". Further, the NATO alphabet works because both the speaker and the listener understand what's coming. If the listener isn't familiar, then the speaker often needs to revert to "s as in sierra, k as in kilo, y as in yankee"—which tends to cause even more confusion as the listener then needs to parse the (intentionally) unusual set of words.
W3W feels a lot like Swatch .beats [1]. It's not exactly solving a problem the doesn't exist, but I think solution is at least as bad as the problem we started with.
At least .beats had the excuse of being a marketing gimmick, or so I assume. No one really thought millidays-since-midnight-GMT was a reasonable alternative to time-zones or just UTC time, right?
What is the problem that W3W is intended to solve? The idea is that I'll describe a location via W3W coordinates rather than by address (or lat/lon)?
I work for Esri, a pretty large GIS company. From where I sit, I think W3W's idea could be implemented better in less than a week, and then plugged into existing GIS workflows as needed.
I suspect some large company or consortium like OGC will eventually build something similar using a geographic coordinate system like WGS84 instead of Mercator, and release it as an open database (perhaps with an open API and an open-source reference implementation). At that point W3W would only continue operating because of vendor lock-in to their proprietary named grid cell database.
(Disclaimer: Opinions are my own. I don't speak for my employer.)
I once thought about W3W like a DNS. Registered companies and businesses could purchase a "number plate" e.g. "jakes.superior.plumbing" and then keep that number plate on a subscription basis, much like owning a domain name. If the business moved address, the geographic coordinates could be updated in the back-end so that "jakes.superior.plumbing" always resolved to the correct location. This, I thought, would be a great monetization strategy and beneficial to many businesses. Even for folks who live in e.g. Dubai or rural areas where there there has been no proper addressing strategy from the municipal side, to be able to purchase a "name" of 3 words or whatever, in order to be found easily - would be hugely beneficial. Furthermore, instead of the 3 words being hard-coded to a specific cell on a world-grid, you take the name with you. If you move house, or move business, just change the coordinates and keep the name. I did mention this to W3W management when I spoke with them in past dealings; they brushed the idea off as useless because they didn't have the means or capacity to maintain a changing directory of names/coordinates. Or perhaps they just thought my idea was silly compared to their approach of dividing the world into trillions of cells and giving each cell an identifier.
Latitude and longitude can be used without an internet connection if you can get a GPS signal.
If you're a boy scout or doomsday prepper or 1800s explorer who fell through a wormhole, and have a bit of time, you can use the sun, stars and a makeshift compass to get a good ballpark.
It's a system which only requires you and your counterpart to both accept the contract of the coordinate system.
As many others here have pointed out fuzzy.enlarged.testicles doesn't mean anything unless we both have access to W3W, and then the directions which come from me needing to get from hairy.baked.potato to you at fuzzy.enlarged.testicles uses GPS. Because giving someone a print out of all the W3W plots they need to pass through is useless, because those phrases don't mean anything, because the system isn't contiguous or addressable.
It'd be like every house on a street having a different, non-contiguous number, different name and different postal code (134 wallaby 53217 next to 5678 futon 44444). Or for the Londoners, if the postal districts didn't increase as you moved outward.
> If you are unhappy with the emoji you are assigned you can reserve custom emoji markers for your triangle for only a low, lifetime price of $24.99.* Custom emoji can be any length (except three), up to the VARCHAR limit set in our MySQL database.
I love tech startups: Longitude and lattitude have worked fine for centuries (well, ever since clocks became reliable enough, that is!). So let's... disrupt it? ...with something less intuitive? ...and proprietary? Typical VC mentality! Shut these jokers down.
Default Brand Name (short for "default cell server brand name"):
the special brand name, such as "mercury," "venus," "earth," "moon," "mars," that denotes the default GeoRegistry for a planet. Other cell server brand names always refer to the planet Earth.
There is so much "righteous indignation" in this thread!
I get that this Three Words thing might not be perfect, but a lot of the criticisms in the posting are nonsense. The furthest anything moved in the Japan earthquake was around 2.5 meters. Why act like this is some kind of deal breaker? If you had used latitude and longitude it would still be wrong by 2.5 meters if you didn't update it after the quake.
Some people had an idea, built it out, and everyone here is losing their minds, I don't get it?
2.5 meters is a problem in W3W. The squares are 3mx3m so most things are going to change "location." Combine that with the nonlocality of the W3W encoding and suddenly anything used has a completely different 'address' where with traditional latitude and longitude 2.5 meters doesn't drastically change.
So you just keep using the old address code or words or whatever, I really don't understand why this is a problem. What is going to happen if people come looking for you and you are 2.5 meters to the left of where they show up? Your original geolocation is almost certainly less accurate than 2.5 meters to begin with, no matter how you specify it. Add to that the fact that if it's a physical location with geographical extent, like say a building that is more than 5 feet across, you are arbitrarily picking your location from within all the possible locations that fall inside that building.
With respect to the word list being non-language-neutral, possibly offensive, etc - there was an old Mnemonic encoding project, the original gone but many other mirrors (e.g. https://powershellexplained.com/2017-03-25-mnemonic-wordlist... ) which is essentially perfect for these kinds of encodings.
It does exist in developing nations, where street names change very quickly and are not very reliable (and the rusty government can't keep up with the quick development). First hand experience, Vietnam - I currently live in a street that wasn't there a year ago and isn't in Google Maps. If you put it into Google, it will send you to another place, 200 meters away. (They are getting better fast, compared to Apple Maps for example which suck hilariously, but still isn't perfect.)
You can share a long/lat, or a link to Google Maps, but that's hard to write down.
I'd never heard of this place, but based on the staffing ratios in evidence on their "team" page (https://what3words.com/team/), the vast majority of the company is in "partnerships", "growth", "business development", and "marketing".
The US (as well as other countries) has had a grid mapping system for hundreds of years[0]. It's just way less useful than GPS. The only time I've seen PLSS used over GPS is for legacy reasons.
The startup I'm working with offers a much better solution. We call it a geohash phrase. Instead of three random words, where plurals and order matter, instead we map geohashs to 5-word tuples that easily form a phrase. Moreover, the words will only ever appear in one slot of the tuple, and pluralization and word order don't matter.
I've always thought that one of the ways to stop such stupid ideas/companies is to follow the money and potentially black-list the VC's that are helping to propagate a bad idea.
Digging into this on Crunchbase, it turns out that some of the funders behind W3W are HUGE names[0,1]:
* Intel
* Daimler
* Sony
To me, this lends credence to the idea that many investors are either just in it for the money--despite what their mission statements say, or just plane stupid.
There are so many competing systems because the problem of turning two numbers (a coordinate pair) into a string is trivial, so everyone comes up with their own bikeshed.
The individual details of the systems don't really matter. Sure, they each have some small advantage or disadvantage, and you can argue about them for a long time, but in the end, what matters is usage/adoption.
A widespread but suboptimal system is better than a system with better properties that few people know/use, because the differences barely matter.
Unfortunately, there isn't sufficient need for such a system that ordinary people would regularly come into contact with it, and any group of people that does have such a need already found a (proprietary) solution, so it's unlikely we'll get a standard soon unless big players agree on one and aggressively push for it.
When I first learned about W3W, I immediately wondered if this same process of mapping n-word tuples across a discrete space could be applied to time. Similar to GPS coordinates, Unix timestamps like 1293432531 don't communicate much to a human developer about when in history they occur. Just use 2010-12-26 22:48:51 then, right? Sure, but then my brain has to worry about timezones, DST, etc. I feel like a unique English name for each second could be useful in some cases, like 1293432531 but (easier, to, pronounce).
Of course a lot of the shortcomings about W3W would apply to to this system too (offensive phrases, lack of relation between nearby points, etc.) Anyone know of something, open source or otherwise, that exists?
That -apart from being a brilliant idea- seems to be easy to replicate in open source software. Replicate not in being compatible but as a different system altogether. Or has that already happened?
The added value here seems to be the curated, per-language word list. You'd have to be careful with homophones, they say that they use simpler, more common words for populated locations (and locations where the target language is more used) etc...
After playing a bit with their interface I can't really tell if they're successful but it does seem like it would be relatively complicated to come up with such a word list in many languages. That being said, it could probably be crowdsourced.
Isn't the algorithm for this trivial? Convert the lat-long to a single number by Z-order (Hilbert curve if you like pain), optionally use xor and bit-rotations (which are both bijective) to scramble it, then divide it into chunks and lookup in a dictionary. How do you sell that to an investor who knows how to code?
(It can be made hierarchical, just chunk the lat-long first!) (Just clean the dictionary of any homonyms!) (You can get error correction by XORing the three word indexes together to generate a check word!)
Wow, the entrance to the coffee shop I'm currently sitting in is "anyone mock grid". So I guess anyone can make fun of their grid? :D https://map.what3words.com/anyone.mock.grid
Oh interesting I just got to know about w3w from this post. I agree with the criticisms about it not being an open standard.
But the idea sounds interesting. I won't be using it anytime soon, but I can see it can be useful to Ron Swanson who hides his gold arbitrarily under trees in forest. :)
So W3W is effectively domains for lat/lon and/or street addresses. This feels like an idea trying desperately to justify it's existence. Or to paraphrase, the answer to a question no one asked. Reviewing the critiques of this concept only seem to reinforce that.
"If we, what3words ltd, are ever unable to maintain the what3words technology ..., then we will release our source code into the public domain. We will do this in such a way and with suitable licences ..."
What are "suitable licences" for the public domain?
I guess that's exactly what they are after: funny (or otherwise "engaging") three word combinations that are: (a) easy to remember, and (b) promote their service. - the default square when looking up the town i live in is leber.abhilfe.schnell (german), translated "liver, relief, quick", so maybe that's what their algorithm is optimized for?
Either way, the whole system seems pretty stupid: why 3x3m (way to high res for normal street addresses, much to coarse for anything else)? what is the problem supposed to be that W3W wants to solve? I sure dont see it...
location data is usually not shared verbally but sent via some kind of text medium - you just send GPS-coordinates from another (map-)app directly through your email/messaging-app. seems simple enough.
>location data is usually not shared verbally but sent via some kind of text medium - you just send GPS-coordinates from another (map-)app directly through your email/messaging-app. seems simple enough.
So in one setting I have to email myself a link to get the map on another device. In the other I just type three words from one screen into my phone.
I think they are likely to be both valid, but are deliberately far apart.
So you don't get a checksum; perhaps if you are typing your own address in and are shown a map you will wonder why it's showing Timbuktu... but if someone else's address is in the middle of Siberia you won't know how to correct it.
Idea: phones could have a feature to send your location as a series of DTMF tones. If standardized, that would be great for any service that needs your location.
What Three Words always seemed like a stupid idea to me. Not much thinking beyond: Locations need bits, English words have bits, Let's use one for the other. Addresses already work. Cellphones have GPS. It seems like an idea for a problem that doesnt exist. What next, mapping words to phone numbers?
This is the first time I've heard of this and I don't know why people would use it... there's no pattern to the word-locations; at least a grid has a pattern.
This idea of mapping words over an information space seems to be floating about quite a bit in recent years. I was inspired by the XKCD about the superiority of passphrases (Correct Horse Battery Staple) and have thought of a handful of other applications that are more relevant than GPS location for word mapping. It's the wrong application of a generally great (but not novel) idea.
Of course, the Earth is not really an oblate spheroid, either. That's just a slightly more accurate approximation than a sphere. A quick look out the window reveals that the Earth is bumpy, covered in valleys, hills and mountains that are not included in the ellipsoid description.
As they say, "all models are wrong, but some are useful." The trick is to choose the simplest model that works. The right one to use depends on what you're using it for.
I’ve assisted to a speech/demonstration by an employee in my lab and while the system was nice in principe the non-openess and internationalization let me a meh impression. It is used in Mongolia by the country post so it addresses a real problem but concerns rising in the blog post are real.
What are some better (more open, reliable) alternatives to sharing latitude/longitude-based locations? (Note: I'd never heard of What 3 Words before coming across this post.)
Not OP, but I'd expect that it is because W3W is a basically a marketing campaign for a technology that doesn't actually solve a problem
(or, more precisely, solves one corner of a problem while destroying many much broader solutions)
Creating a knock-off that solves the OS problems still fails to recover from the broader problems that the W3W 'solution' provides zero ability to actually navigate without a continuous link to their server. A knock-off with better OS cred would still fail the same way.
Yes, I agree that the article spends waay too much print on the lack of openness, and too little on the fact that W3W is just a bad idea that solves nothing.
So, yes, if that was his only problem, he should definitely organize an open version. (it'd just be a bit less pointless)
BTW, did you see this? Somebody posted it above and it is hilarious - especially the Vision, Facts, etc pages...
Google maps now includes plus codes which are open so I don't think W3W stands a chance anyway. Not should they. It's an idea you can implement in half an hour. It doesn't need to be a commercial business.
Here's the thing 'if you have problems with it build your own' is a useless response. Anyone can totally point out issues with a thing without knowing how to fix them (especially if the concept is fundamentally flawed). Expecting people to go out and found a whole standard/business every time they make a blog post about the problems with something is ridiculous.
And further, just because you find something to be harmful doesn't mean you have any motivation to replace or fix it. I don't like Facebook, but I certainly don't have any interest in writing my own open sourced Facebook.
We're a community of builders, makers, and entrepreneurs. If we aren't here to fix the issues we see in the world, what are we doing? All I'm saying is if OP truly feels the way they do, they should try to be the change they wish to see in the world. Especially since what w3w is doing isn't technically complicated.
It does provide a value. If people are dissatisfied with something, it gives someone an opportunity to do better. If everyone accepts subpar quality, why bother making something high quality?
Makers need consumers with the ability to appreciate their product. Complaining together with others is a way of sharpening your and others ability to appreciate something good when it comes along.
I don't understand how someone would hold this tweet up as anything but an echo of their own opinion. There's nothing technically or ethically wrong with the product, despite a few pages of rambling about what they think is right or wrong, morally.
It could have easily been designed to work both offline or online. But it only works online. That's a bad technical idea.
And "open washing" is ethically terrible. So is patenting an idea that takes a weekend to code. So is pushing an unnecessarily expensive system onto vulnerable third-world countries that need a solution to their addressing/geolookup problems.
If anything, they should have designed it such that it follows an IP style system where you get more precise/specific with each period and the words more to the left indicate a larger area and we drill down to other smaller areas with each period. And you could make words in the specific section be similar to things that are near it. For example, it could roughly translate to state.town.subsection within a country. So mouth.award.bowl could be right next to mouth.award.cup because cup and bowl are related.
Regardless, this is a shit system and I can't believe anyone even bothered to create it. Also, I've never heard of it prior to today. Who uses this crap?