createCoordinateSequence method

CoordinateSequence createCoordinateSequence(
  1. List<Coordinate> coords
)

Convenience method which provides standard way of creating a {@link CoordinateSequence}

@param coords the coordinate array to copy @return a coordinate sequence for the array

Implementation

CoordinateSequence createCoordinateSequence(List<Coordinate> coords) {
  return factory.getCoordinateSequenceFactory().create(coords);
}