NOTICE: This version of the NSF Unidata web site (archive.unidata.ucar.edu) is no longer being updated.
Current content can be found at unidata.ucar.edu.

To learn about what's going on, see About the Archive Site.

Re: [netcdf-java] subset GeoGrid problem

hi sachin:

thanks for reporting, ill look into this.
which version of the library are you using?

Sachin Kumar Bhate wrote:
Hello,

I am trying to query a subsetted GeoGrid for 'vertical axis', and
it returns false when I know that the data has vertical axis.
The original grid does return 'true' for the presence of vertical axis,
so it looks like the flag (hAxis/pAxis/zAxis) is not getting set after
subsetting the GeoGrid.

Just wanted to report this as this method has been a loyal gatekeeper
for me when I am trying to get vertical coordinate data when there is none.

 >>>
example code:

String uri='http://www.gri.msstate.edu/rsearch_data/nopp/bora_feb.nc';
String var='temp';

GridDataset gid = GridDataset.open(uri);
GeoGrid Grid = gid.findGridByName(var);
GridCoordSys gcs = (GridCoordSys) Grid.getCoordinateSystem();

boolean vAxis = gcs.hasVerticalAxis();          // returns true.

// subset geogrid
GeoGrid subg = Grid.subset(null,null,null,1,1,1); GridCoordSys gcs2 = (GridCoordSys) subg.getCoordinateSystem();

boolean vAxis2 = gcs2.hasVerticalAxis(); // returns false, should return true.

<<<

thanks..

Sachin.


  • 2008 messages navigation, sorted by:
    1. Thread
    2. Subject
    3. Author
    4. Date
    5. ↑ Table Of Contents
  • Search the netcdf-java archives: