Martin,

You need to follow the netCDF naming that OpenDX uses (at least for
easiest access to your data).

The concept is described in <OPENDX_DIR>/html/pages/usrgu068.htm#HDRAPE

Something in the spirit of below would import:

netCDF irregular {
dimensions:
     pointnums = 25;
     axes = 3;
     // nodesperelem = 4;
     // tetranums = 16;  // Number of tetrahedra in the mesh
variables:
     float locations(pointnums, axes);
     float density(pointnums); 
     // long  connect(tetranums,nodesperelem);  // If you want to specify a 
connectivity
//specific attributes:
    density:field = "Dichte";
    density:positions = "locations";
    // density:connections = "connect, tetrahedra";  // This defines 
connectivity
data:

         locations =
          0, 0, 0,
[...]

Reply via email to