
ucar.nc2.stream.coordSys.proto 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.
package ncstream;
import "ucar/nc2/stream/ncStream.proto";
option java_package = "ucar.nc2.stream";
option java_outer_classname = "CoordSysProto";
enum AxisType {
TIME = 0;
LAT = 1;
LON = 2;
HEIGHT = 3;
PRESSURE = 4;
GEOX = 5;
GEOY = 6;
GEOZ = 7;
RUNTIME = 8;
ENSEMBLE = 9;
AZIMUTH = 10;
ELEVATION = 11;
DISTANCE = 12;
}
message CoordTransform {
enum Type {
HORIZ = 0;
VERT = 1;
}
required Type type = 1;
required string name = 2;
repeated Attribute params = 3;
}
message CoordSys {
required string name = 1;
repeated string coordVar = 2;
repeated CoordTransform transforms = 3;
repeated CoordSys components = 3;
}
enum FeatureType {
GRID = 0;
SWATH = 1;
POINT = 2;
STATION = 3;
PROFILE = 4;
TRAJECTORY = 5;
STATION_PROFILE = 6;
TRAJECTORY_PROFILE = 7;
RADIAL = 8;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy