createSizeDimMeas method

CoordinateSequence createSizeDimMeas(
  1. int size,
  2. int dimension,
  3. int measures
)

Creates a {@link CoordinateSequence} of the specified size and dimension with measure support. For this to be useful, the {@link CoordinateSequence} implementation must be mutable.

If the requested dimension or measures are larger than the CoordinateSequence implementation can provide, then a sequence of maximum possible dimension should be created. An error should not be thrown.

@param size the number of coordinates in the sequence @param dimension the dimension of the coordinates in the sequence (if user-specifiable, otherwise ignored) @param measures the number of measures of the coordinates in the sequence (if user-specifiable, otherwise ignored)

Implementation

CoordinateSequence createSizeDimMeas(int size, int dimension, int measures) {
  return createSizeDim(size, dimension);
}