This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## Copy this file into config.site ## | |
CC="cc -xc99" | |
CPPFLAGS="-I/opt/csw/include" | |
CFLAGS="-I/opt/csw/include -O -xlibmieee" | |
LDFLAGS="-L/opt/csw/lib" | |
F77=f95 | |
FFLAGS=-O | |
CXX="CC -library=stlport4" | |
CXXFLAGS=-O | |
FC=f95 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
library(mapproj) | |
library(rgdal) | |
## view the original data & ggplot map from | |
## http://rud.is/b/2015/10/04/replicating-natgeos-proper-earthquake-map-in-r/ | |
url <- "http://rud.is/dl/quakefile.tgz" | |
if (!file.exists(basename(url))) { | |
download.file(url, destfile = basename(url)) | |
untar(basename(url)) |