{"id":19824806,"url":"https://github.com/stephangeorg/georcoder-deprecated","last_synced_at":"2026-05-10T22:42:32.378Z","repository":{"id":75414414,"uuid":"52008780","full_name":"StephanGeorg/georcoder-deprecated","owner":"StephanGeorg","description":null,"archived":false,"fork":false,"pushed_at":"2017-08-25T14:23:55.000Z","size":1808,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-01-11T08:51:25.359Z","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/StephanGeorg.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,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2016-02-18T13:24:51.000Z","updated_at":"2020-04-20T09:13:49.000Z","dependencies_parsed_at":"2023-04-25T10:13:04.122Z","dependency_job_id":null,"html_url":"https://github.com/StephanGeorg/georcoder-deprecated","commit_stats":{"total_commits":20,"total_committers":1,"mean_commits":20.0,"dds":0.0,"last_synced_commit":"e1f00e3b4ce93074c36c2d5f4417d2287f289b8e"},"previous_names":[],"tags_count":12,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StephanGeorg%2Fgeorcoder-deprecated","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StephanGeorg%2Fgeorcoder-deprecated/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StephanGeorg%2Fgeorcoder-deprecated/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StephanGeorg%2Fgeorcoder-deprecated/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/StephanGeorg","download_url":"https://codeload.github.com/StephanGeorg/georcoder-deprecated/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":241181148,"owners_count":19923376,"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":[],"created_at":"2024-11-12T11:06:07.892Z","updated_at":"2025-11-24T05:03:22.503Z","avatar_url":"https://github.com/StephanGeorg.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Georcoder\n\nA promises based geocoder for node.js\n\n\n## Installation\n\nInstalling using npm (node package manager):\n\n    npm i georcoder\n\n\n## Usage ##\n\n### Initialization ###\n```javascript\nvar Georcoder = require('georcoder'),\n    geocoder = new GeocoderArcGIS({\n      client_id:      'YOUR CLIENT ID',\n      client_secret:  'YOUR CLIENT SECRET'\n    });\n```\n\nThe constructor function also takes an optional configuration object:\n\n### Geocode ###\n```javascript\n  geocoder.geocode('Berlin',{})\n  .then(function(response){\n    console.log(response);\n  })\n  .catch(function(error){\n    console.log(error);\n  });\n```\n\nOptional parameters:\n\n\n### Reverse ###\n```javascript\n  geocoder.positionToWords({\n    position: '51.484463,-0.195405'\n  }).then(function(response) {\n\n    console.log(response); //prom.cape.pump\n  });\n```\n\nOptional parameters:\n\n\n### Suggest ###\n```javascript\ngeocoder.suggest('Glogauer Straße, Berlin',{})\n    .then(function(response){\n      console.log(response);\n    })\n    .catch(function(error){\n      console.log(error);\n    });\n```\n\nOptional parameters:\n\n\n\n### Response ###\n\nAll the methods return a promise.\n\n## License\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fstephangeorg%2Fgeorcoder-deprecated","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fstephangeorg%2Fgeorcoder-deprecated","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fstephangeorg%2Fgeorcoder-deprecated/lists"}