Package noaa.coastwatch.util
Interface LocationFilter
- All Known Implementing Classes:
ExpressionFilter
,VIIRSBowtieFilter
public interface LocationFilter
The
LocationFilter
class allows for computations and other
classes to check if a specific location's data should be used in a
computation.- Since:
- 3.3.1
- Author:
- Peter Hollemans
-
Method Summary
Modifier and TypeMethodDescriptionboolean
useLocation
(DataLocation loc) Determines if a data location should be used in the context of some computation.
-
Method Details
-
useLocation
Determines if a data location should be used in the context of some computation.- Parameters:
loc
- the location to determine for use.- Returns:
- true if the location should be used, or false if not.
-