-
-
Notifications
You must be signed in to change notification settings - Fork 364
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Issue of drawing a compoun polygon (Oracle spatial) #4840
Comments
|
@msmitherdc, any idea? Is it possible to cast compond polygons somehow in the data satement? This probably should have started on the mapserver-users mailing list rather than as a issue ticket. --Steve |
|
The issue is that mapserver doesn't support the circular arcs between nodes. You could wrap it in a 0 size buffer call to just get the outside or also possibly a sdo_concave_hull call. |
|
Can you give a link of the method that shows how to do ? thanks you in advance . |
|
http://docs.oracle.com/cd/E11882_01/appdev.112/e11830/sdo_objgeom.htm#SPATL1111 |
|
@msmitherdc Are you sure when using sdo_geom.sdo_buffer, we don't get a same problem When i set: I got error: Error: ORA-13226: interface not supported without a spatial index. When editting that command like below: DATA "SHAPE FROM (SELECT sdo_geom.sdo_buffer(shape, 0, 0.01) shape FROM SYS.COLA_MARKETS WHERE name='cola_f') USING NONE" I continued getting again the same error : msDrawShape() General error message. Only polygon shapes can be drawn using a POLYGON layer definition Can you suggest me what to do ? I have used Oracle 10.2.0.3 for client and server. |
|
Has anybody tried SDO_GEOM.SDO_ARC_DENSIFY |
Hello,
I try to draw a simple compound polygon by using ms4w 6.4 with a layer like:
and shape_data = SDO_GEOMETRY( 2003, NULL, NULL, SDO_ELEM_INFO_ARRAY(1,1005,2, 1,2,1, 5,2,2),
SDO_ORDINATE_ARRAY(6,10, 10,1, 14,10, 10,14, 6,10))
I got : msDrawShape() General error message. Only polygon shapes can be drawn using a POLYGON layer definition when executing the command:
sh2img -m test.map -o test.png -map_debug 3
Can anyone show me how to resolve that problem ?
The text was updated successfully, but these errors were encountered: