Displaying 20 results from an estimated 200 matches similar to: "Download data from NASA for multiple locations - RCurl"
2017 Oct 15
0
Download data from NASA for multiple locations - RCurl
> On Oct 15, 2017, at 2:02 PM, Miluji Sb <milujisb at gmail.com> wrote:
>
> Dear all,
>
> i am trying to download time-series climatic data from GES DISC (NASA)
> Hydrology Data Rods web-service. Unfortunately, no wget method is
> available.
>
> Five parameters are needed for data retrieval: variable, location,
> startDate, endDate, and type. For example:
2017 Oct 15
2
Download data from NASA for multiple locations - RCurl
Dear David,
This is amazing, thank you so much. If I may ask another question:
The output looks like the following:
###
dput(head(x,15))
c("Metadata for Requested Time Series:", "",
"prod_name=GLDAS_NOAH025_3H_v2.0",
"param_short_name=Tair_f_inst", "param_name=Near surface air temperature",
"unit=K",
2017 Oct 16
0
Download data from NASA for multiple locations - RCurl
> On Oct 15, 2017, at 3:35 PM, Miluji Sb <milujisb at gmail.com> wrote:
>
> Dear David,
>
> This is amazing, thank you so much. If I may ask another question:
>
> The output looks like the following:
>
> ###
> dput(head(x,15))
> c("Metadata for Requested Time Series:", "", "prod_name=GLDAS_NOAH025_3H_v2.0",
>
2017 Oct 16
1
Download data from NASA for multiple locations - RCurl
I have done the following using readLines
directory <- "~/"
files <- list.files(directory)
data_frames <- vector("list", length(files))
for (i in seq_along(files)) {
df <- readLines(file.path(directory, files[i]))
df <- df[-(1:13)]
df <- data.frame(year = substr(df,1,4),
month = substr(df, 6,7),
day =
2017 Oct 21
1
Skip error in downloading file in loop
I am trying to download data from NASA web-service.
I am using the following code;
for( i in 1:8) {
target1 <- paste0("
https://hydro1.gesdisc.eosdis.nasa.gov/daac-bin/access/timeseries.cgi?variable=NLDAS:NLDAS_FORA0125_H.002:TMP2m&location=GEOM:POINT(
",
cities[i, "lon_nldas"],
",%20",
2008 Jan 04
1
John Rosatti, Excavators, 3D, NASA and Why Should I care?
John Rosatti, Excavators, 3D, NASA and Why Should I care?
Well, because! There are two definitions for excavator; one is any person
engaging in excavation is called an excavator. The second definition of
excavator is, of course, the vehicles called excavators, which are sometimes
called diggers, trackhoes, fronthoes, and 360-degree excavators or just
360. This is not to be confused with
2013 Mar 08
2
Coversion from yearly to weekly data
Dear all, I have a big data matrix and I want to convert those data into
weekly basis which means 7 days needs to be avaraged and aggregate a single
value
> dput(test)
structure(list(locid = structure(c(1L, 1L, 1L, 1L, 1L, 1L, 1L,
1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L,
1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L,
1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L,
2012 Oct 05
5
Missing data (Na) and chi-square tests
Dear everyone
I am a bit of a computer imbecile and are having problems with R.
I am using R in my research project to do chi-square tests on data imported
from excel .
However I have som missing data in one of my variables (columns) and I need
R to "exclude" these and make chi-square test on the data that I have.
I use a formula to make 2x2 tables which is:
data <-
2003 Jun 03
15
[Bug 585] sshd core dumping on IRIX 6.5.18 with VerifyReverseMapping enabled
http://bugzilla.mindrot.org/show_bug.cgi?id=585
Summary: sshd core dumping on IRIX 6.5.18 with
VerifyReverseMapping enabled
Product: Portable OpenSSH
Version: -current
Platform: MIPS
OS/Version: IRIX
Status: NEW
Severity: major
Priority: P2
Component: sshd
AssignedTo:
2002 Jun 25
7
[Bug 294] tcp wrapper access changed between 2.9.9p2 and 3.3p1
http://bugzilla.mindrot.org/show_bug.cgi?id=294
------- Additional Comments From ktaylor at daac.gsfc.nasa.gov 2002-06-26 00:53 -------
This is what's reported in the syslog from openssh-2.9.9p2 - with an ip address
range listed in hosts.allow
Jun 25 10:50:08 6D:server sshd[30123536]: Failed keyboard-interactive for
ktaylor from xxx.xxx.xxx.xxx port 40333 ssh2
Jun 25 10:50:13 6D:server
2003 Jul 06
10
[Bug 585] sshd core dumping on IRIX 6.5.18 with VerifyReverseMapping enabled
http://bugzilla.mindrot.org/show_bug.cgi?id=585
------- Additional Comments From dtucker at zip.com.au 2003-07-07 00:32 -------
dmalloc (http://dmalloc.com/) claims to work on IRIX. It's likely to increase
the CPU and memory load, though.
I've built with dmalloc on Linux thusly:
LDFLAGS=-ldmalloc ./configure && make
eval `dmalloc -l /path/to/log high`
./sshd [options]
2004 Apr 05
5
[Bug 832] X forwarding crashes on some applications
http://bugzilla.mindrot.org/show_bug.cgi?id=832
Summary: X forwarding crashes on some applications
Product: Portable OpenSSH
Version: 3.8p1
Platform: ix86
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: ssh
AssignedTo: openssh-bugs at mindrot.org
ReportedBy: ktaylor
2001 Aug 08
2
with-tcp-wrappers enable ?
Hello,
I try to compile openssh-2.9p1 on a SGI Origin 200 computer under IRIX
6.5 with the option --with-tcp-wrappers enable. I have also compiled
tcp-wrapper and have installed the library libwrap.a in /usr/lib and the
file tcpd.h in /usr/include.
When i run the ./configure script i have a error. The script asked me
that the libwrap is missing.
How can i resolve this ?
Thanks.
Bests Regards
2018 Jan 25
2
Latest CVE's For MySQL
Looks like a series of vulnerability alerts for Oracle MySQL have been
issued: CVE-2018-2562, CVE-2018-2647 (both high), CVE-2018-2645,
CVE-2018-2646, CVE-2018-2665 (all three medium). This affects versions
5.7.20 and prior. I know CentOS/RedHat usually do backports--anybody
know if this is the case, or do we have to go 'outside' now, and get the
MySQL repository to use, for the
2018 Jul 05
1
Any Word On Updates For Security FIx For Firefox?
Just checking to see if we're either getting a Firefox 52.9 or Firefox
60.x for CentOS 6 to address the latest security fix.
--
Paul E Virgo
Sr. System Administrator
Code 610.2
SESDA III - DAAC/DISC
Goddard Space Flight Ctr/NASA
Greenbelt, MD
Greenbelt, MD 20771
(301) 614-5751
1998 Apr 01
1
"User not authorized to connect from this station"
Hello,
I'm running the newest version of Samba on an Irix 6.4 server.
One of our NT clients is having a problem. When the user tries to access
the server (Start-->Run-->"\\SERVER"), the username/password field comes
up. When that user puts in his valid username/password, and error pops up
that says "User not authorized to connect from this station."
No valid
2004 Mar 29
10
[Bug 820] utmp seems to be getting clobbered on logins
http://bugzilla.mindrot.org/show_bug.cgi?id=820
Summary: utmp seems to be getting clobbered on logins
Product: Portable OpenSSH
Version: 3.8p1
Platform: All
OS/Version: IRIX
Status: NEW
Severity: normal
Priority: P2
Component: sshd
AssignedTo: openssh-bugs at mindrot.org
ReportedBy: ktaylor
2017 Apr 18
2
Problems With Booting CentOS on Dell T7910
Hello!
Does anyone have any experience with installing CentOS 6 (specfically,
6.8), on a Dell T7910? I've tried at least a dozen installs, everything
gets configured, and when I have the system reboot, I get 'No boot
device found press any key to reboot the machine'. In BIOS, I've enabled
AHCI, Legacy boot and modes, and enabled the SAS controller. The disks
are seen and
2001 Mar 06
3
suggestion: saving old binaries during installation
Just as a suggestion, I liked the way the ssh.com's ssh would move the
old binaries to filename.old then install the new ones....so that way
you have an old copy to revert back to if needed (without copying them
all by hand).
2003 May 22
1
sshd crashing on IRIX (3.6.1p1)
Occasionally, we're noticing that sshd is core dumping on our IRIX
6.5.18f machine.
The only time we've really noticed it is when users are logging in with
putty from offsite (although I'm not really sure it's a client issue).
The user manages to log in, sshd apparently core dumps, but the user is
not logged out, the privilege separated user is still running their own