You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+4-2Lines changed: 4 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -20,7 +20,7 @@ It is originally based on [postgis-java](https://github.com/postgis/postgis-java
20
20
* Clean up code to basically only work on [WKB](https://en.wikipedia.org/wiki/Well-known_text#Well-known_binary)/EWKB implementations to reduce code duplication and focus on the actual database format
21
21
* Support for the latest PostgreSQL and PostGIS versions
22
22
* Recommended are PostgreSQL 14 and PostGIS 3.2.0
23
-
* Supported are versions starting from PostgreSQL 9.6 and PostGIS versions 2.3
23
+
* Supported are versions starting from PostgreSQL 9.6 and PostGIS 2.3
24
24
* Support for JDK 11+ (there is an older [branch for JDK 8](https://github.com/sebasbaumh/postgis-java-ng/tree/jdk8))
25
25
* The license is still LGPL
26
26
@@ -45,10 +45,12 @@ There is a Maven artifact in the official Maven repository, so just add this to
45
45
<dependency>
46
46
<groupId>io.github.sebasbaumh</groupId>
47
47
<artifactId>postgis-java-ng</artifactId>
48
-
<version>21.0.0</version>
48
+
<version>22.0.0</version>
49
49
</dependency>
50
50
```
51
51
52
+
The version reflects the year of the release, e.g. 22.0.0 is a version released in 2022.
53
+
52
54
The API differs a bit from [postgis-java](https://github.com/postgis/postgis-java) with the main point being a different namespace (`io.github.sebasbaumh.postgis`) as publishing a project to Maven Central requires to own that namespace.
53
55
In addition the class structure is a bit different (see below) to support arc geometries and reduce boilerplate code, but you should be able to adapt to it easily.
54
56
The implementations of the parser and writer for the geometries have been heavily reworked to speed up processing and reduce complexity.
0 commit comments