Skip to content

Commit ab7556a

Browse files
Merge pull request #1003 from CLIMADA-project/feature/density_tracks
Feature/density tracks
2 parents 4b93d1d + 0b5bb0b commit ab7556a

File tree

5 files changed

+376
-30
lines changed

5 files changed

+376
-30
lines changed

CHANGELOG.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,9 @@ Removed:
109109
- `climada.entity.impact_funcs.trop_cyclone.ImpfSetTropCyclone.get_impf_id_regions_per_countries` function [#1034](https://github.com/CLIMADA-project/climada_python/pull/1034)
110110
- `climada.hazard.tc_tracks.BasinBoundsStorm` Enum class `climada.hazard.tc_tracks.subset_by_basin` function [#1031](https://github.com/CLIMADA-project/climada_python/pull/1031)
111111
- `climada.hazard.tc_tracks.TCTracks.subset_years` function [#1023](https://github.com/CLIMADA-project/climada_python/pull/1023)
112-
- `climada.hazard.tc_tracks.TCTracks.from_FAST` function, add Australia basin (AU) [#993](https://github.com/CLIMADA-project/climada_python/pull/993)
112+
-`climada.hazard.tc_tracks.compute_track_density` function, `climada.hazard.tc_tracks.compute_genesis_density` function, `climada.hazard.plot.plot_track_density` function
113+
[#1003](https://github.com/CLIMADA-project/climada_python/pull/1003)
114+
-`climada.hazard.tc_tracks.TCTracks.from_FAST` function, add Australia basin (AU) [#993](https://github.com/CLIMADA-project/climada_python/pull/993)
113115
- Add `osm-flex` package to CLIMADA core [#981](https://github.com/CLIMADA-project/climada_python/pull/981)
114116
- `doc.tutorial.climada_entity_Exposures_osm.ipynb` tutorial explaining how to use `osm-flex` with CLIMADA
115117
- `climada.util.coordinates.bounding_box_global` function [#980](https://github.com/CLIMADA-project/climada_python/pull/980)

climada/hazard/plot.py

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -175,15 +175,7 @@ def plot_intensity(
175175

176176
raise ValueError("Provide one event id or one centroid id.")
177177

178-
def plot_fraction(
179-
self,
180-
event=None,
181-
centr=None,
182-
smooth=True,
183-
axis=None,
184-
mask_distance=0.03,
185-
**kwargs,
186-
):
178+
def plot_fraction(self, event=None, centr=None, smooth=True, axis=None, **kwargs):
187179
"""Plot fraction values for a selected event or centroid.
188180
189181
Parameters

0 commit comments

Comments
 (0)