Skip to content

Commit 3f14c64

Browse files
committed
some proj were not actually round ones
it showed it baselines ratio needed to be set to none for ticks/box otherwise would be stretched in bg mode
1 parent 31fd1fc commit 3f14c64

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Packages/vcs/Lib/projection.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@
2424

2525
#projection that seems to be doing a circle
2626
# We will probably to add some more in it as we find more that fit this
27-
round_projections = ['albers equal area','polar (non gctp)','stereographic',
28-
'gnomonic', 'orthographic',"aeqd","ortho","poly","aea"]
27+
round_projections = ['polar (non gctp)','stereographic',
28+
'orthographic',"ortho",]
2929
def process_src(nm,code):
3030
try:
3131
gm = Proj(nm)

Packages/vcs/Lib/template.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1397,7 +1397,7 @@ def plot(self,x,slab,gm,bg=0,min=None,max=None,X=None,Y=None,**kargs):
13971397
l._x = [e._x1,e._x2,e._x2,e._x1,e._x1]
13981398
l._y = [e._y1,e._y1,e._y2,e._y2,e._y1]
13991399
l._priority=e._priority
1400-
displays.append(x.plot(l,bg=bg,**kargs))
1400+
displays.append(x.plot(l,bg=bg,ratio="none",**kargs))
14011401
del(vcs.elements["line"][l.name])
14021402

14031403
#x.mode=m

0 commit comments

Comments
 (0)