createFromSequence method

CoordinateSequence createFromSequence(
  1. CoordinateSequence coordSeq
)
override

@see org.locationtech.jts.geom.CoordinateSequenceFactory#create(org.locationtech.jts.geom.CoordinateSequence)

Implementation

CoordinateSequence createFromSequence(CoordinateSequence coordSeq) {
  return CoordinateArraySequence.fromSequence(coordSeq);
}