Beispiel #1
0
    def load(self, seed=None):
        """
        Load a tile based on the seed. The tile has a easting and northing
        of 0. It must be reimplimented if this is not the expected behavior.

        Parameters
        ----------
        seed : TileLoader dependant (default : None)
            A seed to load the image

        Return
        ------
        tile : TileLoader dependant
            The corresponding tile
        """
        tile = Tile(self._load(seed))
        tile.patch = self.converter.convert(tile.patch)
        return tile