All Downloads are FREE. Search and download functionalities are using the official Maven repository.

ucar.nc2.dt.trajectory.Float10TrajectoryObsDataset Maven / Gradle / Ivy

Go to download

The NetCDF-Java Library is a Java interface to NetCDF files, as well as to many other types of scientific data formats.

There is a newer version: 4.3.22
Show newest version
/*
 * Copyright 1998-2009 University Corporation for Atmospheric Research/Unidata
 *
 * Portions of this software were developed by the Unidata Program at the
 * University Corporation for Atmospheric Research.
 *
 * Access and use of this software shall impose the following obligations
 * and understandings on the user. The user is granted the right, without
 * any fee or cost, to use, copy, modify, alter, enhance and distribute
 * this software, and any derivative works thereof, and its supporting
 * documentation for any purpose whatsoever, provided that this entire
 * notice appears in all copies of the software, derivative works and
 * supporting documentation.  Further, UCAR requests that the user credit
 * UCAR/Unidata in any publications that result from the use of this
 * software or in any product that includes this software. The names UCAR
 * and/or Unidata, however, may not be used in any advertising or publicity
 * to endorse or promote any products or commercial entity unless specific
 * written permission is obtained from UCAR/Unidata. The user also
 * understands that UCAR/Unidata is not obligated to provide the user with
 * any support, consulting, training or assistance of any kind with regard
 * to the use, operation and performance of this software nor to provide
 * the user with any updates, revisions, new versions or "bug fixes."
 *
 * THIS SOFTWARE IS PROVIDED BY UCAR/UNIDATA "AS IS" AND ANY EXPRESS OR
 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
 * DISCLAIMED. IN NO EVENT SHALL UCAR/UNIDATA BE LIABLE FOR ANY SPECIAL,
 * INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING
 * FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT,
 * NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION
 * WITH THE ACCESS, USE OR PERFORMANCE OF THIS SOFTWARE.
 */
// $Id: Float10TrajectoryObsDataset.java 63 2006-07-12 21:50:51Z edavis $
package ucar.nc2.dt.trajectory;

import ucar.nc2.dataset.NetcdfDataset;
import ucar.nc2.*;
import ucar.nc2.constants.FeatureType;
import ucar.nc2.dt.*;
import ucar.nc2.units.DateUnit;
import ucar.nc2.units.SimpleUnit;

import java.util.*;
import java.io.IOException;

