open-location-code
open-location-code copied to clipboard
Open Location Code is a library to generate short codes, called "plus codes", that can be used as digital addresses where street addresses don't exist.
The [OLC naming guidelines](https://github.com/google/open-location-code/wiki/Naming-guidelines) specifies: > [Plus codes] should not be capitalised... However, the Google marketing website at https://maps.google.com/pluscodes/ repeatedly fails to follow these specifications. Plus codes is used in...
The specification at https://github.com/google/open-location-code/blob/master/docs/specification.md defines required functionality (e.g. function) for implementations. To improve consistency across implementations, tighten the specification to include recommended function names. For example: > * a method...
Our project introduction states: > Open Location Code is a technology that gives a way of encoding location into a form... > > https://github.com/google/open-location-code#open-location-code "Encoding" here implies that the encoder...
The document/specification/notes refer to the Earth as having a circumference of 111321 meters per degree of latitude. > NB: This table assumes one degree is 111321 meters, and that all...
In https://github.com/google/open-location-code/wiki/Supporting-plus-codes-in-your-app it is stated: > Global codes can be recognised and extracted from a query using a regular expression: However, a particular global code "15,849VGJQF+VX7QR3J" taken from the [test...
I really like OLC. It makes sense, it is brief and printable. I am concerned that the What Three Words community will gain significant traction, even though their product is...
Having the `openlocationcode` package available through [conda-forge](https://conda-forge.org/index.html#about) as well as PyPi would be a big help as it would allow developers to use it as a dependency in other conda-forge...
After the changes [happened to jcenter](https://medium.com/codechai/jcenter-bintray-shutting-down-2e029d98a812) I've decided to have a deeper look at my project's dependencies and where they are fetched from, turned out open location code is my...
Augment & streamline Decode() to do some minimal error checking that can report some invalid code inputs by returning an invalid CodeArea. Add CodeArea::IsValid() and CodeArea::InvalidCodeArea() methods to facilitate checking...