KO
|
EN
gitlite — search
Search
#javascript
#python
#hacktoberfest
#react
#ai
#typescript
#llm
#go
#golang
#android
#machine-learning
#rust
#deep-learning
#linux
geo
★ 8
Open GitHub ↗
offline-country-reverse-geocoder with golang
Download README (.md)
Explore Similar Repositories
android-fundmoney
:
android版本各种宝,仅供新手参考学习
zpevnik
:
TeXová šablona pro vytváření zpěvníku s akordy
golinx
:
A client for linx-server written in Go
kameni
:
Marathon - Vulcand bridge
Variometre
:
GPS/SD Arduino based Paragliding Variometer
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
geo
?
Download (.md)
# geo country reverse [offline-country-reverse-geocoder]( https://github.com/daveross/offline-country-reverse-geocoder) with golang # how to use ```golang go get github.com/AsGz/geo/georeverse ``` ```golang package main import ( "fmt" "github.com/AsGz/geo/georeverse" ) func main() { dataPath := "./data/polygons.properties" c, err := georeverse.NewCountryReverser(dataPath) if err != nil { panic(err) } fmt.Println(c.GetCountryCode(-89.234005, 41.645332)) //US fmt.Println(c.GetCountryCode(35.128458, 31.722628)) //PS fmt.Println(c.GetCountryCode(35.183690, 31.749162)) //IL } ```