{"id":34033201,"url":"https://github.com/viktor-platform/bro","last_synced_at":"2026-04-05T11:31:40.561Z","repository":{"id":166470576,"uuid":"602979260","full_name":"viktor-platform/bro","owner":"viktor-platform","description":"A python package that is able to communicate with the REST API of the BRO (BasisRegistratie Ondergrond).","archived":false,"fork":false,"pushed_at":"2024-08-16T09:08:02.000Z","size":109,"stargazers_count":7,"open_issues_count":6,"forks_count":2,"subscribers_count":2,"default_branch":"development","last_synced_at":"2026-03-16T09:43:20.740Z","etag":null,"topics":["bro","cpt","geotechnical-engineering"],"latest_commit_sha":null,"homepage":"","language":"Python","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/viktor-platform.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE.txt","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":"2023-02-17T11:04:24.000Z","updated_at":"2025-05-19T14:31:58.000Z","dependencies_parsed_at":"2024-03-25T16:56:33.728Z","dependency_job_id":"0898ac1c-76b2-4607-b85e-4822524dab9c","html_url":"https://github.com/viktor-platform/bro","commit_stats":null,"previous_names":["viktor-platform/bro","viktor-platform/bro-api"],"tags_count":18,"template":false,"template_full_name":null,"purl":"pkg:github/viktor-platform/bro","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/viktor-platform%2Fbro","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/viktor-platform%2Fbro/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/viktor-platform%2Fbro/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/viktor-platform%2Fbro/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/viktor-platform","download_url":"https://codeload.github.com/viktor-platform/bro/tar.gz/refs/heads/development","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/viktor-platform%2Fbro/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31434624,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-05T08:13:15.228Z","status":"ssl_error","status_checked_at":"2026-04-05T08:13:11.839Z","response_time":75,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["bro","cpt","geotechnical-engineering"],"created_at":"2025-12-13T19:03:48.265Z","updated_at":"2026-04-05T11:31:40.551Z","avatar_url":"https://github.com/viktor-platform.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"![](https://img.shields.io/badge/release-vX.Y.Z-green)\n\n# BRO\nThis package can access the REST API from the [BRO](https://www.broloket.nl/ondergrondgegevens). Currently, this package provides\nfunctionality to request CPTs from the BRO when you provide a region of interest. The format is based on the REST API of the BRO, which is described [here](https://publiek.broservices.nl/sr/cpt/v1/swagger-ui/#/default/) for CPTs.\n\nCurrent options include retrieval of the following objects: \n1. CPTs (format: bytes, dict)\n\nThe package also allows export of the retrieved data in GeoJSON format. \n\n**Note 1**: The BRO is only available for the Netherlands, other locations are not supported.\n\n**Note 2**: The API of the BRO is limited and requesting large amounts of data may result in instability.\n\n## Installation\n\n```python\npip install bro\n```\n\n## Use\nExample usage to retrieve CPTs from the BRO as dictionaries. \n```python\nfrom datetime import datetime\n\nimport Envelope\nimport Point\nimport get_cpt_characteristics_and_return_cpt_objects\n\nbegin_date = datetime(2015, 1, 1).strftime(\"%Y-%m-%d\")\nend_date = datetime(2023, 3, 3).strftime(\"%Y-%m-%d\")\n\n# Define small square area that returns 5 valid cpts\nlower_corner = Point(51.92269686635185, 4.469594207611851)\nupper_corner = Point(51.923034432171065, 4.470094707426648)\n\narea = Envelope(lower_corner, upper_corner)\ncpts = get_cpt_characteristics_and_return_cpt_objects(begin_date, end_date, area, as_dict= True)\n\n\n```\n\n## LICENSE\n\n```\nMIT License\n\nCopyright (c) 2023 VIKTOR\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n\n```\n\n## Publish\n- update changelog with version number\n- update `bro/__version__.py`\n- tag with version number","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fviktor-platform%2Fbro","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fviktor-platform%2Fbro","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fviktor-platform%2Fbro/lists"}