'''
# Check for the integrity of feature names
- super(Source, self).__init__()
+ Source.__init__(self)
self._config = ConfigParser()
self._config.read(config_file)
+ self._latitude = self._config['POSITION'].getfloat('latitude')
+ self._longitude = self._config['POSITION'].getfloat('longitude')
+
self._data_directory = (Path.cwd() / 'data') / 'features' / 'meteo_france'
self._dated_features = None