search.isc | R Documentation |
Searches the International Seismological Centre (ISC) bulletin for recorded eqrthqukes ocurred during a specified time period in a specified geographical region (rectangular or circular) with a specified magnitude type and magnitude threshould.
search.isc(start.year=1900, start.month=1, start.day=01,
end.year=2018, end.month=12, end.day=31,
searchshape="RECT", lat.bot=NULL, lat.top=NULL,
long.left=NULL, long.right=NULL, lat.ctr=NULL,
long.ctr=NULL, radius=NULL, dist.units="deg",
dep.min=0, dep.max=100, nulldep=TRUE,
mag.min=4, mag.max=NULL, mag.type='MB',
mag.agcy=NULL, mirror=TRUE)
start.year |
A single numeric value specifying the start year of the time period. |
start.month |
A single numeric value (1 to 12) specifying the start month of the time period. |
start.day |
A single numeric value (1 to 31) specifying the start day of the time period. |
end.year |
A single numeric value specifying the end year of the time period. |
end.month |
A single numeric value (1 to 12) specifying the end month of the time period. |
end.day |
A single numeric value (1 to 31) specifying the end day of the time period. |
searchshape |
A character string specifying the shape of
the search region. Rectangular search with
|
lat.bot |
A single numeric value (-90 to 90) specifying
the bottom latitude of the rectangular search region
(if |
lat.top |
A single numeric value (-90 to 90) specifying
the top latitude of the rectangular search region
(if |
long.left |
A single numeric value (-180 to 180) specifying
the left longitude of the rectangular search region
(if |
long.right |
A single numeric value (-180 to 180) specifying
the right longitude of the rectangular search region
(if |
lat.ctr |
A single numeric value (-90 to 90) specifying
the central latitude of the circular search region
(if |
long.ctr |
A single numeric value (-180 to 180) specifying
the central longitude of the circular search region
(if |
radius |
A single numeric value specifying the search radius
of the circular search region
(if |
dist.units |
A character string specifying the unit of
the search radius: degrees with |
dep.min |
A single numeric value specifying the minumum depth (km). |
dep.max |
A single numeric value specifying the maximum depth (km). |
nulldep |
Logical flag indicating whether to include events with unknown depths. |
mag.min |
A single numeric value specifying the minumum magnitude. |
mag.max |
A single numeric value specifying the maximum magnitude. |
mag.type |
A character string specifying the magnitude
type. Due to the large number of magnitude types and the
various notation used, the selected type will search all
magnitudes of that type. E.g. the default |
mag.agcy |
A character string specifying the magnitude
author. |
mirror |
Logical flag indicating whether to use the ISC mirror server hosted at IRIS DMC (http://isc-mirror.iris.washington.edu) as it may be faster. |
Any use of data from the ISC by academic or commercial organisations, as well as individuals should always be cited. The correct format for citations may be found on http://www.isc.ac.uk/citations/.
The ISC is named as a valid data centre for citations within American Geophysical Union (AGU) publications. As such, please follow the AGU guidelines when referencing ISC data in one of their journals. The ISC may be cited as both the institutional author of the Bulletin and the source from which the data were retrieved.
An object of class "data.frame"
which can be passed to
the "catalog"
function in order to create an earthquake
catalog dataset.
Abdollah Jalilian jalilian@razi.ac.ir
International Seismological Centre (2015). On-line Bulletin, http://www.isc.ac.uk, Internatl. Seismol. Cent., Thatcham, United Kingdom.
International Seismological Centre (2015). Reference Event Bulletin, http://www.isc.ac.uk, Internatl. Seismol. Cent., Thatcham, United Kingdom.
International Seismological Centre (2015). EHB Bulletin, http://www.isc.ac.uk, Internatl. Seismol. Cent., Thatcham, United Kingdom.
catalog
.
# rectangular search
## Not run:
mydata <- search.isc(start.year=1980, start.month=1, start.day=01,
end.year=2017, end.month=11, end.day=11,
lat.bot=33, lat.top=37,
long.left=44, long.right=48,
mag.min=3.5, mag.type='MB')
mycatalog <- catalog(mydata, study.start = "1990-01-01")
plot(mycatalog)
## End(Not run)
# circular search
## Not run:
mydata2 <- search.isc(start.year=2017, start.month=11, start.day=12,
end.year=2018, end.month=3, end.day=01,
searchshape="CIRC",
lat.ctr=34.905, long.ctr=45.956,
radius=150, dist.units="km",
mag.min=3.5, mag.type='ML')
mycatalog2 <- catalog(mydata2)
plot(mycatalog2)
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.