# GeoTIFFList.py -- Pamhyr # Copyright (C) 2024-2025 INRAE # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . # -*- coding: utf-8 -*- from tools import trace, timer from Model.Except import NotImplementedMethodeError from Model.Tools.PamhyrListExt import PamhyrModelList from Model.GeoTIFF.GeoTIFF import GeoTIFF class GeoTIFFList(PamhyrModelList): _sub_classes = [GeoTIFF] @classmethod def _db_load(cls, execute, data=None): new = cls(status=data["status"]) new._lst = GeoTIFF._db_load(execute, data) return new def _db_save(self, execute, data=None): ok = True # Delete previous data execute( "DELETE FROM geotiff " + f"WHERE scenario = {self._status.scenario_id}" ) for gt in self._lst: ok &= gt._db_save(execute, data) return ok @property def files(self): return self.lst def new(self, index): n = GeoTIFF(status=self._status) self.insert(index, n) self._status.modified() return n