Skip to content

Commit

Permalink
Standardize name of IndexedPointInPolygonsLocator
Browse files Browse the repository at this point in the history
  • Loading branch information
dr-jts committed Jul 14, 2023
1 parent 9fc2e9f commit ef493a3
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ class IndexedDistanceToPoint {

private Geometry targetGeometry;
private IndexedFacetDistance facetDistance;
private IndexedPointInPolygonsLocater ptLocater;
private IndexedPointInPolygonsLocator ptLocater;

public IndexedDistanceToPoint(Geometry geom) {
this.targetGeometry = geom;
Expand All @@ -40,7 +40,7 @@ private void init() {
if (facetDistance != null)
return;
facetDistance = new IndexedFacetDistance(targetGeometry);
ptLocater = new IndexedPointInPolygonsLocater(targetGeometry);
ptLocater = new IndexedPointInPolygonsLocator(targetGeometry);
}

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,13 +29,13 @@
* @author mdavis
*
*/
class IndexedPointInPolygonsLocater implements PointOnGeometryLocator {
class IndexedPointInPolygonsLocator implements PointOnGeometryLocator {

private Geometry geom;
private List<Geometry> polys;
private STRtree index;

public IndexedPointInPolygonsLocater(Geometry geom) {
public IndexedPointInPolygonsLocator(Geometry geom) {
this.geom = geom;
}

Expand Down

0 comments on commit ef493a3

Please sign in to comment.