Description
There's a package Dart JTS which is a port of Java Topology Suite which Java ORM libraries like Hibernate Spatial use to support PostGIS datatypes.
If someone needs to implement support for a custom datatype, how can it be added to it.
Some Pointers about PostGIS(geometry) datatype.
-
It has 2 major data types, Geometry or Geography.
-
It stores the data as String in format called WKB(Well-known binary) and this package Dart JTS can decode & encode wkb formats and return the relevant datatype.
-
It is the best and most amazing packages for spatial analytics with super fast speeds and has pretty nice functions.
So, I need pointers to how I can handle this as I would love to have ability to create models with geometric support.
The link on how to add support for custom datatypes is broken so any pointers to implementing this could be awesome.