{"id":16938933,"url":"https://github.com/yageek/lambert","last_synced_at":"2025-04-11T19:20:43.785Z","repository":{"id":136753757,"uuid":"11218322","full_name":"yageek/lambert","owner":"yageek","description":":earth_africa: C library to convert Lambert coordinates to WGS84 with IGN Algorithms","archived":false,"fork":false,"pushed_at":"2017-06-09T06:20:22.000Z","size":300,"stargazers_count":4,"open_issues_count":0,"forks_count":6,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-03-25T15:13:00.331Z","etag":null,"topics":["c","coordinates","lambert","wgs84"],"latest_commit_sha":null,"homepage":"","language":"C","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"lgpl-2.1","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,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2013-07-06T13:06:47.000Z","updated_at":"2021-12-31T13:56:07.000Z","dependencies_parsed_at":null,"dependency_job_id":"3b3868b3-2c5e-489b-8ddb-42410d9c6ff4","html_url":"https://github.com/yageek/lambert","commit_stats":null,"previous_names":[],"tags_count":4,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yageek%2Flambert","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yageek%2Flambert/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yageek%2Flambert/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yageek%2Flambert/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/yageek","download_url":"https://codeload.github.com/yageek/lambert/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248465348,"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":["c","coordinates","lambert","wgs84"],"created_at":"2024-10-13T21:03:04.898Z","updated_at":"2025-04-11T19:20:43.780Z","avatar_url":"https://github.com/yageek.png","language":"C","readme":"[![badge](https://img.shields.io/badge/conan.io-lambert%2F2.0.1-green.svg?logo=data:image/png;base64%2CiVBORw0KGgoAAAANSUhEUgAAAA4AAAAOCAMAAAAolt3jAAAA1VBMVEUAAABhlctjlstkl8tlmMtlmMxlmcxmmcxnmsxpnMxpnM1qnc1sn85voM91oM11oc1xotB2oc56pNF6pNJ2ptJ8ptJ8ptN9ptN8p9N5qNJ9p9N9p9R8qtOBqdSAqtOAqtR%2BrNSCrNJ/rdWDrNWCsNWCsNaJs9eLs9iRvNuVvdyVv9yXwd2Zwt6axN6dxt%2Bfx%2BChyeGiyuGjyuCjyuGly%2BGlzOKmzOGozuKoz%2BKqz%2BOq0OOv1OWw1OWw1eWx1eWy1uay1%2Baz1%2Baz1%2Bez2Oe02Oe12ee22ujUGwH3AAAAAXRSTlMAQObYZgAAAAFiS0dEAIgFHUgAAAAJcEhZcwAACxMAAAsTAQCanBgAAAAHdElNRQfgBQkREyOxFIh/AAAAiklEQVQI12NgAAMbOwY4sLZ2NtQ1coVKWNvoc/Eq8XDr2wB5Ig62ekza9vaOqpK2TpoMzOxaFtwqZua2Bm4makIM7OzMAjoaCqYuxooSUqJALjs7o4yVpbowvzSUy87KqSwmxQfnsrPISyFzWeWAXCkpMaBVIC4bmCsOdgiUKwh3JojLgAQ4ZCE0AMm2D29tZwe6AAAAAElFTkSuQmCC)](http://www.conan.io/source/lambert/2.0.1/yageek/stable)\n\n# lambert\nA simple C library to convert Lambert coordinates to GPS WGS84 coordinates based on the [IGN algorithms and methods](http://geodesie.ign.fr/contenu/fichiers/documentation/algorithmes/notice/NTG_71.pdf)\n\n# Install\n\n## Windows/Raw import\n\nAdd `lambert.h` and `lambert.c` into your project\n\n## Unix/static library\n\nInside the source folders :\n\n\tmkdir build \u0026\u0026 cd build\n\tcmake ..\n\tmake install\n\n## Debian package\n\n You can obtain `.deb` from [bintray](https://bintray.com/yageek/deb/liblambert)\n\n## Conan\n\n````\n[requires]\nlambert/2.0.1@yageek/stable\n\n[generators]\ncmake\n````\nSee: https://www.conan.io/source/lambert/2.0.1/yageek/stable\n\n# Usage\n\n```c\n//Declares origin point and translated point\nYGPoint point = YGMeterPoint(994272.661,113467.422);\n\n//Converts point in Lambert Zone 1 to WGS84\npoint = YGPointConvertWGS84(point,LAMBERT_I)\n\n//Convert to Degree\npoint = YGPointToDegree(point);\n\nprintf(\"Lat:%.9f - Lon:%.9f\",point.y,point.x);\n```\n\n# Changelog\n#### 2.0.1\n* Fix bug when transforming coordinates from cartesian to geographic in non Lambert93.\n\n#### 2.0.0\n* Change API.\n\n#### 1.0.1\n* Fix bug in Lambert93 case.\n\n#### 1.0.0\n* First release.\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fyageek%2Flambert","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fyageek%2Flambert","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fyageek%2Flambert/lists"}