{"id":15058938,"url":"https://github.com/bryceco/gomap","last_synced_at":"2025-05-15T20:01:59.294Z","repository":{"id":6590717,"uuid":"7833425","full_name":"bryceco/GoMap","owner":"bryceco","description":"OpenStreetMap editor for iPhone/iPad","archived":false,"fork":false,"pushed_at":"2025-03-31T20:25:44.000Z","size":97596,"stargazers_count":349,"open_issues_count":82,"forks_count":43,"subscribers_count":17,"default_branch":"master","last_synced_at":"2025-04-06T11:34:40.521Z","etag":null,"topics":["editor","ios","macos","mapping","openstreetmap","swift"],"latest_commit_sha":null,"homepage":"","language":"Swift","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"isc","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/bryceco.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE.md","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-01-26T04:30:28.000Z","updated_at":"2025-03-31T20:25:49.000Z","dependencies_parsed_at":"2023-01-13T14:02:57.772Z","dependency_job_id":"a0c53679-e5c9-49c3-9150-819fa1318338","html_url":"https://github.com/bryceco/GoMap","commit_stats":{"total_commits":3600,"total_committers":108,"mean_commits":"33.333333333333336","dds":"0.44166666666666665","last_synced_commit":"e194405b2998bba217eb96286ad8dd97264aab55"},"previous_names":[],"tags_count":119,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bryceco%2FGoMap","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bryceco%2FGoMap/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bryceco%2FGoMap/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bryceco%2FGoMap/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/bryceco","download_url":"https://codeload.github.com/bryceco/GoMap/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247766470,"owners_count":20992486,"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":["editor","ios","macos","mapping","openstreetmap","swift"],"created_at":"2024-09-24T22:33:50.910Z","updated_at":"2025-04-08T02:37:53.896Z","avatar_url":"https://github.com/bryceco.png","language":"Swift","readme":"\n# Go Map!!\n\nGo Map!! is an iPhone/iPad editor for adding cartographic information to [OpenStreetMap][1].\n\n[![Download on the App Store badge][2]][3]\n\n[Tutorial/help][8] on the OpenStreetMap Wiki.\n\n## Join our TestFlight beta!\n\nDo you want to help testing pre-releases of Go Map!!?\n[Become a TestFlight tester][4] today! 🚀\n\n## Source code structure\n\n* iOS - App-specific UI code\n\t* CustomViews - A collection of UIViews and CALayers primarily used by MapView\n\t* Direction - The view controller for measuring direction\n\t* Height - The view controller for measuring height\n\t* OpeningHours - Support for recognizing hours via camera \n\t* PhotoShare - App extension so we appear in the system Share menu\n\t* POI - View Controllers for tagging objects\n\t* Quests - Quest VCs and related code\n\t* Upload - View controller for uploading changesets\n* Shared - General purpose code (drawing code, OSM data structures, etc)\n\t* Database - A SQLite3 database storing downloaded OSM data\n\t* EditorLayer - The low-level graphical display for drawing nodes/ways\n\t* MapMarkers - Markers for Quests, Notes, etc.\n\t* OSMModels - Code for managing and storing OSM objects (nodes, ways, etc.)\n\t* PresetsDatabase - Code for processing iD presets\n\t* Tiles - Aerial imagery processing and display\n* Images - Images used for application elements (buttons, etc)\n* POI-Icons - Icons used for map elements (POIs, etc)\n* presets - The presets database copied from the iD editor\n* xliff - Translation files\n\n## Application architecture\n\n![Architecture diagram](./Architecture.png)\n\n## External assets\n\nA number of assets used in the app come from other repositories, and should be periodically updated. Because updating these items can be a lengthy process it is performed manually rather than at build time:\n- iD presets database (https://github.com/openstreetmap/id-tagging-schema) \n- iD presets icons (https://github.com/ideditor/temaki, https://github.com/mapbox/maki)\n- Name Suggestion Index (https://github.com/osmlab/name-suggestion-index)\n- NSI brand imagery (pulled from Facebook/Twitter/Wikipedia)\n- StreetComplete quest filters (https://github.com/streetcomplete/StreetComplete)\n- Weblate translations (https://hosted.weblate.org/projects/go-map/app)\n\n### Updating external assets\n\n```sh\ncd src\n(cd presets \u0026\u0026 ./update.sh)\t\t\t# fetches latest presets.json, etc. files and NSI\n(cd presets \u0026\u0026 ./getBrandIcons.py)\t\t# downloads images from various websites and converts them to PNG as necessary\n(cd presets \u0026\u0026 ./uploadBrandIcons.sh)\t# uploads imagery to gomaposm.com where they can be downloaded on demand at runtime (password required)\n(cd POI-Icons \u0026\u0026 ./update.sh)\t\t\t# fetches Maki/Temaki icons \n(cd xliff \u0026\u0026 ./update.sh)\t\t\t\t# downloads latest translations from Weblate (API token required). The output is very noisy and can be ignored\n```\n\n## Formatting\n\nIn order to have a consistent code style, please make sure to install\n[SwiftFormat][6] and run it on a regular basis. Consider setting up a `pre-commit`\nGit hook, as described [here][7].\n\n## Assets\n\nThe Go Map!! app icon was created by [@Binnette][5].\n\n[1]: https://www.openstreetmap.org\n[2]: download-on-the-app-store.png\n[3]: https://itunes.apple.com/app/id592990211\n[4]: https://testflight.apple.com/join/T96F9wYq\n[5]: https://github.com/Binnette\n[6]: https://github.com/nicklockwood/SwiftFormat\n[7]: https://github.com/nicklockwood/SwiftFormat#git-pre-commit-hook\n[8]: https://wiki.openstreetmap.org/w/index.php?title=Go_Map!!\n\n\n## Presets and translation\n\nGo Map!! is using iD presets, so you can improve translations [by improving translations of iD presets](https://github.com/openstreetmap/id-tagging-schema).\n\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbryceco%2Fgomap","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbryceco%2Fgomap","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbryceco%2Fgomap/lists"}