An error occurred while loading the file. Please try again.
-
Grelot Frederic authored
0 errors
| 0 warnings | 0 notes Note de version : * COORECTION so_ii_clc avec le bon scope DESCRIPTION * Version: 1.0.19.0 data * correction de so_ii_clc Documentation mise à jour Vignettes * RAS dev * RAS642e2659
import numpy as np
class AbstractVariable(object):
"""
All Variable (CROCUS & SAFRAN) are available since 1958-08-01 06:00:00
"""
NAME = ''
UNIT = ''
def __init__(self, variable_array):
self.variable_array = variable_array
@classmethod
def keyword(cls):
raise NotImplementedError
@property
def daily_time_serie_array(self) -> np.ndarray:
# Return an array of size length of time series x nb_massif
raise NotImplementedError