WKBWriter.withDimOrder constructor

WKBWriter.withDimOrder(
  1. int outputDimension,
  2. Endian byteOrder
)

Creates a writer that writes {@link Geometry}s with the given dimension (2 or 3) for output coordinates and byte order If the input geometry has a small coordinate dimension, coordinates will be padded with {@link Coordinate#NULL_ORDINATE}.

@param outputDimension the coordinate dimension to output (2 or 3) @param byteOrder the byte ordering to use

Implementation

WKBWriter.withDimOrder(int outputDimension, Endian byteOrder)
    : this.withDimOrderSrid(outputDimension, byteOrder, false);