{"id":14955950,"url":"https://github.com/layersoflondon/georeferencer-ruby","last_synced_at":"2025-10-24T09:30:24.483Z","repository":{"id":56874001,"uuid":"175641753","full_name":"layersoflondon/georeferencer-ruby","owner":"layersoflondon","description":"A Ruby client for Georeferencer (www.georeferencer.com)","archived":false,"fork":false,"pushed_at":"2019-03-27T20:10:33.000Z","size":22,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":4,"default_branch":"master","last_synced_at":"2024-10-29T14:18:06.638Z","etag":null,"topics":["georeferencer","mapping","maps","rails","ruby"],"latest_commit_sha":null,"homepage":null,"language":"Ruby","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/layersoflondon.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.txt","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2019-03-14T14:46:02.000Z","updated_at":"2019-06-06T09:28:35.000Z","dependencies_parsed_at":"2022-08-20T10:11:08.666Z","dependency_job_id":null,"html_url":"https://github.com/layersoflondon/georeferencer-ruby","commit_stats":null,"previous_names":[],"tags_count":8,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/layersoflondon%2Fgeoreferencer-ruby","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/layersoflondon%2Fgeoreferencer-ruby/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/layersoflondon%2Fgeoreferencer-ruby/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/layersoflondon%2Fgeoreferencer-ruby/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/layersoflondon","download_url":"https://codeload.github.com/layersoflondon/georeferencer-ruby/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":237944039,"owners_count":19391588,"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":["georeferencer","mapping","maps","rails","ruby"],"created_at":"2024-09-24T13:12:04.299Z","updated_at":"2025-10-24T09:30:24.115Z","avatar_url":"https://github.com/layersoflondon.png","language":"Ruby","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Georeferencer - a Ruby client for [Georeferencer](http://www.georeferencer.com)\nThis is a Ruby library which allows you to get data from Georeferencer about images you've submitted to be georeferenced, along with progress data and contributors.\n\n## Installation\n\nAdd this line to your application's Gemfile:\n\n```ruby\ngem 'georeferencer'\n```\n\nAnd then execute:\n\n    $ bundle\n\nOr install it yourself as:\n\n    $ gem install georeferencer\n\n## Configuration\n\nYou need at least the subdomain of your Georeferencer account. Here's a full list of all the configurable options with their defaults:\n\n```\nGeoreferencer.configure do |config|\n  config.proxy = nil\n  # Configure your proxy address here - e.g.\n  # config.proxy = \"https://localhost:9998\"\n  \n  config.ssl_options = nil\n  # options passed to ssl_options will be passed on to Faraday - e.g.\n  # config.ssl_options = {\n  #   verify: false\n  # }\n  config.subdomain = 'yoursubdomain'\n  config.perform_caching = false\n  config.cache = ActiveSupport::Cache.lookup_store(:memory_store)\n  config.logger = Logger.new(STDOUT)\n  config.user_agent = \"Georeferencer Ruby Client #{Georeferencer::VERSION} (https://github.com/layersoflondon/georeferencer-ruby)\"\nend\n\n```\n   \nA minimal example would be :\n\n```\n   Georeferencer.configure do |config|\n       config.subdomain = 'yoursubdomain'\n   end\n```\n\nIf you're using this gem in Rails, the logger and caching settings will follow those you've set in your Rails configuration.\n\n## Usage\n\n### Images\nGet a list of images:\n\n```\nGeoreferencer::Image.all\n\n```\n\nThere is a scope defined for unreferenced images:\n\n```\n   Georeferencer::Image.unreferenced\n```\n\nAnd you can pass in a collection name:\n\n```\n    Georeferencer::Image.where(collection: 'my-collection')\n```\n\nThere is no endpoint to get a list of collections but Klokan can provide them.\n\n## Contributors\n\nContributors work in the same way, although there is no 'detail' page for contributors.\n\n```\nGeoreferencer::Contributor.all\n\n```\n\n\n## Contributing\n\nBug reports and pull requests are welcome on GitHub at https://github.com/layersoflondon/georeferencer.\n\n## License\n\nThe gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flayersoflondon%2Fgeoreferencer-ruby","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Flayersoflondon%2Fgeoreferencer-ruby","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flayersoflondon%2Fgeoreferencer-ruby/lists"}