Skip to content

Commit

Permalink
Maybe it's the wrapper calling?
Browse files Browse the repository at this point in the history
  • Loading branch information
natgeo-wong committed Jan 9, 2024
1 parent 3419f8d commit 79e9a59
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/isin/isingeoregion.jl
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ Base.in(
tlon :: Real = 0,
tlat :: Real = 0,
throw :: Bool = true
) = isinGeoRegion(point,geo,tlon,tlat,throw)
) = isinGeoRegion(point,geo,tlon=tlon,tlat=tlat,throw=throw)

"""
in(
Expand Down Expand Up @@ -53,7 +53,7 @@ Base.in(
polyG :: PolyRegion;
domask :: Bool = false,
throw :: Bool = true
) = isinGeoRegion(Child,polyG,domask,throw)
) = isinGeoRegion(Child,polyG,domask=domask,throw=throw)

"""
in(
Expand All @@ -79,7 +79,7 @@ Base.in(
Child :: GeoRegion,
rectG :: RectRegion;
throw :: Bool = true
) = isinGeoRegion(Child,rectG,throw)
) = isinGeoRegion(Child,rectG,throw=throw)

"""
isinGeoRegion(
Expand Down

0 comments on commit 79e9a59

Please sign in to comment.