/*
netcdf U:/testdata2/trajectory/buoy/testfloat10.nc {
 dimensions:
   DRIFTER100_110 = 11;   // (has coord.var)
   TIME1 = UNLIMITED;   // (1199 currently)   // (has coord.var)
 variables:
   double DRIFTER100_110(DRIFTER100_110);
     :point_spacing = "even";
     :AXIS = "X";
   double TIME1(TIME1);
     :units = "hour since 2001-07-10 12:00:00";
     :time_origin = "10-JUL-2001 12:00:00";
   float LONGITUDE(TIME1, DRIFTER100_110);
     :missing_value = -1.0E34; // float
     :_FillValue = -1.0E34; // float
     :long_name = "float longitude";
     :history = "From cgoa3_floats";
   float LATITUDE(TIME1, DRIFTER100_110);
     :missing_value = -1.0E34; // float
     :_FillValue = -1.0E34; // float
     :long_name = "float latitude";
     :history = "From cgoa3_floats";
   float DEPTH(TIME1, DRIFTER100_110);
     :missing_value = 1.0E35; // float
     :_FillValue = 1.0E35; // float
     :long_name = "depth of floats trajectories";
     :history = "From cgoa3_floats";
     :units = "meter";
   float TEMP(TIME1, DRIFTER100_110);
     :missing_value = 1.0E35; // float
     :_FillValue = 1.0E35; // float
     :long_name = "potential temperature";
     :history = "From cgoa3_floats";
     :units = "Celsius";
   float SALT(TIME1, DRIFTER100_110);
     :missing_value = 1.0E35; // float
     :_FillValue = 1.0E35; // float
     :long_name = "salinity";
     :history = "From cgoa3_floats";
     :units = "PSU";

 :history = "FERRET V5.51    3-Jan-05";
}
*/
/**
 * Implements TrajectoryDataset for datasets with these characteristics:
 * 
    *
  • it has two dimensions, an UNLIMITED time dimension and a trajectory dimension
  • *
  • it has two coordinate variables: 1) a time variable has units that * are udunits time units; and 2) a trajectory variable
  • *
  • all other variables are on the (time, trajectory) coordinate system
  • *
  • has latitude, longitude, and depth variables, only DEPTH has units * (compatible with "m").
  • *
* * @author edavis * @since Feb 22, 2005T5:37:14 PM */ public class Float10TrajectoryObsDataset extends MultiTrajectoryObsDataset implements TypedDatasetFactoryIF { private static String trajDimNameDefault = "DRIFTER100_110"; private static String trajVarNameDefault = "DRIFTER100_110"; private static String timeDimNameDefault = "TIME1"; private static String timeVarNameDefault = "TIME1"; private static String latVarNameDefault = "LATITUDE"; private static String lonVarNameDefault = "LONGITUDE"; private static String elevVarNameDefault = "DEPTH"; private String trajDimName; private String trajVarName; private String timeDimName; private String timeVarName; private String latVarName; private String lonVarName; private String elevVarName; static public boolean isValidFile(NetcdfDataset ds) { // Check that has a time dimension and a trajectory dimension. List list = ds.getRootGroup().getDimensions(); if ( list.size() != 2) return( false); Dimension d; for ( int i = 0; i < 2; i++) { d = (Dimension) list.get(i); if ( ! d.getName().equals( timeDimNameDefault) && ! d.getName().equals( trajDimNameDefault)) return( false); } // Check that has a trajectory coordinate variable. Variable var = ds.getRootGroup().findVariable( trajVarNameDefault); if ( var == null) return( false); list = var.getDimensions(); if ( list.size() != 1) return( false); d = (Dimension) list.get(0); if ( ! d.getName().equals( trajDimNameDefault)) return( false); // Check that has a time coordinate variable with units that are udunits time var = ds.getRootGroup().findVariable( timeVarNameDefault); if ( var == null) return( false); list = var.getDimensions(); if ( list.size() != 1) return( false); d = (Dimension) list.get(0); if ( ! d.getName().equals( timeDimNameDefault)) return( false); String units = var.findAttribute( "units").getStringValue(); Date date = DateUnit.getStandardDate( "0 " + units); if ( date == null) return( false); // Check for variable latitude(time) with units of "deg". var = ds.getRootGroup().findVariable( latVarNameDefault); if ( var == null) return( false); list = var.getDimensions(); if ( list.size() != 2) return( false); for ( int i = 0; i < 2; i++) { d = (Dimension) list.get(i); if ( ! d.getName().equals( timeDimNameDefault) && ! d.getName().equals( trajDimNameDefault)) return( false); } // units = var.findAttribute( "units").getStringValue(); // if ( ! SimpleUnit.isCompatible( units, "degrees_north")) return( false); // Check for variable longitude(time) with units of "deg". var = ds.getRootGroup().findVariable( lonVarNameDefault); if ( var == null) return( false); list = var.getDimensions(); if ( list.size() != 2) return( false); for ( int i = 0; i < 2; i++) { d = (Dimension) list.get(i); if ( ! d.getName().equals( timeDimNameDefault) && ! d.getName().equals( trajDimNameDefault)) return( false); } // units = var.findAttribute( "units").getStringValue(); // if ( ! SimpleUnit.isCompatible( units, "degrees_east")) return( false); // Check for variable altitude(time) with units of "m". var = ds.getRootGroup().findVariable( elevVarNameDefault); if ( var == null) return( false); list = var.getDimensions(); if ( list.size() != 2) return( false); for ( int i = 0; i < 2; i++) { d = (Dimension) list.get(i); if ( ! d.getName().equals( timeDimNameDefault) && ! d.getName().equals( trajDimNameDefault)) return( false); } units = var.findAttribute( "units").getStringValue(); if ( ! SimpleUnit.isCompatible( units, "m")) return( false); return( true); } ///////////////////////////////////////////////// // TypedDatasetFactoryIF public boolean isMine(NetcdfDataset ds) { return isValidFile(ds); } public TypedDataset open( NetcdfDataset ncd, ucar.nc2.util.CancelTask task, StringBuilder errlog) throws IOException { return new Float10TrajectoryObsDataset( ncd); } public FeatureType getScientificDataType() { return FeatureType.TRAJECTORY; } public Float10TrajectoryObsDataset() {} public Float10TrajectoryObsDataset( NetcdfDataset ncd ) throws IOException { super( ncd); // Get the names of the two coordinate variables and dimensions // and grab the variables and dimensions themselves. trajDimName = trajDimNameDefault; trajVarName = trajVarNameDefault; timeDimName = timeDimNameDefault; timeVarName = timeVarNameDefault; latVarName = latVarNameDefault; lonVarName = lonVarNameDefault; elevVarName = elevVarNameDefault; Variable latVar = ncd.getRootGroup().findVariable( latVarName ); latVar.addAttribute( new Attribute( "units", "degrees_north" ) ); Variable lonVar = ncd.getRootGroup().findVariable( lonVarName ); lonVar.addAttribute( new Attribute( "units", "degrees_east" ) ); this.setTrajectoryInfo( ncfile.getRootGroup().findDimension( trajDimName ), ncfile.getRootGroup().findVariable( trajVarName ), ncfile.getRootGroup().findDimension( timeDimName ), ncfile.getRootGroup().findVariable( timeVarName ), ncfile.getRootGroup().findVariable( latVarName ), ncfile.getRootGroup().findVariable( lonVarName ), ncfile.getRootGroup().findVariable( elevVarName ) ); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy