yirgacheffe 1.7.6__py3-none-any.whl → 1.7.8__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- yirgacheffe/_core.py +1 -1
- yirgacheffe/_operators.py +982 -0
- yirgacheffe/layers/base.py +2 -1
- yirgacheffe/layers/constant.py +1 -2
- yirgacheffe/layers/group.py +1 -2
- yirgacheffe/layers/h3layer.py +1 -1
- yirgacheffe/layers/rasters.py +1 -1
- yirgacheffe/layers/rescaled.py +1 -1
- yirgacheffe/layers/vectors.py +1 -1
- yirgacheffe/operators.py +6 -970
- yirgacheffe/py.typed +0 -0
- yirgacheffe/window.py +2 -2
- {yirgacheffe-1.7.6.dist-info → yirgacheffe-1.7.8.dist-info}/METADATA +12 -5
- yirgacheffe-1.7.8.dist-info/RECORD +27 -0
- yirgacheffe-1.7.6.dist-info/RECORD +0 -25
- {yirgacheffe-1.7.6.dist-info → yirgacheffe-1.7.8.dist-info}/WHEEL +0 -0
- {yirgacheffe-1.7.6.dist-info → yirgacheffe-1.7.8.dist-info}/entry_points.txt +0 -0
- {yirgacheffe-1.7.6.dist-info → yirgacheffe-1.7.8.dist-info}/licenses/LICENSE +0 -0
- {yirgacheffe-1.7.6.dist-info → yirgacheffe-1.7.8.dist-info}/top_level.txt +0 -0
yirgacheffe/_core.py
CHANGED
|
@@ -8,7 +8,7 @@ from .layers.group import GroupLayer, TiledGroupLayer
|
|
|
8
8
|
from .layers.rasters import RasterLayer
|
|
9
9
|
from .layers.vectors import VectorLayer
|
|
10
10
|
from .window import MapProjection
|
|
11
|
-
from .
|
|
11
|
+
from ._backends.enumeration import dtype as DataType
|
|
12
12
|
|
|
13
13
|
def read_raster(
|
|
14
14
|
filename: Union[Path,str],
|