This file contains hidden or 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
#!/usr/bin/env Rscript | |
args = commandArgs(trailingOnly=TRUE) | |
library(wrftools) | |
data(cetesb) | |
cetesb <- cetesb[!is.na(cetesb$Station), "Station"] | |
t2 = c("T2", "o3", "co", "no", "no2", "U10", "V10") | |
df <- xtractor(atmos = args[1], | |
vars = t2, | |
points = cetesb, | |
stations = cetesb$Station, |
This file contains hidden or 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
REM ***** BASIC ***** | |
REM ################### RETURNING STRING ################################################# | |
Function CELL_NOTE(vSheet,lRowIndex&,iColIndex%) | |
'calls: getSheetCell | |
REM returns annotation text | |
Dim v | |
v = getSheetCell(vSheet,lRowIndex&,iColIndex%) | |
if vartype(v) = 9 then | |
CELL_NOTE = v.Annotation.getText.getString | |
else |
This file contains hidden or 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
# todas las librerias basicas tienen que ser instaladas con | |
./configure --prefix=$HOME/basic | |
install.packages("units", configure.args="--with-udunits2-lib=$HOME/basic/lib --with-udunits2-include=$HOME/basic/include") |
This file contains hidden or 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
#!/bin/bash | |
### steps #### | |
# verify the system has a cuda-capable gpu | |
# download and install the nvidia cuda toolkit and cudnn | |
# setup environmental variables | |
# verify the installation | |
### | |
### to verify your gpu is cuda enable check |
OlderNewer