create method

CoordinateSequence create(
  1. List<Coordinate> coordinates
)
override

Returns a {@link CoordinateArraySequence} based on the given array (the array is not copied).

@param coordinates the coordinates, which may not be null nor contain null elements

Implementation

CoordinateSequence create(List<Coordinate> coordinates) {
  return CoordinateArraySequence(coordinates);
}