ka.cf4j.24.0.source-code.cf-standard-names.xsl Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cf4j Show documentation
Show all versions of cf4j Show documentation
Java library containing the NetCDF Climate and Forecast (CF) standard names and feature types. See http://cfconventions.org/standard-names.html for CF documentation.
package com.axiomalaska.cf4j;
import java.util.Collection;
import java.util.ArrayList;
/**
* CF Standard Names, version .
* See <a href="http://cf-pcmdi.llnl.gov/documents/cf-standard-names/">http://cf-pcmdi.llnl.gov/documents/cf-standard-names/</a>.
*/
public class CFStandardNames {
private static Collection<CFStandardName> allNames = new ArrayList<CFStandardName>();
/** */
public static final CFStandardName = createCFStandardName(
" "
,
" "
null
,
" "
null
,
" "
null
,
" "
null
);
private static CFStandardName createCFStandardName( String name, String canonicalUnits,
String description, String grib, String amip ){
CFStandardName cfName = new CFStandardName( name, canonicalUnits, description, grib, amip );
allNames.add( cfName );
return cfName;
}
public static Collection<CFStandardName> getAllNames(){
return allNames;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy