how can i convert wkb to wkt form ...
i stored coordinates in wkb but now can it will display to use in wkt form
|
how can i convert wkb to wkt form ... i stored coordinates in wkb but now can it will display to use in wkt form |
|||||||||
|
|
If you want to use PostGIS to do the conversion, you can choose from the following functions:
More: http://postgis.refractions.net/docs/ch04.html#OpenGISWKBWKT |
|||||
|
|
If you can work with Java, the JTS Topology Suite can perform such translation by using the classes com.vividsolutions.jts.io.WKBReader and com.vividsolutions.jts.geom.Geometry. A code like this should get the geometry in Well-Known Text format:
|
|||
|
|