Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/albertyw/localtimezone
Go latlong to timezone
https://github.com/albertyw/localtimezone
geospatial golang openstreetmap timezone tzdata
Last synced: 3 months ago
JSON representation
Go latlong to timezone
- Host: GitHub
- URL: https://github.com/albertyw/localtimezone
- Owner: albertyw
- License: mit
- Created: 2022-09-05T21:00:23.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2024-09-10T08:16:36.000Z (5 months ago)
- Last Synced: 2024-10-12T05:14:17.531Z (4 months ago)
- Topics: geospatial, golang, openstreetmap, timezone, tzdata
- Language: Go
- Homepage:
- Size: 159 MB
- Stars: 4
- Watchers: 2
- Forks: 1
- Open Issues: 11
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# github.com/albertyw/localtimezone
[![Build Status](https://drone.albertyw.com/api/badges/albertyw/localtimezone/status.svg)](https://drone.albertyw.com/albertyw/localtimezone)
[![Go Documentation](https://godocs.io/github.com/albertyw/localtimezone/v3?status.svg)](https://godocs.io/github.com/albertyw/localtimezone/v3)
[![Go Report Card](https://goreportcard.com/badge/github.com/albertyw/localtimezone/v3)](https://goreportcard.com/report/github.com/albertyw/localtimezone/v3)
[![Maintainability](https://api.codeclimate.com/v1/badges/ce341d42186e116cd50c/maintainability)](https://codeclimate.com/github/albertyw/localtimezone/maintainability)
[![Test Coverage](https://api.codeclimate.com/v1/badges/ce341d42186e116cd50c/test_coverage)](https://codeclimate.com/github/albertyw/localtimezone/test_coverage)
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)LatLong conversion to time zone.
This is a fork of [github.com/ugjka/go-tz](https://github.com/ugjka/go-tz).## Usage / Example
```go
import localtimezone "github.com/albertyw/localtimezone/v3"// Loading Zone for Line Islands, Kiritimati
tz, err := localtimezone.NewLocalTimeZone()
if err != nil {
panic(err)
}
zone, err := tz.GetZone(localtimezone.Point{
Lon: -157.21328, Lat: 1.74294,
})
if err != nil {
panic(err)
}
fmt.Println(zone[0])
```Uses simplified shapefile from [timezone-boundary-builder](https://github.com/evansiroky/timezone-boundary-builder/)
GeoJson Simplification done with [orb](https://github.com/paulmach/orb).
## Features
- The timezone shapefile is embedded in the build binary
- Supports overlapping zones
- You can load your own geojson shapefile if you want
- Sub millisecond lookup even on old hardware## Problems
- Shapefile is simplified using a lossy method so it may be innacurate along the borders
- This is purely in-memory. Uses ~50MB of ram## Updating data
Get the most current timezone release version at https://github.com/evansiroky/timezone-boundary-builder/tags```bash
go run tzshapefilegen/main.go
```## Licenses
The code used to lookup the timezone for a location is licensed under the [MIT License](https://opensource.org/licenses/MIT).
The data in timezone shapefile is licensed under the [Open Data Commons Open Database License (ODbL)](https://opendatacommons.org/licenses/odbl/).