| Package | Description |
|---|---|
| gov.usgs.earthquake.nshmp.geo |
Geographic data classes and utilities.
|
| Modifier and Type | Method and Description |
|---|---|
LocationList.Builder |
LocationList.Builder.add(double lat,
double lon)
Add a new
Location specified by the supplied latitude and
longitude and a depth of 0 km to the LocationList. |
LocationList.Builder |
LocationList.Builder.add(double lat,
double lon,
double depth)
Add a new
Location specified by the supplied latitude, longitude,
and depth to the LocationList. |
LocationList.Builder |
LocationList.Builder.add(Location... locs)
Add each
Location in locs to the LocationList . |
LocationList.Builder |
LocationList.Builder.add(Location loc)
Add a
Location to the LocationList. |
LocationList.Builder |
LocationList.Builder.addAll(Iterable<Location> locs)
Add each
Location in locs to the LocationList . |
static LocationList.Builder |
LocationList.builder()
Return a new
LocationList builder. |