Java Code Examples for org.locationtech.jts.geom.Coordinate#setZ()
The following examples show how to use
org.locationtech.jts.geom.Coordinate#setZ() .
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: TWKBReader.java From geowave with Apache License 2.0 | 5 votes |
@Override public Coordinate readPoint(final ByteBuffer input) throws IOException { final Coordinate coordinate = super.readPoint(input); if (hasZ) { coordinate.setZ(VarintUtils.readSignedLong(input) / zPrecisionMultiplier); } if (hasM) { coordinate.setM(VarintUtils.readSignedLong(input) / mPrecisionMultiplier); } return coordinate; }
Example 2
Source File: GeoJSONTest.java From arctic-sea with Apache License 2.0 | 4 votes |
@Override public void filter(Coordinate coord) { coord.setZ(random.nextInt(1000)); }