arso Posted September 17, 2016 Report Share Posted September 17, 2016 I want to create a Wedge in SQL server without using any mapping tool like ArcMap, which will be visualized (only) in ArcGIS. Unfortunately, ST_Geometry is not supported in SQL Server and CircularString is not supported in ArcGIS. I assumed to create a buffer around a point but my actual requirement is just a wedge (partial circle with start and end angles). For Example, for parametric wedges in PostgreSQL/PostGIS sde.st_geometry (x, y, z, m, startangle, endangle, outerradius, innerradius, number_of_points, srid) Is there anybody who can guide me to create this through any logic? Quote Link to comment Share on other sites More sharing options...
rahmansunbeam Posted September 17, 2016 Report Share Posted September 17, 2016 Python could be workaround. Try this, https://github.com/ngageoint/wedge-maker-4-gis The tool uses arcgis licenses and needs access to it's tools. Probably you'll have a shapefile to view in arcgis which can also be stored in your database. If you do not have the licenses try matplotlib. wedge = mpatches.Wedge(grid[2], 0.1, 30, 270, ec="none") patches.append(wedge) label(grid[2], "Wedge") 1 Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.