{"id":42761242,"url":"https://github.com/starwit/vision-api","last_synced_at":"2026-01-29T20:34:12.107Z","repository":{"id":213406724,"uuid":"638827362","full_name":"starwit/vision-api","owner":"starwit","description":"Data model for Starwit's Awareness Engine","archived":false,"fork":false,"pushed_at":"2025-08-29T07:27:36.000Z","size":300,"stargazers_count":2,"open_issues_count":0,"forks_count":1,"subscribers_count":3,"default_branch":"main","last_synced_at":"2025-08-29T11:16:53.526Z","etag":null,"topics":["sae","vision-api"],"latest_commit_sha":null,"homepage":"","language":"Python","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/starwit.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"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":"2023-05-10T07:34:34.000Z","updated_at":"2025-08-29T07:27:38.000Z","dependencies_parsed_at":"2024-02-23T11:28:02.098Z","dependency_job_id":"a5ff7ec7-5575-477a-80d1-61624cf2a0bb","html_url":"https://github.com/starwit/vision-api","commit_stats":null,"previous_names":["starwit/vision-api"],"tags_count":18,"template":false,"template_full_name":null,"purl":"pkg:github/starwit/vision-api","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/starwit%2Fvision-api","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/starwit%2Fvision-api/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/starwit%2Fvision-api/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/starwit%2Fvision-api/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/starwit","download_url":"https://codeload.github.com/starwit/vision-api/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/starwit%2Fvision-api/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28884291,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-29T19:55:09.949Z","status":"ssl_error","status_checked_at":"2026-01-29T19:55:08.490Z","response_time":59,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: 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":["sae","vision-api"],"created_at":"2026-01-29T20:34:11.397Z","updated_at":"2026-01-29T20:34:12.098Z","avatar_url":"https://github.com/starwit.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Vision API repository\n\nThis repo contains the main data model for the Starwit Awareness Engine (SAE). See umbrella repo here: https://github.com/starwit/starwit-awareness-engine\n\n## How-To Use\n\n### Python / Poetry\n- Add the following to your `pyproject.toml` dependencies section\\\n    `visionapi = { git = \"https://github.com/starwit/vision-api.git\", subdirectory = \"python/visionapi\", tag = \"3.5.3\" }`\n    \n### Java / Maven\n- Add dependency to your project:\n    ```xml\n    \u003cdependency\u003e\n      \u003cgroupId\u003ede.starwit\u003c/groupId\u003e\n      \u003cartifactId\u003evision-api\u003c/artifactId\u003e\n      \u003cversion\u003e3.5.3\u003c/version\u003e\n    \u003c/dependency\u003e\n    ```\n- Add maven repository to your `~/.m2/settings.xml` (adapt example / your config as necessary):\n    ```xml\n    \u003csettings xmlns=\"http://maven.apache.org/SETTINGS/1.0.0\"\n    xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\"\n    xsi:schemaLocation=\"http://maven.apache.org/SETTINGS/1.0.0\n                        http://maven.apache.org/xsd/settings-1.0.0.xsd\"\u003e\n\n    \u003cactiveProfiles\u003e\n        \u003cactiveProfile\u003egithub\u003c/activeProfile\u003e\n    \u003c/activeProfiles\u003e\n\n    \u003cprofiles\u003e\n        \u003cprofile\u003e\n        \u003cid\u003egithub\u003c/id\u003e\n        \u003crepositories\u003e\n            \u003crepository\u003e\n            \u003cid\u003ecentral\u003c/id\u003e\n            \u003curl\u003ehttps://repo1.maven.org/maven2\u003c/url\u003e\n            \u003c/repository\u003e\n            \u003crepository\u003e\n            \u003cid\u003egithub\u003c/id\u003e\n            \u003curl\u003ehttps://maven.pkg.github.com/starwit/vision-api\u003c/url\u003e\n            \u003csnapshots\u003e\n                \u003cenabled\u003etrue\u003c/enabled\u003e\n            \u003c/snapshots\u003e\n            \u003c/repository\u003e\n        \u003c/repositories\u003e\n        \u003c/profile\u003e\n    \u003c/profiles\u003e\n\n    \u003cservers\u003e\n        \u003cserver\u003e\n            \u003cid\u003egithub\u003c/id\u003e\n            \u003cusername\u003eYOUR_GITHUB_USER\u003c/username\u003e\n            \u003cpassword\u003eGITHUB_TOKEN_WITH_PACKAGE_READ_PERMISSIONS\u003c/password\u003e\n        \u003c/server\u003e\n    \u003c/servers\u003e\n    \u003c/settings\u003e\n\n    ```\n\n## Tools \u0026 Setup\n\n* Install protoc via pipx:\n    ```\n    sudo apt install pipx\n    pipx install protoc-wrapper==31.1.0\n    ```\n* ! If you change protoc version, you need to change protobuf version in `java\\visionapi\\pom.xml`, `python\\visionapi\\pyproject.toml` and protoc version in `Makefile`\n\n## How-To Update\n1. Make desired changes in `./visionapi`\n2. Increase version in `./VERSION`\n3. Run `make`\n4. Make sure that there are no old leftover files in the generated projects\n5. Describe change in changelog section below\n5. Commit, tag with version and push\n    ```\n    // Commit stuff, like git add, git commit and such\n    git tag \u003cversion_tag\u003e\n    git push\n    git push \u003cversion_tag\u003e\n    ```\n\n## Changelog\n### 3.5.3\n- Add `protobuf-java-util` to java library\n- No protocol changes\n\n### 3.5.2\n- No changes\n\n### 3.5.1\n- Add `class_name` to `DetectionCount`\n\n### 3.5.0\n- Add `ModelMetadata` containing `class_names` mapping to `SaeMessage`\n\n### 3.4.0\n- Add `MessageType` field `type` to all top-level messages\n- Add `TypeMessage` as a dummy to deserialize type field\n\n### 3.3.0\n- Add `PositionMessage` to represent position information from a GNSS receiver\n\n### 3.2.1\n- Add `DetectionCountMessage` to summarize detection data\n\n### 3.2.0\n- Add `source_id` to messages (to distinguish which source the messages are generated from)\n    - Add `IncidentMessage.source_id`\n    - Add `AnomalyMessage.source_id`\n\n### 3.1.0\n- Add camera location field to all messages (as type `GeoCoordinate`)\n    - Add `SaeMessage.frame.camera_location`\n    - Add `AnomalyMessage.camera_location`\n    - Add `IncidentMessage.camera_location`","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fstarwit%2Fvision-api","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fstarwit%2Fvision-api","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fstarwit%2Fvision-api/lists"}