All Projects → soorajb → Loc2country

soorajb / Loc2country

Lat/lon to country

Programming Languages

go
31211 projects - #10 most used programming language

Loc2Country

Location coordinates (lat/lon) to ISO alpha-3 country code. Responds in microseconds.

Manual

Input format: latitude, longitude

Output format: 3-letter-ISO-country-code, time-taken-to-respond-in-nanos

HowTo

  1. Run start.sh
  2. This will start a TCP server (localhost:3333) by default.
  3. Connect to the server by using telnet. (eg: "telnet localhost 3333")
  4. Input lat and lon seperated by comma, returns 3 letter country code and time taken to respond in nanoseconds.

Compiling

To compile, run:

go build src/server.go

To compile for a Linux machine from Mac, run (with correct architecture):

env GOOS=linux GOARCH=amd64 go build src/server.go

Testing

To test, run:

go test

Example

Starting the server:

$ sh start.sh 
2016/08/18 23:30:07 Creating server with address localhost:3333
2016/08/18 23:30:07 Loading data..
2016/08/18 23:30:13 Loading complete.
2016/08/18 23:30:13 Total Entries: 5235316
2016/08/18 23:30:13 Boot time: 5 seconds
$ telnet 127.0.0.1 3333
Trying 127.0.0.1...
Connected to localhost.
Escape character is '^]'.
12,77
IND,17176

Data

The world boundaries were generated using QGIS, converted to a set of ~350 million geohashes at precision level 6 and then reduced (compressed) to a set of ~5 million geohashes using georaptor.

Contributors

Sooraj B - @soorajb

Ashwin Nair - @ashwin711

Harikrishnan Shaji - @har777

License

MIT License

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].