Skip to content

Commit daf2f28

Browse files
authored
remove infer_interval_breaks (#233)
* remove infer_interval_breaks * add changelog * update changelog
1 parent cd02f65 commit daf2f28

File tree

5 files changed

+4
-278
lines changed

5 files changed

+4
-278
lines changed

CHANGELOG.rst

+4
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,10 @@ Breaking changes
7777
- The function ``mask_percentage`` has been renamed to :py:func:`utils.regionmaskcompat.mask_3D_frac_approx`
7878
(`#202 <https://github.com/MESMER-group/mesmer/pull/202>`_).
7979
By `Mathias Hauser <https://github.com/mathause>`_.
80+
- Removed :py:func:`mesmer.io.load_constant_files.infer_interval_breaks` and the edges
81+
from the `lat` and `lon` dictionaries i.e., ``lon["e"]`` and ``lat["e"]``
82+
(`#233 <https://github.com/MESMER-group/mesmer/pull/233>`_).
83+
By `Mathias Hauser <https://github.com/mathause>`_.
8084

8185
Deprecations
8286
^^^^^^^^^^^^

docs/source/api.rst

-1
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,6 @@ Load constant files
146146
.. autosummary::
147147
:toctree: generated/
148148

149-
~io.load_constant_files.infer_interval_breaks
150149
~io.load_constant_files.load_phi_gc
151150
~io.load_constant_files.load_regs_ls_wgt_lon_lat
152151

licenses/XARRAY_LICENSE

-191
This file was deleted.

mesmer/io/load_constant_files.py

-4
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@
1616
from packaging.version import Version
1717

1818
from ..utils.regionmaskcompat import mask_3D_frac_approx
19-
from ..utils.xrcompat import infer_interval_breaks
2019

2120

2221
def load_phi_gc(lon, lat, ls, cfg, L_start=1500, L_end=10000, L_interval=250):
@@ -234,7 +233,4 @@ def load_regs_ls_wgt_lon_lat(reg_type, lon, lat):
234233
lon["grid"], lat["grid"] = np.meshgrid(lon["c"], lat["c"])
235234
wgt = np.cos(np.deg2rad(lat["grid"]))
236235

237-
# derive longitude / latitude of edges of grid cells for plotting with pcolormesh
238-
lon["e"], lat["e"] = infer_interval_breaks(lon["c"], lat["c"])
239-
240236
return reg_dict, ls, wgt, lon, lat

mesmer/utils/xrcompat.py

-82
This file was deleted.

0 commit comments

Comments
 (0)