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...
Jar file size with ant's build.xml is 571k, with pom.xml it's 850 kb. Is debug info on by default in pom file?
I need to use PolygonUtils but it's not in the released Jar.. how can i use it?..thank you.
Hi together, currently I play arround with your geometry-api-java (version 1.2.1 from maven) to read an entire shape file and stumbled over the following issue: ``` java.lang.OutOfMemoryError: Java heap space...
I have just started using geometry-api-java in Apache Calcite and I have some questions. Is there a forum or mailing list to ask them? The [contributing guidelines](https://github.com/esri/contributing) don't mention one.
` MapGeometry mapGeo = OperatorImportFromGeoJson.local().execute(GeoJsonImportFlags.geoJsonImportDefaults, Geometry.Type.Polygon, geojson, null);` Apparently, the z-values of the polygon in geojson are ignored
Hi, I'm trying to migrate my code from JTS to your library to better deal with the poles and the dateline. What I need is to clip everything that get...
public static OGCGeometry fromText(String text) { OperatorImportFromWkt op = (OperatorImportFromWkt)OperatorFactoryLocal.getInstance().getOperator(Type.ImportFromWkt); OGCStructure ogcStructure = op.executeOGC(0, text, (ProgressTracker)null); return createFromOGCStructure(ogcStructure, SpatialReference.create(4326)); } For this function (same as fromBinary), it will output OGCGeometry...
it is not worked when i do the intersection operator by setting the spatial reference which tolerance is 0.001. however the result is not empty. Envelope env1=new Envelope(); env1.setCoords(110.5657682255, 10,...
In summary, I believe that this project (or refactored project) should be the base Geometry library for all ESRI Java projects, where other ESRI SDKs reference this project. Quoting from...
The Java 8 [doc lint](http://docs.oracle.com/javase/8/docs/technotes/tools/unix/javadoc.html#BEJEFABE) is pretty strict with Javadoc. This commit should resolve problems that result in failure and help us avoid having to turn off the lint tool....