Tabnine Logo
GridCoordSys.makeVerticalTransform
Code IndexAdd Tabnine to your IDE (free)

How to use
makeVerticalTransform
method
in
ucar.nc2.dt.grid.GridCoordSys

Best Java code snippets using ucar.nc2.dt.grid.GridCoordSys.makeVerticalTransform (Showing top 3 results out of 315)

origin: edu.ucar/netcdf

private void addGeoGrid(VariableDS varDS, GridCoordSys gcs, Formatter parseInfo) {
 Gridset gridset;
 if (null == (gridset = gridsetHash.get(gcs.getName()))) {
  gridset = new Gridset(gcs);
  gridsetHash.put(gcs.getName(), gridset);
  if (parseInfo != null) parseInfo.format(" -make new GridCoordSys= %s\n",gcs.getName());
  gcs.makeVerticalTransform(this, parseInfo); // delayed until now LOOK why for each grid ??
 }
 GeoGrid geogrid = new GeoGrid(this, varDS, gridset.gcc);
 grids.add(geogrid);
 gridset.add(geogrid);
}
origin: edu.ucar/cdm

private void addGeoGrid(VariableDS varDS, GridCoordSys gcs, Formatter parseInfo) {
 Gridset gridset;
 if (null == (gridset = gridsetHash.get(gcs.getName()))) {
  gridset = new Gridset(gcs);
  gridsetHash.put(gcs.getName(), gridset);
  if (parseInfo != null) parseInfo.format(" -make new GridCoordSys= %s%n",gcs.getName());
  gcs.makeVerticalTransform(this, parseInfo); // delayed until now LOOK why for each grid ??
 }
 GeoGrid geogrid = new GeoGrid(this, varDS, gridset.gcc);
 grids.add(geogrid);
 gridset.add(geogrid);
}
origin: Unidata/thredds

private void addGeoGrid(VariableDS varDS, GridCoordSys gcs, Formatter parseInfo) {
 Gridset gridset;
 if (null == (gridset = gridsetHash.get(gcs.getName()))) {
  gridset = new Gridset(gcs);
  gridsetHash.put(gcs.getName(), gridset);
  if (parseInfo != null) parseInfo.format(" -make new GridCoordSys= %s%n",gcs.getName());
  gcs.makeVerticalTransform(this, parseInfo); // delayed until now LOOK why for each grid ??
 }
 GeoGrid geogrid = new GeoGrid(this, varDS, gridset.gcc);
 grids.add(geogrid);
 gridset.add(geogrid);
}
ucar.nc2.dt.gridGridCoordSysmakeVerticalTransform

Popular methods of GridCoordSys

  • hasVerticalAxis
  • <init>
    Create a GridCoordSys as a section of an existing GridCoordSys. This will create sections of the cor
  • convertUnits
  • findXYindexFromCoord
    Given a point in x,y coordinate space, find the x,y index in the coordinate system.
  • findXYindexFromCoordBounded
    Given a point in x,y coordinate space, find the x,y index in the coordinate system. If outside the r
  • getBoundingBox
    Get the x,y bounding box in projection coordinates.
  • getCalendarDates
  • getCoordinateTransforms
  • getEnsembleAxis
    get the Ensemble axis, else null
  • getHorizStaggerType
  • getLatLon
    Get the Lat/Lon coordinates of the midpoint of a grid cell, using the x,y indices
  • getLatLonBoundingBox
  • getLatLon,
  • getLatLonBoundingBox,
  • getLevels,
  • getMinOrMaxLon,
  • getName,
  • getProjection,
  • getRangesFromLatLonRect,
  • getRunTimeAxis,
  • getTimeAxis,
  • getTimeAxis1D

Popular in Java

  • Running tasks concurrently on multiple threads
  • setRequestProperty (URLConnection)
  • putExtra (Intent)
  • orElseThrow (Optional)
    Return the contained value, if present, otherwise throw an exception to be created by the provided s
  • VirtualMachine (com.sun.tools.attach)
    A Java virtual machine. A VirtualMachine represents a Java virtual machine to which this Java vir
  • BufferedReader (java.io)
    Wraps an existing Reader and buffers the input. Expensive interaction with the underlying reader is
  • BufferedWriter (java.io)
    Wraps an existing Writer and buffers the output. Expensive interaction with the underlying reader is
  • FileReader (java.io)
    A specialized Reader that reads from a file in the file system. All read requests made by calling me
  • UUID (java.util)
    UUID is an immutable representation of a 128-bit universally unique identifier (UUID). There are mul
  • Notification (javax.management)
  • Top 12 Jupyter Notebook extensions
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now