forked from matplotlib/matplotlib
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path__init__.py
More file actions
39 lines (30 loc) · 1.1 KB
/
Copy path__init__.py
File metadata and controls
39 lines (30 loc) · 1.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
from polar import PolarAxes
from matplotlib import axes
class ProjectionRegistry(object):
def __init__(self):
self._all_projection_types = {}
def register(self, *projections):
for projection in projections:
name = projection.name
self._all_projection_types[name] = projection
def get_projection_class(self, name):
return self._all_projection_types[name]
def get_projection_names(self):
names = self._all_projection_types.keys()
names.sort()
return names
projection_registry = ProjectionRegistry()
projection_registry.register(
axes.Axes,
PolarAxes)
def get_projection_class(projection):
if projection is None:
projection = 'rectilinear'
try:
return projection_registry.get_projection_class(projection)
except KeyError:
raise ValueError("Unknown projection '%s'" % projection)
def projection_factory(projection, figure, rect, **kwargs):
return get_projection_class(projection)(figure, rect, **kwargs)
def get_projection_names():
return projection_registry.get_projection_names()