search for: hdf

Displaying 20 results from an estimated 73 matches for "hdf".

Did you mean: hd
2010 Jan 26
2
hdf files
hello, I have a problem to open an hdf file. i have downloaded the package 'hdf5' as it was advised on R seek. But when i try to load the file, the R console sends me an eror message: setwd("C:/Documents and Settings/Karine/Bureau/data/") #install.packages('hdf5') library("hdf5") sea_ice <- h...
2002 Dec 01
1
another idiot and ext3 - The inode is from a bad block in the inode table
...e (bin, dev, sbin, ...) still fine. then i think rh8 ran fsck on it and it failed. (the console said something like interrupt failed) since than i cannot mount it. the disk has about 10G of mp3s on it so i'd like to get it working. fsck reveals this... [root@pro180 root]# fsck.ext2 -vf /dev/hdf2 e2fsck 1.27 (8-Mar-2002) Pass 1: Checking inodes, blocks, and sizes Error while scanning inodes (0): The inode is from a bad block in the inode table 105597 inodes used (2%) 0 non-contiguous inodes (0.0%) # of inodes with ind/dind/tind blocks: 0/0/0 2538385 blocks used (26%)...
2014 Jul 29
2
Ayuda por favor
Saludos, estoy intentando usar la funciĆ³n reprojectHDF() ( http://r-gis.net/?q=ModisDownload). #### source('ModisDownload.R') library(raster) library(RCurl) path<-"~/R/MODIS/Data/Test" input<-list.files(path,"*.hdf",all.files=T,recursive=T,full.names=T) input outname<-paste(substr(input[1],40,45),".tif",s...
2011 Mar 16
2
how do we read netcdf / hdf files in R?
Dear R Users, How do we read netcdf / hdf format files in R ? Also, can we convert netcdf to hdf format in R? Great Thanks, Best Regards, Yogesh [[alternative HTML version deleted]]
2010 Sep 23
2
hdf-files
Dear All, I have data in HDF file format and would like to read it into R. I have tried the package hdf5 without success. Any ideas and suggestions?? Kind regards, Katrin -- Katrin Fleischer Vrije Universiteit Amsterdam Faculty of Earth and Life Sciences Subdepartment Hydrolgy and Geo-Environmental Sciences Room E-360 De B...
2012 Apr 21
1
hdf library for windows
The question puzzled me at first, because of your use of "library". It looks as if the hdf5 r "package" utilises the "windows hdf5 library" binary. My reading is that you will have to compile the package yourself after you have downloaded the hdf windows dll from hdf.ncsa.uiuc.edu The instructions are in win.readme.txt of the package source which you can download at...
1998 Nov 20
2
R and hdf
Hi, I've been playing with R for only a few days, so I'm not terribly familiar with it yet. Has anyone ever done any work using HDF or NetCDF files with R? Both file formats have libraries which can be linked to a program to read and write data to these formats. Is this sort of thing possible with R? We are planning to use the HDF format to store experimental data collected by some research instruments we are designing. I w...
2013 Jan 15
1
Using system() to dump HDF to text file?
Hi all -- I am working on 64-bit Windows XP. I'm not a very technical person when it comes to the command line stuff, so please forgive me if this is a stupid question. I have a bunch of HDF files, and I want to dump a single PM25 data layer from each file to .txt by invoking ncdump.exe from system(). Here's a sample command string: "C:/ncdump -v PM25 C:/01aug2010.hdf > C:/01aug2010.txt" This works perfectly in Python, but does not actually generate the .txt file in...
2003 Dec 01
1
hdf library for windows
Hi, Is there a version of the hdf library for windows? Cheers Toby
2010 Apr 07
1
samba server file read size limit of 64MB for HDF files
...t a Samba server (3.0.23) running on a CentOS 5.3 server offering up a data share of 7TB on an XFS filesystem. The authentication all happens through a Samba PDC with an LDAP backend all on a different server. The system in question is just a domain member fileserver. On the data share are several HDF files that we try to read into a couple of different applications on XP. I'm using the Compaq Array Visualizer just to look at them. The files on the server are owned by root, and world read/writable. As a regular user on the XP client, if I look at one of the files that's ~30MB in size, I&...
2006 Jun 07
2
how to read hdf files under R?
Hi! I am trying to install in my R environment the rhdf5 package and library but it seems to have vanished from either the CRAN or BioConductors sites. Can you tell me where it would be possible to find it or any R library (or function) able to read hdf files? Sincerely, Nicolas Degallier UMR 7159 / IRD UR182 Laboratoire d'Oc?anographie et...
1998 Dec 07
0
HDF or netCDF
Hi, I saw some ref to R on HDF site and found some e-mails regarding them on Feb. Has there ben any developement on either of these software (HDF or netCDF)? I am primary interested in NT side, but Unix side will help to some degree. Thanks much in advance, ************************************************************** S. H...
1999 Mar 29
1
Can R read NCSA's HDF?
I'm an R newbie, so please forgive if this question has been asked and answered many times before on this mailing list. I can't find anything in the manual (Notes or R), the FAQ or on CRAN, so... Has anyone implemented an interface so R can read NCSA's HDF? -- Terry J. Westley, Principal Engineer Veridian Engineering, Calspan Operations P.O. Box 400, Buffalo, NY 14225 twestley at buffalo.veridian.com http://www.veridian.com -.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.- r-help mailing list -- Read http://www.ci.t...
2009 Aug 13
1
segfault when unloading a shared library
...ding R-ext manual), but I hoped that I might be able to get some additional insight from the list given that I'm fairly new at writing R extension code. Problem: I have some fairly simple code (.Call interface) that makes a call to another shared library, which, in turn, calls routines in an HDF5 shared library. The good news is that everything works (the expected value is returned from the HDF5 call); the problem is that R segfaults when I unload the library. I initially suspected that the HDF5 function might be corrupting the stack/heap, however, if it is, it's not obvious to me....
2007 Dec 14
2
Rapid Random Access
...r I might, for example, want to compute some averages over the elements in the data frames. Or I might want to sample ten of them at random and do some plots. What I need is rapid random access to data stored in external files. Here's some ideas I've had: * Store all the data in an HDF-5 file - problem here is that the current HDF package for R reads the whole file in at once. * Store the data in some other custom binary format with an index for rapid access to the N-th elements. Problems: feels like reinventing HDF, cross-platform issues, etc. * Store the data in a numb...
1999 May 14
1
HDF5 support in R
Has anyone succeeded in using HDF5 in R? Using Solaris R version 0.64.0: 1) R was configured in this way: cd /home/westley/R/R-0.64.0 setenv LD_LIBRARY_PATH ${LD_LIBRARY_PATH}:/home/westley/HDF/lib ./configure \ --prefix=/home/westley/R \ --with-g77=/usr/calspan/gnu/bin/g77 \ --x-lib=/usr/openwin/lib \...
2000 Aug 31
3
help with data import/export
how can I import/export data from ms excel? also is there a way to import/export data of the hdf format? is there a way to import/export hdf format for ms excel as well? thank you very much in advance. /js ###################################################################### This e-mail message has been scanned and cleared by MailMarshal http://www.marshalsoftware.com #######################...
2002 Aug 06
1
Error in rsync protocol data stream (code 12) when doing local rsync.
Hi, I cannot seem to find a good answer for what I am doing wrong; I am simply trying to rsync a directory from one large disk partition to another disk, both ext2, on the same physical system by using the command: rsync --archive -v /etc /mnt/hdf/ I systematically get the following errors: # rsync --archive -v /etc /mnt/hdf/ building file list ... done etc/ etc/mtab etc/ntp/drift etc/vmware/vmnet8/dhcpd/dhcpd.leases etc/vmware/vmnet8/dhcpd/dhcpd.leases~ write failed on etc/mtab : No space left on device rsync error: error in file IO (co...
2002 Mar 01
1
HDF 5 install - how to pass configure flag to the R CMD command
The basic question is: How can I pass configure script command line flags from the R CMD command? Now I try to install the HDF5 package on Linux (SuSE 7.3). I got hdf5 libraries installed in /usr/local/hdf5 (man/lib/bin). I understood to install packages the following way: as root# R CMD INSTALL hdf5_1.4.7.tar.gz Installing source package `hdf5' ... checking for gcc... gcc checking for C compiler default output.....
2012 Jun 01
0
Is there an HDF explorer in R?
So that we could explore the structure of a HDF5 file? Thanks a lot! [[alternative HTML version deleted]]