{"id":27391264,"url":"https://github.com/rebeccasc/bimtoosm","last_synced_at":"2025-07-29T18:13:14.937Z","repository":{"id":44530896,"uuid":"363657929","full_name":"rebeccasc/BIMtoOSM","owner":"rebeccasc","description":"A BIM to OSM parser","archived":false,"fork":false,"pushed_at":"2024-08-18T08:57:45.000Z","size":2288,"stargazers_count":9,"open_issues_count":0,"forks_count":3,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-04-13T20:14:01.956Z","etag":null,"topics":["3d-models","bim","geo","ifc","java","josm-plugin","openstreetmap","osm","parser"],"latest_commit_sha":null,"homepage":"","language":"Kotlin","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"agpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/rebeccasc.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","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,"zenodo":null}},"created_at":"2021-05-02T13:29:54.000Z","updated_at":"2024-08-18T08:57:49.000Z","dependencies_parsed_at":"2025-04-13T20:14:04.294Z","dependency_job_id":"4c2170b5-e4b1-4f5a-8939-c95da0477b5f","html_url":"https://github.com/rebeccasc/BIMtoOSM","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/rebeccasc/BIMtoOSM","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rebeccasc%2FBIMtoOSM","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rebeccasc%2FBIMtoOSM/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rebeccasc%2FBIMtoOSM/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rebeccasc%2FBIMtoOSM/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/rebeccasc","download_url":"https://codeload.github.com/rebeccasc/BIMtoOSM/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rebeccasc%2FBIMtoOSM/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":267731058,"owners_count":24135664,"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-07-29T02:00:12.549Z","response_time":2574,"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":["3d-models","bim","geo","ifc","java","josm-plugin","openstreetmap","osm","parser"],"created_at":"2025-04-13T20:14:00.231Z","updated_at":"2025-07-29T18:13:14.929Z","avatar_url":"https://github.com/rebeccasc.png","language":"Kotlin","funding_links":[],"categories":[],"sub_categories":[],"readme":"# BIMtoOSM\n[![CI](https://github.com/rebeccasc/BIMtoOSM/actions/workflows/gradle.yml/badge.svg?branch=master\u0026event=push)](https://github.com/rebeccasc/BIMtoOSM/actions/workflows/gradle.yml)\n[![license: AGPLv3](https://img.shields.io/badge/license-AGPLv3-blue.svg?style=flat-square\u0026maxAge=7200)](https://github.com/rebeccasc/BIMtoOSM/blob/master/LICENSE)\n\n\u003cp align=\"left\"\u003e\n  \u003cimg width=\"97%\" src=\"docs/banner.svg\"\u003e\n\u003c/p\u003e\n\nA parser to transform **B**uilding **I**nformation **M**odeling ([BIM](https://en.wikipedia.org/wiki/Building_information_modeling)) to **O**pen**S**treet**M**ap ([OSM](https://www.openstreetmap.org/#map=18/50.81353/12.92928\u0026layers=N)) data. This open source project wants to make Building Information Model data available for OpenStreetMap.\n\n## Quick start\n### Use the API\n:construction: **Currently, the source code is being rebuilt from scratch and the API might change** :construction:\n```kotlin\n// Setup configuration (for full description see wiki -\u003e Usage):\nval defaultConfig = Configuration()\n\n// Init parser\nval parser = BIMtoOSMParser(defaultConfig)\n\n// Parse BIM file\nval osmData: OSMDataSet = parser.parse(\"path-to-file.ifc\")\n\n// Access the data (for full description see wiki -\u003e Usage)\n\n// Export OSM data\nExporter.exportOSM(\"bim-to-osm.osm\", osmData, true)\n```\n\n### Use JOSM GUI\nThe parser is integrated into [JOSM](https://josm.openstreetmap.de/)s [IndoorHelper plugin](https://wiki.openstreetmap.org/wiki/JOSM/Plugins/indoorhelper). To use the GUI you need to install JOSM and download the IndoorHelper plugin via `Edit` \u0026#8594; `Preferences` \u0026#8594; `Plugins`. Import example:\n\n\u003cp align=\"center\"\u003e\n  \u003cimg width=\"75%\" src=\"https://wiki.openstreetmap.org/w/images/e/e2/Bim-import.gif\"\u003e\n\u003c/p\u003e\n\n\u003cbr\u003e\n\n## Dependencies\n* [opensourceBIM/IfcPlugins](https://github.com/opensourceBIM/IfcPlugins)\n* [JTS Topology Suite](https://github.com/locationtech/jts)\n\n## Contributing\nWant to contribute? Check the [contribution guidelines](https://github.com/rebeccasc/BIMtoOSM/blob/master/CONTRIBUTING.md)\n\n## Wiki\n\nFind a detailed user guide at https://rebeccasc.github.io/BIMtoOSM/\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frebeccasc%2Fbimtoosm","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frebeccasc%2Fbimtoosm","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frebeccasc%2Fbimtoosm/lists"}