result_network.ResultCatchment
self, catchment, res1d) result_network.ResultCatchment(
Class for wrapping a single ResultData catchment.
Parameters
Name | Type | Description | Default |
---|---|---|---|
catchment | IRes1DCatchment | MIKE 1D IRes1DCatchment object. | required |
res1d | Res1D | Res1D object the catchment belongs to. | required |
Attributes
Name | Description |
---|---|
area | The area of the catchment. |
derived_quantities | A list of available derived quantities. |
geometry | A geometric representation of the catchment. Requires shapely. |
group | The TimeSeriesIdGroup assosciated with this location. |
id | The ID of the catchment. |
quantities | A list of available quantities. |
res1d | The Res1D instance that this location belongs to. |
res1d_catchment | DHI.Mike1D.ResultDataAccess.IRes1DCatchment corresponding to this result location. |
type | The type of the catchment. |
Methods
Name | Description |
---|---|
add_query | Add a query to ResultNetwork.queries list. |
get_m1d_dataset | Get IRes1DDataSet object associated with ResultCatchment. |
get_query | Get a QueryDataCatchment for given data item. |
read | Read the time series data for all quantities at this location into a DataFrame. |
to_dataframe | Read the time series data for all quantities at this location into a DataFrame. |
add_query
result_network.ResultCatchment.add_query(data_item)
Add a query to ResultNetwork.queries list.
get_m1d_dataset
=None) result_network.ResultCatchment.get_m1d_dataset(m1d_dataitem
Get IRes1DDataSet object associated with ResultCatchment.
Parameters
Name | Type | Description | Default |
---|---|---|---|
m1d_dataitem | IDataItem | Ignored for ResultCatchment. | None |
Returns
Name | Type | Description |
---|---|---|
IRes1DDataSet | IRes1DDataSet object associated with ResultCatchment. |
get_query
result_network.ResultCatchment.get_query(data_item)
Get a QueryDataCatchment for given data item.
read
=None) result_network.ResultCatchment.read(column_mode
Read the time series data for all quantities at this location into a DataFrame.
Parameters
Name | Type | Description | Default |
---|---|---|---|
column_mode | str | ColumnMode(optional) | Specifies the type of column index of returned DataFrame. ‘all’ - column MultiIndex with levels matching TimeSeriesId objects. ‘compact’ - same as ‘all’, but removes levels with default values. ‘timeseries’ - column index of TimeSeriesId objects | None |
to_dataframe
=None) result_network.ResultCatchment.to_dataframe(column_mode
Read the time series data for all quantities at this location into a DataFrame.
Alias for read() method.
Parameters
Name | Type | Description | Default |
---|---|---|---|
column_mode | str | ColumnMode(optional) | Specifies the type of column index of returned DataFrame. ‘all’ - column MultiIndex with levels matching TimeSeriesId objects. ‘compact’ - same as ‘all’, but removes levels with default values. ‘timeseries’ - column index of TimeSeriesId objects | None |