indexOfStatic static method

double indexOfStatic(
  1. Geometry linearGeom,
  2. Coordinate inputPt
)

Implementation

static double indexOfStatic(Geometry linearGeom, Coordinate inputPt) {
  LengthIndexOfPoint locater = new LengthIndexOfPoint(linearGeom);
  return locater.indexOf(inputPt);
}