readMultiPointText method

MultiPoint readMultiPointText(
  1. WKTTokenizer tokenizer,
  2. List<Ordinate> ordinateFlags
)

Creates a MultiPoint using the next tokens in the stream.

@param tokenizer tokenizer over a stream of text in Well-known Text format. The next tokens must form a <MultiPoint Text>. @return a MultiPoint specified by the next token in the stream @throws IOException if an I/O error occurs @throws ParseException if an unexpected token was encountered

Implementation

MultiPoint readMultiPointText(
    WKTTokenizer tokenizer, List<Ordinate> ordinateFlags) {
  return geometryFactory.createMultiPointSeq(getCoordinateSequenceTryParen(
      tokenizer, ordinateFlags, this.isAllowOldJtsMultipointSyntax));
}