Displaying 3 results from an estimated 3 matches for "utmx".
Did you mean:
ptmx
2008 Sep 18
2
graphing netCDF files
....nc", readunlimi=FALSE) #opens ncdf
file for reading
wat.data2000q1 <- get.var.ncdf(q1_2001, verbose=FALSE ) # gets the real
information
# GENERAL EXAMINATION OF HEADER DATA in the wat.data file
day <- get.var.ncdf(q1_2001, "time") # length(day) 91 days in quarter
UTMx <- get.var.ncdf(q1_2001, "x") # columns (eastings) # should
return 405
UTMy <- get.var.ncdf(q1_2001, "y") # rows (northings) #
should return 287
# plot first 91 days (3 months of the year)
for(i in 1:91) {
!is.na( image(UTMx, UTMy, z = wat.dat...
2008 Jan 15
1
error in my selection
...are not of interest now.
Code (and i hope it does not come scrambled):
----------------------
> x3 <- read.csv("unique_veg_id.csv")
### columns in my data:
> dimnames(x3)[[2]] [1] "LocatID" "Region" "Total" "LocID" "UTMX" "UTMY" "Class" "cat3_name" "EventID" "day_sampl" "uniqueID" > > x3_reg1 <- x3[x3$Region == "JELA_reg1",]> > ma1 <- ftable(xtabs(Total ~ uniqueID + cat3_name, data=x3_reg1))> ma1...
2009 Jan 29
1
In Rd: \describe \itemize and \item
...tem{LnVolL}{Log of the volume \eqn{(ft^3/acre)} of western larch}
...... many lines deleted ......
\item{LnVolPP}{Log of the volume \eqn{(ft^3/acre)} of ponderosa pine}
\item{CCover}{Canopy cover (percent)}
}
Geographic Location, Slope, and Aspect (X-variables):
\itemize{
\item{utmx}{UTM easting at plot center}
\item{utmy}{UTM northing at plot center}
...... many lines deleted ......
\item{elevm}{Mean elevation (ft) above sea level over plot}
\item{slpsinaspm}{Mean of slope (proportion) times the sine of aspect}
}
...... many lines deleted ......
}
What I get in...