-
-
Notifications
You must be signed in to change notification settings - Fork 8.3k
Expand file tree
/
Copy path__init__.pyi
More file actions
20 lines (17 loc) · 673 Bytes
/
__init__.pyi
File metadata and controls
20 lines (17 loc) · 673 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
from .geo import (
AitoffAxes as AitoffAxes,
HammerAxes as HammerAxes,
LambertAxes as LambertAxes,
MollweideAxes as MollweideAxes,
)
from .polar import PolarAxes as PolarAxes
from ..axes import Axes
class ProjectionRegistry:
def __init__(self) -> None: ...
def register(self, *projections: type[Axes]) -> None: ...
def get_projection_class(self, name: str) -> type[Axes]: ...
def get_projection_names(self) -> list[str]: ...
projection_registry: ProjectionRegistry
def register_projection(cls: type[Axes]) -> None: ...
def get_projection_class(projection: str | None = ...) -> type[Axes]: ...
def get_projection_names() -> list[str]: ...