{"id":28754271,"url":"https://github.com/zeroasterisk/meteor-ll-util","last_synced_at":"2025-08-04T06:13:40.237Z","repository":{"id":21917217,"uuid":"25241401","full_name":"zeroasterisk/Meteor-ll-util","owner":"zeroasterisk","description":"Meteor Package: Utilities for Latitude and Longitude","archived":false,"fork":false,"pushed_at":"2015-03-11T18:43:09.000Z","size":128,"stargazers_count":2,"open_issues_count":1,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-06-17T01:08:28.100Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/zeroasterisk.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2014-10-15T06:16:57.000Z","updated_at":"2015-03-11T18:43:09.000Z","dependencies_parsed_at":"2022-07-27T02:47:32.095Z","dependency_job_id":null,"html_url":"https://github.com/zeroasterisk/Meteor-ll-util","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/zeroasterisk/Meteor-ll-util","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zeroasterisk%2FMeteor-ll-util","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zeroasterisk%2FMeteor-ll-util/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zeroasterisk%2FMeteor-ll-util/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zeroasterisk%2FMeteor-ll-util/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/zeroasterisk","download_url":"https://codeload.github.com/zeroasterisk/Meteor-ll-util/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zeroasterisk%2FMeteor-ll-util/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":268657419,"owners_count":24285502,"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","status":"online","status_checked_at":"2025-08-04T02:00:09.867Z","response_time":79,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"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":[],"created_at":"2025-06-17T01:08:14.822Z","updated_at":"2025-08-04T06:13:40.206Z","avatar_url":"https://github.com/zeroasterisk.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Meteor Latitute and Longitude Utilities\n\nThere are many other, more rhobust LatLon tools out there... but if you want\nVERY simple utilites with a small footprint, this is a good option.\n\n## Thanks!\n\nThis is a smaller/simpler (and less featured) implementation of:\nhttp://www.movable-type.co.uk/scripts/latlong.html\n\nWhich can be found here:\nhttps://github.com/chrisveness/geodesy\n\nDo you need more functionality?\n\nYou could switch to the Meteor packaged version of above: `garrilla:geodesy-libraries`\nhttps://github.com/garrilla/geodesy-libraries-for-Meteor\n\n### Install\n\n```\n$ meteor add zeroasterisk:ll-util\n```\n\n### Usage\n\n```\n    // LL.getDestination(from, bearing, km)\n    to = LL.getDestination(\n      // from lat/lng\n      {\n        lat: 38.25896183393495,\n        lng: -85.74673791953198\n      },\n      // bearing [0-360], 90 = East\n      90,\n      // km, distance to travel\n      10\n    );\n\n    to == {\n     lat: 38.258906175821174,\n     lng: -85.63220682666228\n    };\n\n\n    // LL.getDistance(from, to)\n    km = LL.getDistance(\n      // from\n      {\n        lat: 38.25896183393495,\n        lng: -85.74673791953198\n      },\n      // to\n      {\n        lat: 38.258906175821174,\n        lng: -85.63220682666228\n      }\n    );\n\n    km == 9.999999999998517;\n\n\n    // LL.getBearing(from, to)\n    bearing = LL.getBearing(\n      // from\n      {\n        lat: 38.25896183393495,\n        lng: -85.74673791953198\n      },\n      // to\n      {\n        lat: 38.258906175821174,\n        lng: -85.63220682666228\n      }\n    );\n\n    bearing == 90;\n```\n\n\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fzeroasterisk%2Fmeteor-ll-util","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fzeroasterisk%2Fmeteor-ll-util","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fzeroasterisk%2Fmeteor-ll-util/lists"}