{"id":21820013,"url":"https://github.com/ngageoint/simple-features-wkb-java","last_synced_at":"2026-03-10T06:33:09.515Z","repository":{"id":35748900,"uuid":"40028056","full_name":"ngageoint/simple-features-wkb-java","owner":"ngageoint","description":"Simple Features Well-Known Binary Java Library","archived":false,"fork":false,"pushed_at":"2024-04-03T12:03:55.000Z","size":948,"stargazers_count":22,"open_issues_count":0,"forks_count":10,"subscribers_count":14,"default_branch":"master","last_synced_at":"2025-07-06T01:19:22.222Z","etag":null,"topics":["features-wkb","java","java-api","java-libraries","java-library","java-sdk","nga","ogc","ogc-wkb","simple-features","well-known","well-known-binary","wkb"],"latest_commit_sha":null,"homepage":"http://ngageoint.github.io/simple-features-wkb-java","language":"Java","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/ngageoint.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":"2015-07-31T22:57:09.000Z","updated_at":"2024-05-26T00:21:24.000Z","dependencies_parsed_at":"2024-03-22T16:42:46.231Z","dependency_job_id":"97a246fd-40a6-4fee-a156-b1349cde96de","html_url":"https://github.com/ngageoint/simple-features-wkb-java","commit_stats":null,"previous_names":["ngageoint/geopackage-wkb-java"],"tags_count":19,"template":false,"template_full_name":null,"purl":"pkg:github/ngageoint/simple-features-wkb-java","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ngageoint%2Fsimple-features-wkb-java","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ngageoint%2Fsimple-features-wkb-java/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ngageoint%2Fsimple-features-wkb-java/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ngageoint%2Fsimple-features-wkb-java/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ngageoint","download_url":"https://codeload.github.com/ngageoint/simple-features-wkb-java/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ngageoint%2Fsimple-features-wkb-java/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30326891,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-10T05:25:20.737Z","status":"ssl_error","status_checked_at":"2026-03-10T05:25:17.430Z","response_time":106,"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":["features-wkb","java","java-api","java-libraries","java-library","java-sdk","nga","ogc","ogc-wkb","simple-features","well-known","well-known-binary","wkb"],"created_at":"2024-11-27T16:27:59.415Z","updated_at":"2026-03-10T06:33:09.497Z","avatar_url":"https://github.com/ngageoint.png","language":"Java","readme":"# Simple Features WKB Java\n\n#### Simple Features Well Known Binary Lib ####\n\nThe Simple Features Libraries were developed at the [National Geospatial-Intelligence Agency (NGA)](http://www.nga.mil/) in collaboration with [BIT Systems](https://www.caci.com/bit-systems/). The government has \"unlimited rights\" and is releasing this software to increase the impact of government investments by providing developers with the opportunity to take things in new directions. The software use, modification, and distribution rights are stipulated within the [MIT license](http://choosealicense.com/licenses/mit/).\n\n### Pull Requests ###\nIf you'd like to contribute to this project, please make a pull request. We'll review the pull request and discuss the changes. All pull request contributions to this project will be released under the MIT license.\n\nSoftware source code previously released under an open source license and then modified by NGA staff is considered a \"joint work\" (see 17 USC § 101); it is partially copyrighted, partially public domain, and as a whole is protected by the copyrights of the non-government authors and must be released according to the terms of the original open source license.\n\n### About ###\n\n[Simple Features WKB](http://ngageoint.github.io/simple-features-wkb-java/) is a Java library for writing and reading [Simple Feature](https://github.com/ngageoint/simple-features-java) Geometries to and from Well-Known Binary.\n\n### Usage ###\n\nView the latest [Javadoc](http://ngageoint.github.io/simple-features-wkb-java/docs/api/)\n\n#### Read ####\n\n```java\n\n// byte[] bytes = ...\n\nGeometry geometry = GeometryReader.readGeometry(bytes);\nGeometryType geometryType = geometry.getGeometryType();\n\n```\n\n#### Write ####\n\n```java\n\n// Geometry geometry = ...\n\nbyte[] bytes = GeometryWriter.writeGeometry(geometry);\n\n```\n\n### Installation ###\n\nPull from the [Maven Central Repository](http://search.maven.org/#artifactdetails|mil.nga.sf|sf-wkb|2.2.3|jar) (JAR, POM, Source, Javadoc)\n\n```xml\n\n\u003cdependency\u003e\n    \u003cgroupId\u003emil.nga.sf\u003c/groupId\u003e\n    \u003cartifactId\u003esf-wkb\u003c/artifactId\u003e\n    \u003cversion\u003e2.2.3\u003c/version\u003e\n\u003c/dependency\u003e\n\n```\n\n### Build ###\n\n[![Build \u0026 Test](https://github.com/ngageoint/simple-features-wkb-java/workflows/Build%20\u0026%20Test/badge.svg)](https://github.com/ngageoint/simple-features-wkb-java/actions/workflows/build-test.yml)\n\nBuild this repository using Eclipse and/or Maven:\n\n    mvn clean install\n\n### Remote Dependencies ###\n\n* [Simple Features](https://github.com/ngageoint/simple-features-java) (The MIT License (MIT)) - Simple Features Lib\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fngageoint%2Fsimple-features-wkb-java","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fngageoint%2Fsimple-features-wkb-java","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fngageoint%2Fsimple-features-wkb-java/lists"}