geometry-api-java
geometry-api-java copied to clipboard
The Esri Geometry API for Java enables developers to write custom applications for analysis of spatial data. This API is used in the Esri GIS Tools for Hadoop and other 3rd-party data processing solu...
Make Circle Geometry
val envp = new Envelope2D(....) envp.move(dx,dy).scale(0.3).reaspect(ax,ay).centerAt(cx,cy)
Actually all classes should implement serializable
Hi, Is there any API for linear referencing in geometry-api-java module or currently being thought off? Is so what are they and where can I get some information about them?...
Geometry API 1.2 version from [central maven repository](http://central.maven.org/maven2/com/esri/geometry/esri-geometry-api/1.2/esri-geometry-api-1.2.jar) is different from what I am getting when doing build from source. Suggest use SNAPSHOT version for development and release builds in...
Point2D and Point3D should have the same behavior in use and in method signatures. For example, Point2D's sub method does a minus-equals on the coordinates, whereas Point3D's sub method returns...
The cases in question are 1. the cuttee and the cutter don't intersect at all 2. the cuttee is a polygon and cutter doesn't pass all the way through it...
Currently, OperatorImportFromGeoJSON only accepts spatial references in this form: "crs":"EPSG:4326" The operator should at least also accept this form: "crs":{"type":"name","properties":{"name":"EPSG:4326"}
To reproduce, run OperatorExportToGeoJson.local().execute with exportFlags = GeoJsonExportFlags.geoJsonExportDefaults, spatial reference wkid = 3857, and the following geometry: {"rings":[[[1600,9082],[1600,8682],[1100,8682],[1100,9082],[1600,9082]]]} The output looks like this: {"type":"Polygon","coordinates":[[[1600.0,9082.0],[1600.0,8682.0],[1100.0,8682.0],[1100.0,9082.0],[1600.0,9082.0]]]} It really would be better to...
Proximity2DResult does not have methods to set/get boolean signifying right side. We need these two methods: 1. setRightSide() 2. isRightSide() Then we need to implement this method which calculates left/right...