Seems like either Nabble or the mailing list ate my Oracle view example. Here it is again:
CREATE OR REPLACE VIEW MY_VIEW_DENSIFIED AS SELECT ID, SDO_GEOM.SDO_ARC_DENSIFY(t.GEOM, m.DIMINFO, 'arc_tolerance=0.01 unit=m') as GEOM FROM MY_VIEW t, ALL_SDO_GEOM_METADATA m WHERE m.TABLE_NAME = 'MY_VIEW' AND m.OWNER = 'MY_SCHEMA' Cheers, Patrik Johansson On Wed, Jan 18, 2017 at 4:13 PM, morkl <[email protected]> wrote: > Just a thought: Have you tried creating a buffer with distance 0? > > I haven't tried it myself, because whenever I've had troubles with > CurvePolygons I've been using the Maestro SDK, which fails before you have a > chance to create a buffer. > > If the data is stored in a database, you might be able to create a view that > generates regular polygons. > This is the pattern I've used for Oracle views in the past: > > > > > -- > View this message in context: > http://osgeo-org.1560.x6.nabble.com/Mapguide-WKT-standards-tp5303869p5303878.html > Sent from the MapGuide Users mailing list archive at Nabble.com. > _______________________________________________ > mapguide-users mailing list > [email protected] > https://lists.osgeo.org/mailman/listinfo/mapguide-users _______________________________________________ mapguide-users mailing list [email protected] https://lists.osgeo.org/mailman/listinfo/mapguide-users
