Displaying 2 results from an estimated 2 matches for "siteinfo".
Did you mean:
sideinfo
2011 Apr 25
1
Htaccess Help
Been looking for a while on this before resorting to asking. I have
an .htaccess file like so.
order allow,deny
allow from x.x.x.0/24
I have this in my root html directory and it works fine. Only allows
access by the x.x.x.0/24 subnet. Thing is I have one file
~"siteinfo.html" that I want to allow anyone to access. How would I
do that?
2004 Aug 25
0
Mapping PCA loadings on to map
...onto a map of the area of concern, and would like to represent
the results of this PCA in a similar way.
My previous code looks like this:
east<-sort(unique(alt$east))
north<-sort(unique(alt$north))
map.matrix<-matrix(alt$Alt,nrow=length(north),byrow=TRUE)
site.data<-read.table("siteinfo.dat",header=TRUE)
ts.data<-read.table("met.dat",header=TRUE)
library(mva)
met.pca<-prcomp(ts.data,retx=FALSE,scale=TRUE,center=TRUE)
scale<-2
for(i in 1:4){
image(east,north,t(map.matrix),col=terrain.colors(50),axes=TRUE,
xlab="",ylab="")
text(site.data...