/go-latlong

This is an golang struct for store latitude, longitude and altitude by numerical, GridLocator and GeoHash.

Primary LanguageGoApache License 2.0Apache-2.0

go-latlong

Job Status Report Build Status GoDoc

Usage

This is an golang struct for store latitude, longitude and altitude by numerical, GridLocator and GeoHash.

To use the method of this struct, you can get GridLocator and GeoHash which length is considered in precision.

Application

package main

import (
	"fmt"

	"github.com/toyo/go-latlong"
)

func main() {
	l := latlong.NewRect(35, 135, 0.1, 0.1) // N35+-0.05 Deg. E135+-0.05 Deg.

	fmt.Println(l.GridLocator()) // shows GridLocator. https://en.wikipedia.org/wiki/Maidenhead_Locator_System
	fmt.Println(l.GeoHash())     // shows GeoHash. http://geohash.org/
	fmt.Println(l.String())      // shows lat/long in string.
}
Class of this library s2geometry.io GeoJSON memo
Point s2.LatLng (+altitude) Point
MultiPoint (= []Point ) - MultiPoint is for ISO6709
LineString s2.Polyline LineString
Polygon s2.Loop Polygon with no hole
Circle s2.Cap Circle GeoJSON 1.1
Rect s2.Rect -