envelopeLowerLeft static method

Coordinate envelopeLowerLeft(
  1. Geometry g
)

Implementation

static Coordinate envelopeLowerLeft(Geometry g) {
  Envelope env = g.getEnvelopeInternal();
  return new Coordinate(env.getMinX(), env.getMinY());
}