| aux_getFDSNstation | R Documentation | 
This function queries as series of data bases for seismic stations that 
match a set of criteria for seismic data. The criteria include signal time 
stamp and location, and component. The returned data can be used to 
download data using the function aux_FDSNdata.
aux_getFDSNstation(centre, radius, start, access, url)
| centre | 
 | 
| radius | 
 | 
| start | 
 | 
| access | 
 | 
| url | 
 | 
The function requires a working internet connection to perform the query. It uses the following FDSN data bases by default:
orfeus "http://www.orfeus-eu.org"
geofon "http://geofon.gfz-potsdam.de/"
bgr "http://eida.bgr.de"
sss "http://eida.ethz.ch"
Other FDSN data base addresses can be provided in the same way as the 
addresses in the above list. They need to be provided as character 
vector. For a list of addresses see 
"http://www.fdsn.org/webservices/datacenters/" and 
"http://docs.obspy.org/packages/obspy.clients.fdsn.html#module-obspy.clients.fdsn".
Data frame with query results. The data frame contains 
information for all seismic stations fulfilling the defined criteria.
Michael Dietze
aux_get_FDSNdata, aux_getIRISstation
## Not run: 
x <- aux_getFDSNstation(start = as.POSIXct(x = "2010-01-01 22:22:22", 
                                           tz = "UTC"), 
                        centre = c(45, 10), 
                        radius = 1)
                           
## optionally plot station locations on a map (requires RgoogleMaps)
center <- c(mean(x$station_latitude), 
            mean(x$station_longitude))
zoom <- min(RgoogleMaps::MaxZoom(range(x$station_latitude), 
                                 range(x$station_longitude)))
                                 
Map <- RgoogleMaps::GetMap(center = center,
                           zoom = zoom, 
                           maptype = "terrain")
                           
RgoogleMaps::PlotOnStaticMap(MyMap = Map, 
                             lat = x$station_latitude, 
                             lon = x$station_longitude, 
                             pch = 15, 
                             col = 4)
## End(Not run)
                     
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.