Skip to content

Commit

Permalink
add back
Browse files Browse the repository at this point in the history
  • Loading branch information
ahuang11 committed Oct 30, 2024
1 parent bae3bd7 commit 0054eea
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions hvplot/ui.py
Original file line number Diff line number Diff line change
Expand Up @@ -665,8 +665,8 @@ def _plot(self):
if kwargs.get('geo'):
if 'crs' not in kwargs:
xmax = np.max(np.abs(self.xlim()))
# self.geographic.crs = 'PlateCarree' if xmax <= 360 else 'GOOGLE_MERCATOR'
kwargs['crs'] = 'PlateCarree' if xmax <= 360 else 'GOOGLE_MERCATOR'
self.geographic.crs = 'PlateCarree' if xmax <= 360 else 'GOOGLE_MERCATOR'
kwargs['crs'] = self.geographic.crs
for key in ['crs', 'projection']:
if key not in kwargs:
continue
Expand Down

0 comments on commit 0054eea

Please sign in to comment.