We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8edd85f commit f36feadCopy full SHA for f36fead
climada/hazard/centroids/base.py
@@ -184,10 +184,6 @@ def plot(self, **kwargs):
184
kwargs['s'] = 1
185
fig, axis = plot.make_map()
186
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)]))
191
plot.add_shapes(axis)
192
axis.set_title(self.tag.join_file_names())
193
axis.scatter(self.lon, self.lat, **kwargs)
0 commit comments