Method | Description | |
---|---|---|
AsBytes ( ) : byte[] |
Gets the key's value in bytes.
|
|
AsBytes ( byte newBytes ) : void |
Sets the key's value in bytes.
|
|
AsDouble ( bool inDegrees = true ) : double |
Gets the key's value.
|
|
AsDouble ( double newValue, bool inDegrees = true ) : void |
Sets the key's value.
|
|
AsDoubleArray ( ) : double[] |
Gets a copy of the key's array value. Changing the values of this array does not affect the owning message. Call ::AsXArray(alteredArray) to set new values.
|
|
AsDoubleArray ( double newValues, bool force = false ) : void |
Sets the key's value.
|
|
AsInt ( ) : int |
Gets the key's value.
|
|
AsInt ( int newValue ) : void |
Sets the key's value.
|
|
AsIntArray ( ) : int[] |
Gets a copy of the key's array value. Changing the values of this array does not affect the owning message. Call ::AsXArray(alteredArray) to set new values.
|
|
AsIntArray ( int newValues ) : void |
Sets the key's value.
|
|
AsString ( bool inDegrees = true ) : string |
Gets the key's value.
|
|
AsString ( string newValue ) : void |
Sets the key's value.
|
|
ToString ( ) : string |
Returns a System.String that represents the value as a string.
|
Method | Description | |
---|---|---|
BuildTokenForDouble ( bool inDegrees ) : string |
Builds the token for accesing/mutating double values, accounting for degree conversions.
|
Method | Description | |
---|---|---|
AssertTypeSafe ( GribValueType requestedType ) : void |
Tests for type safety when accessing this value.
|
|
AssertTypeSafe ( string key, GribValueType requestedType, GribValueType actualType ) : void |
Tests for type safety when accessing a GRIB value.
|
|
GribValue ( |
Initializes a new instance of the GribValue class.
|
|
GribValue ( string keyName ) : System |
Initializes a new instance of the GribValue class.
|
|
NativeTypeForKey ( string key ) : GribValueType |
Gets an enum describing a key's representation within the message.
|
public AsBytes ( byte newBytes ) : void | ||
newBytes | byte | The new bytes. |
return | void |
public AsDouble ( bool inDegrees = true ) : double | ||
inDegrees | bool | if set to |
return | double |
public AsDouble ( double newValue, bool inDegrees = true ) : void | ||
newValue | double | The new value. |
inDegrees | bool | if set to |
return | void |
public AsDoubleArray ( double newValues, bool force = false ) : void | ||
newValues | double | The new values. |
force | bool | if set to |
return | void |
public AsIntArray ( int newValues ) : void | ||
newValues | int | The new values. |
return | void |
public AsString ( bool inDegrees = true ) : string | ||
inDegrees | bool | if set to |
return | string |
public AsString ( string newValue ) : void | ||
newValue | string | The new value. |
return | void |
protected BuildTokenForDouble ( bool inDegrees ) : string | ||
inDegrees | bool | if set to |
return | string |