This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from __future__ import annotations | |
import asyncio | |
import time | |
from collections import deque | |
from dataclasses import dataclass | |
from dataclasses import field | |
from typing import ClassVar | |
from typing import Generic | |
from typing import TypeVar |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import asyncio | |
import collections | |
from asyncio import Event | |
from collections.abc import Awaitable | |
from collections.abc import Callable | |
from collections.abc import Iterable | |
from result import Err | |
from result import Result |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!python3 | |
# Using python3 anconda | |
# conda install -c conda-forge gdal | |
# [email protected] | |
# versión 0.1 | |
#usage: | |
# |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!python3 | |
# Using python3 anconda | |
# conda install -c conda-forge gdal | |
from pathlib import Path | |
from contextlib import contextmanager | |
from osgeo import ogr | |
@contextmanager |