C# Class Grib.Api.Interop.GribValuesIterator

Wraps a grib_iterator struct.
Inheritance: AutoRef
Exibir arquivo Open project: 0x1mason/GribApi.NET Class Usage Examples

Public Methods

Method Description
Create ( GribHandle h, uint filters ) : GribValuesIterator

Creates an instance of GribValuesIterator.

Next ( double isMissingFlag, GeoSpatialValue &gsVal ) : bool

Gets the next value in a series.

Rewind ( ) : void

Rewinds this instance.

Protected Methods

Method Description
OnDispose ( bool disposing ) : void

Called when [dispose].

Private Methods

Method Description
GribValuesIterator ( IntPtr h ) : Grib.Api.Interop.SWIG

Initializes a new instance of the GribValuesIterator class.

Method Details

Create() public static method

Creates an instance of GribValuesIterator.
public static Create ( GribHandle h, uint filters ) : GribValuesIterator
h GribHandle The handle of the message to iterate.
filters uint The filters.
return GribValuesIterator

Next() public method

Gets the next value in a series.
public Next ( double isMissingFlag, GeoSpatialValue &gsVal ) : bool
isMissingFlag double The is missing flag.
gsVal GeoSpatialValue The gs value.
return bool

OnDispose() protected method

Called when [dispose].
protected OnDispose ( bool disposing ) : void
disposing bool true to release both managed and unmanaged resources; false to release only unmanaged resources.
return void

Rewind() public method

Rewinds this instance.
public Rewind ( ) : void
return void