{"id":16937328,"url":"https://github.com/yageek/lambertgo","last_synced_at":"2025-04-11T19:08:54.889Z","repository":{"id":12186174,"uuid":"14788311","full_name":"yageek/lambertgo","owner":"yageek","description":":earth_africa: Go package to convert coordinates from Lambert to WGS84","archived":false,"fork":false,"pushed_at":"2017-12-12T12:27:45.000Z","size":1022,"stargazers_count":6,"open_issues_count":0,"forks_count":4,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-03-25T15:01:43.328Z","etag":null,"topics":["coordinates","go","lambert","wgs84"],"latest_commit_sha":null,"homepage":"","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"bsd-2-clause","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/yageek.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2013-11-28T22:58:24.000Z","updated_at":"2024-03-25T05:20:24.000Z","dependencies_parsed_at":"2022-09-15T05:52:13.280Z","dependency_job_id":null,"html_url":"https://github.com/yageek/lambertgo","commit_stats":null,"previous_names":[],"tags_count":3,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yageek%2Flambertgo","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yageek%2Flambertgo/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yageek%2Flambertgo/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yageek%2Flambertgo/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/yageek","download_url":"https://codeload.github.com/yageek/lambertgo/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248465313,"owners_count":21108244,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["coordinates","go","lambert","wgs84"],"created_at":"2024-10-13T20:59:18.555Z","updated_at":"2025-04-11T19:08:54.867Z","avatar_url":"https://github.com/yageek.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# lambertgo\n\n[![Build Status](https://travis-ci.org/yageek/lambertgo.svg?branch=master)](https://travis-ci.org/yageek/lambertgo)\n[![Coverage Status](https://coveralls.io/repos/github/yageek/lambertgo/badge.svg?branch=master)](https://coveralls.io/github/yageek/lambertgo?branch=master)\n[![GoDoc](https://godoc.org/github.com/yageek/lambertgo?status.png)](https://godoc.org/github.com/yageek/lambertgo) \n[![Report Cart](http://goreportcard.com/badge/yageek/lambertgo)](http://goreportcard.com/report/yageek/lambertgo)\n\nA simple Go package to convert coordinates in Lambert projections system to GPS WGS84 coordinates. It is based on the [IGN algorithms and methods](http://geodesie.ign.fr/contenu/fichiers/documentation/algorithmes/notice/NTG_71.pdf)\n\n# Install\n\n```\ngo get gopkg.in/yageek/lambertgo.v1\n```\n\n# Usage\n\n```go\nimport lgo \"github.com/yageek/lambertgo\"\nimport \"fmt\"\n\n//Declares origin point\nvar point *lgo.Point= \u0026lgo.Point{994272.661,113467.422,0,lgo.Meter}\n\n//Converts pointOrg in Lambert Zone 1 to WGS84 - Results in Radian\npoint.ToWGS84(lgo.LambertI)\n\n//Converts to Degree\npoint.ToDegree()\n\nfmt.Printf(\"Latitude:%.5f - Longitude:%.5f\",point.Y,point.X)\n```\n\n```go\nimport lgo \"github.com/yageek/lambertgo\"\nimport \"fmt\"\n\n//Declares origin point\nvar point *lgo.Point= \u0026lgo.Point{2.228389, 48.824054,0,lgo.Degree}\n\n//Converts to Radian\npoint.ToRadian()\n\n//Converts pointOrg in WGS84 to Lambert Zone 1  - Results in Meter\npoint.ToLambert(lgo.LambertI)\n\n\nfmt.Printf(\"X:%.5f - Y:%.5f\",point.X,point.Y)\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fyageek%2Flambertgo","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fyageek%2Flambertgo","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fyageek%2Flambertgo/lists"}