Data Manager Module
DataManager
Source code in yooink/data/data_manager.py
12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 |
|
__init__()
Initializes the DataManager.
Source code in yooink/data/data_manager.py
13 14 15 |
|
merge_frames(frames)
Merge multiple datasets into a single xarray dataset.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
frames
|
List[Dataset]
|
A list of xarray datasets to merge. |
required |
Returns:
Type | Description |
---|---|
Dataset
|
The merged xarray dataset. |
Source code in yooink/data/data_manager.py
67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 |
|
process_file(catalog_file, use_dask=False)
staticmethod
Download and process a NetCDF file into an xarray dataset.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
catalog_file
|
str
|
URL or path to the NetCDF file. |
required |
use_dask
|
bool
|
Whether to use dask for processing (for large files). |
False
|
Returns:
Type | Description |
---|---|
Dataset | None
|
The xarray dataset. |
Source code in yooink/data/data_manager.py
17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 |
|