Skip to content

Commit f36fead

Browse files
committed
remove limits centroids plot
1 parent 8edd85f commit f36fead

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

climada/hazard/centroids/base.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -184,10 +184,6 @@ def plot(self, **kwargs):
184184
kwargs['s'] = 1
185185
fig, axis = plot.make_map()
186186
axis = axis[0][0]
187-
min_lat, max_lat = self.lat.min(), self.lat.max()
188-
min_lon, max_lon = self.lon.min(), self.lon.max()
189-
axis.set_extent(([int(min_lon), int(max_lon),
190-
int(min_lat), int(max_lat)]))
191187
plot.add_shapes(axis)
192188
axis.set_title(self.tag.join_file_names())
193189
axis.scatter(self.lon, self.lat, **kwargs)

0 commit comments

Comments
 (0)