When using ST_Geometry to get the wkt or wkb from a feature class each coordinate gets rounded to 4 numbers after the decimal.Query:
SELECT sde.st_astext(g.shape) as wkt
FROM geodata g
WHERE gisid in (1234)
Result:POLYGON (( 818052.36380000 5742316.96420000, ...)
When accessing the same feature class via REST API Query from ArcGIS Server i will get:
[
[
818052.3638000004,
5742316.9641999993
],
...
]
Using:- ArcGIS Server 10 SP 2 on Windows 2008 english- ArcSDE 10 SP 2, using direct connect for all features @ mxd- Oracle 11.2.0.3 on Windows 2008 germanWhy do i get only rounded values via ST_Geometry? Is this a Oracle Issue? It it possible to alter the session to get the complete value?Querying the same feature via ArcGIS Server REST API and ST_Geometry should return exactly the same Polygon.Any Idea?Stefan