Tagged Questions
NetCDF (Network Common Data Form) is a set of software libraries and self-describing, machine-independent data formats that support the creation, access, and sharing of array-oriented scientific data.
12
votes
5answers
2k views
Opinions on NetCDF vs HDF5 for storing scientific data?
Anyone out there have enough experience w/ NetCDF and HDF5 to give some pluses / minuses about them as a way of storing scientific data?
I've used HDF5 and would like to read/write via Java but the ...
8
votes
4answers
296 views
What are the disadvantages of using .Rdata files compared to HDF5 or netCDF?
I have been asked to change a software that currently exports .Rdata files so that it exports in a 'platform independent binary format' such as HDF5 or netCDF. Two reasons were given:
Rdata files ...
5
votes
4answers
340 views
python mmap.error: Too many open files. What's wrong?
I'm reading a bunch of netcdf files using the pupynere interface (linux). The following code results in an mmap error:
import numpy as np
import os, glob
from pupynere import NetCDFFile as nc
alts = ...
3
votes
1answer
101 views
Netcdf and fortran structures
I have this fortran structure.
type custom
real :: a,b
real,dimension(20) ::c,d
real,dimension(20,50) :: e
end type custom
Then I have another structure like this
type custom2
...
3
votes
1answer
490 views
weird range value in the colorbar, matplotlib
I am a new user to the python & matplotlib, this might be a simple question but I searched the internet for hours and couldn't find a solution for this.
I am plotting precipitation data from ...
1
vote
1answer
58 views
Type of slice impacts mutability of numpy array
I create netCDF files using python. When I try to assign values (data) to parts (or slices) of variables, depending on what is the "type" of slice, I can or I cannot assign the values.
I don't know ...
1
vote
4answers
172 views
Write a float array to file in Java
I'm reading in a NetCDF file and I want to read in each array as a float array and then write the float array to a new file. I can make it work if I read in the float array and then iterate over each ...
1
vote
1answer
127 views
java netcdf 4 tutorial
I am using the latest netcdf jar library from unidata website here: http://www.unidata.ucar.edu/downloads/netcdf/index.jsp
I am looking for a java netcdf 4 tutorial/example but I can't seem to find ...
1
vote
0answers
84 views
Pass a java array into a netcdf file
My program reads ascii files and saves the data into a four dimensional NetCDF file. This is the code that creates the netcdf dimensions, variables, and variable attributes using the Climate Data ...
1
vote
1answer
156 views
Creating multi-dimentional NetCDF in matlab
I am attempting to create a four dimensional NetCDF structure of integers using matlab. This is my code so far...
mode = netcdf.getConstant('NETCDF4');
mode = ...
1
vote
1answer
81 views
How to delete a variable in a Scientific.IO.NetCDF.NetCDFFile?
Is it possible to delete a variable from a Scientific.IO.NetCDF.NetCDFFile? If a file is opened like so:
nc = Scientific.IO.NetCDF.NetCDFFile("File.nc", "a")
neither a
del nc.variables["var"]
...
1
vote
1answer
83 views
ImportError: No module named NetCDF
I am trying to sort the following error but not getting the correct answer till now. Actually I am using Ubuntu 10.04 and I have installed netcdf-3.6.2 but even then i found this error, although I ...
1
vote
1answer
159 views
Inconsistent results in R with RNetCDF - why?
I am having trouble extracting data from NetCDF data files using RNetCDF. The data files each have 3 dimensions (longitude, latitude, and a date) and 3 variables (latitude, longitude, and a climate ...
1
vote
2answers
337 views
Dynamic Contiguous 3D arrays in C
I'm trying to implement dynamically allocated contiguous 3D arrays in a C code. The arrays must be contiguous because I'm relying on netCDF output of the arrays. Now I adapted a solution posted here ...
1
vote
2answers
412 views
Using R to open grib files
I am using R to work with meteorological data. I proceed in two steps:
1- convert grib to netcdf using the commande line function ncl_convert2nc from ncar command language
2- use package ncdf in R to ...
1
vote
1answer
590 views
Multidimensional list(array) reassignment problem
Good day coders and codereses,
I am writing a piece of code that goes through a pile of statistical data and returns what I ask from it. To complete its task the method reads from one ...
0
votes
1answer
18 views
Convert netcdf to image
I have a netcdf file that I would like to convert to an image (joed, png, gif) using a command line tool.
Is someone could please help me with the library name and possibly a link to how it is done.
...
0
votes
2answers
41 views
How to properly create autoconf setup of netcdf 4.x?
I am not sure exactly what my question is as I get seriously turned around by autoconf/automake/libtoolize etc. Several of us are trying to autoconferize mbsystem. I've thrown a repo up of the work ...
0
votes
1answer
45 views
IDL and MatLab getting strange values from NetCDF file
I have a NetCDF file, which contains data representing total precipitation across the globe over several months (so it's stored in a three dimensional array). I first ensured that the data was ...
0
votes
2answers
92 views
Storage for large gridded datasets
I am looking for a good storage format for large, gridded datasets. The application is meteorology, and we would prefer a format that is common within this field (to help exchange data with others). I ...
0
votes
0answers
82 views
C - Discard the edges of an arbitrary level of a multidimensional array
I have some geographical data, that I'm trying to parse into a usable format. The data is kept in NetCDF files, and is read out as a multidimensional array. My problem comes because the source of the ...
0
votes
1answer
341 views
Extending a series of nonuniform netcdf data in a numpy array
I am new to python, apologies if this has been asked already.
Using python and numpy, I am trying to gather data across many netcdf files into a single array by iteratively calling append().
...
0
votes
3answers
160 views
how I can find out, which compiler I have used
I have installed NetCDF "binary-netcdf-4.0.1_gfortran_gfortran_c++.tar ". But I am not sure about the gfortran compiler I have used. How can I find the compiler I have used?
0
votes
2answers
724 views
Problem linlking netcdf.lib on windows PGI Visual Fortran
I am using PGI Visual Fortran in (Windows OS) to build a project/solution consisting of a fortran (f90) library and an executable. The f90 library links to the netcdf.lib. The f90 compiles and ...