.. DO NOT EDIT. .. THIS FILE WAS AUTOMATICALLY GENERATED BY SPHINX-GALLERY. .. TO MAKE CHANGES, EDIT THE SOURCE PYTHON FILE: .. "auto_examples/thunderstorm_detection_and_tracking.py" .. LINE NUMBERS ARE GIVEN BELOW. .. only:: html .. note:: :class: sphx-glr-download-link-note Click :ref:`here ` to download the full example code .. rst-class:: sphx-glr-example-title .. _sphx_glr_auto_examples_thunderstorm_detection_and_tracking.py: Thunderstorm Detection and Tracking - T-DaTing ============================================== This example shows how to use the thunderstorm DaTing module. The example is based on MeteoSwiss radar data and uses the Cartesian composite of maximum reflectivity on a 1 km grid. All default values are tuned to this grid, but can be modified. The first section demonstrates thunderstorm cell detection and how to plot contours. The second section demonstrates detection and tracking in combination, as well as how to plot the resulting tracks. This module was implemented following the procedures used in the TRT Thunderstorms Radar Tracking algorithm (:cite:`TRT2004`) used operationally at MeteoSwiss. Modifications include advecting the identified thunderstorms with the optical flow obtained from pysteps, as well as additional options in the thresholding. A detailed description is published in Appendix A of :cite:`Feldmann2021`. References .......... :cite:`TRT2004` :cite:`Feldmann2021` @author: feldmann-m .. GENERATED FROM PYTHON SOURCE LINES 26-28 Import all required functions ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ .. GENERATED FROM PYTHON SOURCE LINES 28-41 .. code-block:: default from datetime import datetime from pprint import pprint import matplotlib.pyplot as plt import numpy as np from pysteps import io, rcparams from pysteps.feature import tstorm as tstorm_detect from pysteps.tracking import tdating as tstorm_dating from pysteps.utils import to_reflectivity from pysteps.visualization import plot_precip_field, plot_track, plot_cart_contour .. GENERATED FROM PYTHON SOURCE LINES 42-48 Read the radar input images ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ A series of 20 files containing Swiss Cartesian gridded rain rates are imported. Since the algorithm is tuned to Swiss max-reflectivity data, the rain rates are transformed to reflectivity fields using the 'to_reflectivity' utility in pysteps.utils. .. GENERATED FROM PYTHON SOURCE LINES 48-78 .. code-block:: default # Select the input data date = datetime.strptime("201607112100", "%Y%m%d%H%M") data_source = rcparams.data_sources["mch"] # Extract corresponding settings root_path = data_source["root_path"] path_fmt = data_source["path_fmt"] fn_pattern = data_source["fn_pattern"] fn_ext = data_source["fn_ext"] importer_name = data_source["importer"] importer_kwargs = data_source["importer_kwargs"] timestep = data_source["timestep"] # Load the data from the archive fns = io.archive.find_by_date( date, root_path, path_fmt, fn_pattern, fn_ext, timestep, num_next_files=20 ) importer = io.get_method(importer_name, "importer") R, _, metadata = io.read_timeseries(fns, importer, **importer_kwargs) # Convert to reflectivity (it is possible to give the a- and b- parameters of the # Marshall-Palmer relationship here: zr_a = and zr_b =). Z, metadata = to_reflectivity(R, metadata) # Extract the list of timestamps timelist = metadata["timestamps"] pprint(metadata) .. rst-class:: sphx-glr-script-out Out: .. code-block:: none {'accutime': 5, 'cartesian_unit': 'm', 'institution': 'MeteoSwiss', 'product': 'AQC', 'projection': '+proj=somerc +lon_0=7.43958333333333 +lat_0=46.9524055555556 ' '+k_0=1 +x_0=600000 +y_0=200000 +ellps=bessel ' '+towgs84=674.374,15.056,405.346,0,0,0,0 +units=m +no_defs', 'threshold': -4.062281309285625, 'timestamps': array([datetime.datetime(2016, 7, 11, 21, 0), datetime.datetime(2016, 7, 11, 21, 5), datetime.datetime(2016, 7, 11, 21, 10), datetime.datetime(2016, 7, 11, 21, 15), datetime.datetime(2016, 7, 11, 21, 20), datetime.datetime(2016, 7, 11, 21, 25), datetime.datetime(2016, 7, 11, 21, 30), datetime.datetime(2016, 7, 11, 21, 35), datetime.datetime(2016, 7, 11, 21, 40), datetime.datetime(2016, 7, 11, 21, 45), datetime.datetime(2016, 7, 11, 21, 50), datetime.datetime(2016, 7, 11, 21, 55), datetime.datetime(2016, 7, 11, 22, 0), datetime.datetime(2016, 7, 11, 22, 5), datetime.datetime(2016, 7, 11, 22, 10), datetime.datetime(2016, 7, 11, 22, 15), datetime.datetime(2016, 7, 11, 22, 20), datetime.datetime(2016, 7, 11, 22, 25), datetime.datetime(2016, 7, 11, 22, 30), datetime.datetime(2016, 7, 11, 22, 35), datetime.datetime(2016, 7, 11, 22, 40)], dtype=object), 'transform': 'dB', 'unit': 'dBZ', 'x1': 255000.0, 'x2': 965000.0, 'xpixelsize': 1000.0, 'y1': -160000.0, 'y2': 480000.0, 'yorigin': 'upper', 'ypixelsize': 1000.0, 'zerovalue': -9.062281309285625, 'zr_a': 316.0, 'zr_b': 1.5} .. GENERATED FROM PYTHON SOURCE LINES 79-83 Example of thunderstorm identification in a single timestep ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ The function tstorm_detect.detection requires a 2-D input image, all further inputs are optional. .. GENERATED FROM PYTHON SOURCE LINES 83-88 .. code-block:: default input_image = Z[2, :, :].copy() time = timelist[2] cells_id, labels = tstorm_detect.detection(input_image, time=time) .. rst-class:: sphx-glr-script-out Out: .. code-block:: none /home/runner/work/pysteps/pysteps/pysteps/feature/tstorm.py:151: FutureWarning: `selem` is a deprecated argument name for `h_maxima`. It will be removed in version 1.0.Please use `footprint` instead. maxima = skim.h_maxima(filt_image, h=mindiff, selem=struct) /home/runner/work/pysteps/pysteps/pysteps/feature/tstorm.py:242: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy cells_id.ID.iloc[n] = ID /home/runner/work/pysteps/pysteps/pysteps/feature/tstorm.py:243: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy cells_id.x.iloc[n] = np.where(cells == cell_labels[n])[1] /home/runner/work/pysteps/pysteps/pysteps/feature/tstorm.py:244: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy cells_id.y.iloc[n] = np.where(cells == cell_labels[n])[0] /home/runner/work/pysteps/pysteps/pysteps/feature/tstorm.py:249: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy cells_id.cont.iloc[n] = contours /home/runner/work/pysteps/pysteps/pysteps/feature/tstorm.py:250: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy cells_id.cen_x.iloc[n] = int(np.nanmean(cells_id.x[n])) # int(x[0]) /home/runner/work/pysteps/pysteps/pysteps/feature/tstorm.py:251: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy cells_id.cen_y.iloc[n] = int(np.nanmean(cells_id.y[n])) # int(y[0]) /home/runner/work/pysteps/pysteps/pysteps/feature/tstorm.py:252: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy cells_id.max_ref.iloc[n] = maxref /home/runner/work/pysteps/pysteps/pysteps/feature/tstorm.py:253: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy cells_id.area.iloc[n] = len(cells_id.x.iloc[n]) /home/runner/micromamba/envs/doc_builder/lib/python3.8/site-packages/pandas/core/internals/blocks.py:924: VisibleDeprecationWarning: Creating an ndarray from ragged nested sequences (which is a list-or-tuple of lists-or-tuples-or ndarrays with different lengths or shapes) is deprecated. If you meant to do this, you must specify 'dtype=object' when creating the ndarray. arr_value = np.asarray(value) .. GENERATED FROM PYTHON SOURCE LINES 89-90 Properties of one of the identified cells: .. GENERATED FROM PYTHON SOURCE LINES 90-92 .. code-block:: default print(cells_id.iloc[0]) .. rst-class:: sphx-glr-script-out Out: .. code-block:: none ID 1 time 2016-07-11 21:10:00 x [464, 465, 466, 467, 468, 469, 470, 471, 472, ... y [115, 115, 115, 115, 115, 115, 115, 115, 115, ... cen_x 463 cen_y 119 max_ref 47.437719 cont [[[128.2, 448.0], [128.0, 447.8], [127.2, 447.... area 176 Name: 0, dtype: object .. GENERATED FROM PYTHON SOURCE LINES 93-98 Example of thunderstorm tracking over a timeseries ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ The tstorm-dating function requires the entire pre-loaded time series. The first two timesteps are required to initialize the flow prediction and are not used to compute tracks. .. GENERATED FROM PYTHON SOURCE LINES 98-103 .. code-block:: default track_list, cell_list, label_list = tstorm_dating.dating( input_video=Z, timelist=timelist ) .. rst-class:: sphx-glr-script-out Out: .. code-block:: none /home/runner/work/pysteps/pysteps/pysteps/feature/tstorm.py:151: FutureWarning: `selem` is a deprecated argument name for `h_maxima`. It will be removed in version 1.0.Please use `footprint` instead. maxima = skim.h_maxima(filt_image, h=mindiff, selem=struct) /home/runner/work/pysteps/pysteps/pysteps/feature/tstorm.py:242: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy cells_id.ID.iloc[n] = ID /home/runner/work/pysteps/pysteps/pysteps/feature/tstorm.py:243: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy cells_id.x.iloc[n] = np.where(cells == cell_labels[n])[1] /home/runner/work/pysteps/pysteps/pysteps/feature/tstorm.py:244: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy cells_id.y.iloc[n] = np.where(cells == cell_labels[n])[0] /home/runner/work/pysteps/pysteps/pysteps/feature/tstorm.py:249: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy cells_id.cont.iloc[n] = contours /home/runner/work/pysteps/pysteps/pysteps/feature/tstorm.py:250: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy cells_id.cen_x.iloc[n] = int(np.nanmean(cells_id.x[n])) # int(x[0]) /home/runner/work/pysteps/pysteps/pysteps/feature/tstorm.py:251: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy cells_id.cen_y.iloc[n] = int(np.nanmean(cells_id.y[n])) # int(y[0]) /home/runner/work/pysteps/pysteps/pysteps/feature/tstorm.py:252: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy cells_id.max_ref.iloc[n] = maxref /home/runner/work/pysteps/pysteps/pysteps/feature/tstorm.py:253: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy cells_id.area.iloc[n] = len(cells_id.x.iloc[n]) /home/runner/work/pysteps/pysteps/pysteps/feature/tstorm.py:151: FutureWarning: `selem` is a deprecated argument name for `h_maxima`. It will be removed in version 1.0.Please use `footprint` instead. maxima = skim.h_maxima(filt_image, h=mindiff, selem=struct) /home/runner/work/pysteps/pysteps/pysteps/feature/tstorm.py:242: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy cells_id.ID.iloc[n] = ID /home/runner/work/pysteps/pysteps/pysteps/feature/tstorm.py:243: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy cells_id.x.iloc[n] = np.where(cells == cell_labels[n])[1] /home/runner/work/pysteps/pysteps/pysteps/feature/tstorm.py:244: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy cells_id.y.iloc[n] = np.where(cells == cell_labels[n])[0] /home/runner/work/pysteps/pysteps/pysteps/feature/tstorm.py:249: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy cells_id.cont.iloc[n] = contours /home/runner/work/pysteps/pysteps/pysteps/feature/tstorm.py:250: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy cells_id.cen_x.iloc[n] = int(np.nanmean(cells_id.x[n])) # int(x[0]) /home/runner/work/pysteps/pysteps/pysteps/feature/tstorm.py:251: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy cells_id.cen_y.iloc[n] = int(np.nanmean(cells_id.y[n])) # int(y[0]) /home/runner/work/pysteps/pysteps/pysteps/feature/tstorm.py:252: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy cells_id.max_ref.iloc[n] = maxref /home/runner/work/pysteps/pysteps/pysteps/feature/tstorm.py:253: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy cells_id.area.iloc[n] = len(cells_id.x.iloc[n]) /home/runner/micromamba/envs/doc_builder/lib/python3.8/site-packages/pandas/core/internals/blocks.py:924: VisibleDeprecationWarning: Creating an ndarray from ragged nested sequences (which is a list-or-tuple of lists-or-tuples-or ndarrays with different lengths or shapes) is deprecated. If you meant to do this, you must specify 'dtype=object' when creating the ndarray. arr_value = np.asarray(value) /home/runner/work/pysteps/pysteps/pysteps/feature/tstorm.py:151: FutureWarning: `selem` is a deprecated argument name for `h_maxima`. It will be removed in version 1.0.Please use `footprint` instead. maxima = skim.h_maxima(filt_image, h=mindiff, selem=struct) /home/runner/work/pysteps/pysteps/pysteps/feature/tstorm.py:242: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy cells_id.ID.iloc[n] = ID /home/runner/work/pysteps/pysteps/pysteps/feature/tstorm.py:243: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy cells_id.x.iloc[n] = np.where(cells == cell_labels[n])[1] /home/runner/work/pysteps/pysteps/pysteps/feature/tstorm.py:244: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy cells_id.y.iloc[n] = np.where(cells == cell_labels[n])[0] /home/runner/work/pysteps/pysteps/pysteps/feature/tstorm.py:249: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy cells_id.cont.iloc[n] = contours /home/runner/work/pysteps/pysteps/pysteps/feature/tstorm.py:250: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy cells_id.cen_x.iloc[n] = int(np.nanmean(cells_id.x[n])) # int(x[0]) /home/runner/work/pysteps/pysteps/pysteps/feature/tstorm.py:251: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy cells_id.cen_y.iloc[n] = int(np.nanmean(cells_id.y[n])) # int(y[0]) /home/runner/work/pysteps/pysteps/pysteps/feature/tstorm.py:252: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy cells_id.max_ref.iloc[n] = maxref /home/runner/work/pysteps/pysteps/pysteps/feature/tstorm.py:253: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy cells_id.area.iloc[n] = len(cells_id.x.iloc[n]) /home/runner/micromamba/envs/doc_builder/lib/python3.8/site-packages/pandas/core/internals/blocks.py:924: VisibleDeprecationWarning: Creating an ndarray from ragged nested sequences (which is a list-or-tuple of lists-or-tuples-or ndarrays with different lengths or shapes) is deprecated. If you meant to do this, you must specify 'dtype=object' when creating the ndarray. arr_value = np.asarray(value) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:209: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy cells_id_new.ID.iloc[ID] = new_ID /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:213: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy cells_id_new.ID.iloc[ID] = new_ID /home/runner/work/pysteps/pysteps/pysteps/feature/tstorm.py:151: FutureWarning: `selem` is a deprecated argument name for `h_maxima`. It will be removed in version 1.0.Please use `footprint` instead. maxima = skim.h_maxima(filt_image, h=mindiff, selem=struct) /home/runner/work/pysteps/pysteps/pysteps/feature/tstorm.py:242: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy cells_id.ID.iloc[n] = ID /home/runner/work/pysteps/pysteps/pysteps/feature/tstorm.py:243: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy cells_id.x.iloc[n] = np.where(cells == cell_labels[n])[1] /home/runner/work/pysteps/pysteps/pysteps/feature/tstorm.py:244: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy cells_id.y.iloc[n] = np.where(cells == cell_labels[n])[0] /home/runner/work/pysteps/pysteps/pysteps/feature/tstorm.py:249: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy cells_id.cont.iloc[n] = contours /home/runner/work/pysteps/pysteps/pysteps/feature/tstorm.py:250: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy cells_id.cen_x.iloc[n] = int(np.nanmean(cells_id.x[n])) # int(x[0]) /home/runner/work/pysteps/pysteps/pysteps/feature/tstorm.py:251: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy cells_id.cen_y.iloc[n] = int(np.nanmean(cells_id.y[n])) # int(y[0]) /home/runner/work/pysteps/pysteps/pysteps/feature/tstorm.py:252: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy cells_id.max_ref.iloc[n] = maxref /home/runner/work/pysteps/pysteps/pysteps/feature/tstorm.py:253: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy cells_id.area.iloc[n] = len(cells_id.x.iloc[n]) /home/runner/micromamba/envs/doc_builder/lib/python3.8/site-packages/pandas/core/internals/blocks.py:924: VisibleDeprecationWarning: Creating an ndarray from ragged nested sequences (which is a list-or-tuple of lists-or-tuples-or ndarrays with different lengths or shapes) is deprecated. If you meant to do this, you must specify 'dtype=object' when creating the ndarray. arr_value = np.asarray(value) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:209: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy cells_id_new.ID.iloc[ID] = new_ID /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:213: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy cells_id_new.ID.iloc[ID] = new_ID /home/runner/work/pysteps/pysteps/pysteps/feature/tstorm.py:151: FutureWarning: `selem` is a deprecated argument name for `h_maxima`. It will be removed in version 1.0.Please use `footprint` instead. maxima = skim.h_maxima(filt_image, h=mindiff, selem=struct) /home/runner/work/pysteps/pysteps/pysteps/feature/tstorm.py:242: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy cells_id.ID.iloc[n] = ID /home/runner/work/pysteps/pysteps/pysteps/feature/tstorm.py:243: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy cells_id.x.iloc[n] = np.where(cells == cell_labels[n])[1] /home/runner/work/pysteps/pysteps/pysteps/feature/tstorm.py:244: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy cells_id.y.iloc[n] = np.where(cells == cell_labels[n])[0] /home/runner/work/pysteps/pysteps/pysteps/feature/tstorm.py:249: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy cells_id.cont.iloc[n] = contours /home/runner/work/pysteps/pysteps/pysteps/feature/tstorm.py:250: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy cells_id.cen_x.iloc[n] = int(np.nanmean(cells_id.x[n])) # int(x[0]) /home/runner/work/pysteps/pysteps/pysteps/feature/tstorm.py:251: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy cells_id.cen_y.iloc[n] = int(np.nanmean(cells_id.y[n])) # int(y[0]) /home/runner/work/pysteps/pysteps/pysteps/feature/tstorm.py:252: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy cells_id.max_ref.iloc[n] = maxref /home/runner/work/pysteps/pysteps/pysteps/feature/tstorm.py:253: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy cells_id.area.iloc[n] = len(cells_id.x.iloc[n]) /home/runner/micromamba/envs/doc_builder/lib/python3.8/site-packages/pandas/core/internals/blocks.py:924: VisibleDeprecationWarning: Creating an ndarray from ragged nested sequences (which is a list-or-tuple of lists-or-tuples-or ndarrays with different lengths or shapes) is deprecated. If you meant to do this, you must specify 'dtype=object' when creating the ndarray. arr_value = np.asarray(value) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:209: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy cells_id_new.ID.iloc[ID] = new_ID /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:213: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy cells_id_new.ID.iloc[ID] = new_ID /home/runner/work/pysteps/pysteps/pysteps/feature/tstorm.py:151: FutureWarning: `selem` is a deprecated argument name for `h_maxima`. It will be removed in version 1.0.Please use `footprint` instead. maxima = skim.h_maxima(filt_image, h=mindiff, selem=struct) /home/runner/work/pysteps/pysteps/pysteps/feature/tstorm.py:242: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy cells_id.ID.iloc[n] = ID /home/runner/work/pysteps/pysteps/pysteps/feature/tstorm.py:243: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy cells_id.x.iloc[n] = np.where(cells == cell_labels[n])[1] /home/runner/work/pysteps/pysteps/pysteps/feature/tstorm.py:244: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy cells_id.y.iloc[n] = np.where(cells == cell_labels[n])[0] /home/runner/work/pysteps/pysteps/pysteps/feature/tstorm.py:249: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy cells_id.cont.iloc[n] = contours /home/runner/work/pysteps/pysteps/pysteps/feature/tstorm.py:250: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy cells_id.cen_x.iloc[n] = int(np.nanmean(cells_id.x[n])) # int(x[0]) /home/runner/work/pysteps/pysteps/pysteps/feature/tstorm.py:251: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy cells_id.cen_y.iloc[n] = int(np.nanmean(cells_id.y[n])) # int(y[0]) /home/runner/work/pysteps/pysteps/pysteps/feature/tstorm.py:252: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy cells_id.max_ref.iloc[n] = maxref /home/runner/work/pysteps/pysteps/pysteps/feature/tstorm.py:253: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy cells_id.area.iloc[n] = len(cells_id.x.iloc[n]) /home/runner/micromamba/envs/doc_builder/lib/python3.8/site-packages/pandas/core/internals/blocks.py:924: VisibleDeprecationWarning: Creating an ndarray from ragged nested sequences (which is a list-or-tuple of lists-or-tuples-or ndarrays with different lengths or shapes) is deprecated. If you meant to do this, you must specify 'dtype=object' when creating the ndarray. arr_value = np.asarray(value) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:209: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy cells_id_new.ID.iloc[ID] = new_ID /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:213: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy cells_id_new.ID.iloc[ID] = new_ID /home/runner/work/pysteps/pysteps/pysteps/feature/tstorm.py:151: FutureWarning: `selem` is a deprecated argument name for `h_maxima`. It will be removed in version 1.0.Please use `footprint` instead. maxima = skim.h_maxima(filt_image, h=mindiff, selem=struct) /home/runner/work/pysteps/pysteps/pysteps/feature/tstorm.py:242: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy cells_id.ID.iloc[n] = ID /home/runner/work/pysteps/pysteps/pysteps/feature/tstorm.py:243: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy cells_id.x.iloc[n] = np.where(cells == cell_labels[n])[1] /home/runner/work/pysteps/pysteps/pysteps/feature/tstorm.py:244: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy cells_id.y.iloc[n] = np.where(cells == cell_labels[n])[0] /home/runner/work/pysteps/pysteps/pysteps/feature/tstorm.py:249: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy cells_id.cont.iloc[n] = contours /home/runner/work/pysteps/pysteps/pysteps/feature/tstorm.py:250: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy cells_id.cen_x.iloc[n] = int(np.nanmean(cells_id.x[n])) # int(x[0]) /home/runner/work/pysteps/pysteps/pysteps/feature/tstorm.py:251: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy cells_id.cen_y.iloc[n] = int(np.nanmean(cells_id.y[n])) # int(y[0]) /home/runner/work/pysteps/pysteps/pysteps/feature/tstorm.py:252: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy cells_id.max_ref.iloc[n] = maxref /home/runner/work/pysteps/pysteps/pysteps/feature/tstorm.py:253: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy cells_id.area.iloc[n] = len(cells_id.x.iloc[n]) /home/runner/micromamba/envs/doc_builder/lib/python3.8/site-packages/pandas/core/internals/blocks.py:924: VisibleDeprecationWarning: Creating an ndarray from ragged nested sequences (which is a list-or-tuple of lists-or-tuples-or ndarrays with different lengths or shapes) is deprecated. If you meant to do this, you must specify 'dtype=object' when creating the ndarray. arr_value = np.asarray(value) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:209: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy cells_id_new.ID.iloc[ID] = new_ID /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:213: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy cells_id_new.ID.iloc[ID] = new_ID /home/runner/work/pysteps/pysteps/pysteps/feature/tstorm.py:151: FutureWarning: `selem` is a deprecated argument name for `h_maxima`. It will be removed in version 1.0.Please use `footprint` instead. maxima = skim.h_maxima(filt_image, h=mindiff, selem=struct) /home/runner/work/pysteps/pysteps/pysteps/feature/tstorm.py:242: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy cells_id.ID.iloc[n] = ID /home/runner/work/pysteps/pysteps/pysteps/feature/tstorm.py:243: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy cells_id.x.iloc[n] = np.where(cells == cell_labels[n])[1] /home/runner/work/pysteps/pysteps/pysteps/feature/tstorm.py:244: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy cells_id.y.iloc[n] = np.where(cells == cell_labels[n])[0] /home/runner/work/pysteps/pysteps/pysteps/feature/tstorm.py:249: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy cells_id.cont.iloc[n] = contours /home/runner/work/pysteps/pysteps/pysteps/feature/tstorm.py:250: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy cells_id.cen_x.iloc[n] = int(np.nanmean(cells_id.x[n])) # int(x[0]) /home/runner/work/pysteps/pysteps/pysteps/feature/tstorm.py:251: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy cells_id.cen_y.iloc[n] = int(np.nanmean(cells_id.y[n])) # int(y[0]) /home/runner/work/pysteps/pysteps/pysteps/feature/tstorm.py:252: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy cells_id.max_ref.iloc[n] = maxref /home/runner/work/pysteps/pysteps/pysteps/feature/tstorm.py:253: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy cells_id.area.iloc[n] = len(cells_id.x.iloc[n]) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:209: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy cells_id_new.ID.iloc[ID] = new_ID /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:213: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy cells_id_new.ID.iloc[ID] = new_ID /home/runner/work/pysteps/pysteps/pysteps/feature/tstorm.py:151: FutureWarning: `selem` is a deprecated argument name for `h_maxima`. It will be removed in version 1.0.Please use `footprint` instead. maxima = skim.h_maxima(filt_image, h=mindiff, selem=struct) /home/runner/work/pysteps/pysteps/pysteps/feature/tstorm.py:242: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy cells_id.ID.iloc[n] = ID /home/runner/work/pysteps/pysteps/pysteps/feature/tstorm.py:243: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy cells_id.x.iloc[n] = np.where(cells == cell_labels[n])[1] /home/runner/work/pysteps/pysteps/pysteps/feature/tstorm.py:244: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy cells_id.y.iloc[n] = np.where(cells == cell_labels[n])[0] /home/runner/work/pysteps/pysteps/pysteps/feature/tstorm.py:249: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy cells_id.cont.iloc[n] = contours /home/runner/work/pysteps/pysteps/pysteps/feature/tstorm.py:250: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy cells_id.cen_x.iloc[n] = int(np.nanmean(cells_id.x[n])) # int(x[0]) /home/runner/work/pysteps/pysteps/pysteps/feature/tstorm.py:251: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy cells_id.cen_y.iloc[n] = int(np.nanmean(cells_id.y[n])) # int(y[0]) /home/runner/work/pysteps/pysteps/pysteps/feature/tstorm.py:252: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy cells_id.max_ref.iloc[n] = maxref /home/runner/work/pysteps/pysteps/pysteps/feature/tstorm.py:253: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy cells_id.area.iloc[n] = len(cells_id.x.iloc[n]) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:209: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy cells_id_new.ID.iloc[ID] = new_ID /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:213: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy cells_id_new.ID.iloc[ID] = new_ID /home/runner/work/pysteps/pysteps/pysteps/feature/tstorm.py:151: FutureWarning: `selem` is a deprecated argument name for `h_maxima`. It will be removed in version 1.0.Please use `footprint` instead. maxima = skim.h_maxima(filt_image, h=mindiff, selem=struct) /home/runner/work/pysteps/pysteps/pysteps/feature/tstorm.py:242: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy cells_id.ID.iloc[n] = ID /home/runner/work/pysteps/pysteps/pysteps/feature/tstorm.py:243: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy cells_id.x.iloc[n] = np.where(cells == cell_labels[n])[1] /home/runner/work/pysteps/pysteps/pysteps/feature/tstorm.py:244: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy cells_id.y.iloc[n] = np.where(cells == cell_labels[n])[0] /home/runner/work/pysteps/pysteps/pysteps/feature/tstorm.py:249: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy cells_id.cont.iloc[n] = contours /home/runner/work/pysteps/pysteps/pysteps/feature/tstorm.py:250: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy cells_id.cen_x.iloc[n] = int(np.nanmean(cells_id.x[n])) # int(x[0]) /home/runner/work/pysteps/pysteps/pysteps/feature/tstorm.py:251: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy cells_id.cen_y.iloc[n] = int(np.nanmean(cells_id.y[n])) # int(y[0]) /home/runner/work/pysteps/pysteps/pysteps/feature/tstorm.py:252: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy cells_id.max_ref.iloc[n] = maxref /home/runner/work/pysteps/pysteps/pysteps/feature/tstorm.py:253: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy cells_id.area.iloc[n] = len(cells_id.x.iloc[n]) /home/runner/micromamba/envs/doc_builder/lib/python3.8/site-packages/pandas/core/internals/blocks.py:924: VisibleDeprecationWarning: Creating an ndarray from ragged nested sequences (which is a list-or-tuple of lists-or-tuples-or ndarrays with different lengths or shapes) is deprecated. If you meant to do this, you must specify 'dtype=object' when creating the ndarray. arr_value = np.asarray(value) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:209: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy cells_id_new.ID.iloc[ID] = new_ID /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:213: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy cells_id_new.ID.iloc[ID] = new_ID /home/runner/work/pysteps/pysteps/pysteps/feature/tstorm.py:151: FutureWarning: `selem` is a deprecated argument name for `h_maxima`. It will be removed in version 1.0.Please use `footprint` instead. maxima = skim.h_maxima(filt_image, h=mindiff, selem=struct) /home/runner/work/pysteps/pysteps/pysteps/feature/tstorm.py:242: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy cells_id.ID.iloc[n] = ID /home/runner/work/pysteps/pysteps/pysteps/feature/tstorm.py:243: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy cells_id.x.iloc[n] = np.where(cells == cell_labels[n])[1] /home/runner/work/pysteps/pysteps/pysteps/feature/tstorm.py:244: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy cells_id.y.iloc[n] = np.where(cells == cell_labels[n])[0] /home/runner/work/pysteps/pysteps/pysteps/feature/tstorm.py:249: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy cells_id.cont.iloc[n] = contours /home/runner/work/pysteps/pysteps/pysteps/feature/tstorm.py:250: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy cells_id.cen_x.iloc[n] = int(np.nanmean(cells_id.x[n])) # int(x[0]) /home/runner/work/pysteps/pysteps/pysteps/feature/tstorm.py:251: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy cells_id.cen_y.iloc[n] = int(np.nanmean(cells_id.y[n])) # int(y[0]) /home/runner/work/pysteps/pysteps/pysteps/feature/tstorm.py:252: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy cells_id.max_ref.iloc[n] = maxref /home/runner/work/pysteps/pysteps/pysteps/feature/tstorm.py:253: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy cells_id.area.iloc[n] = len(cells_id.x.iloc[n]) /home/runner/micromamba/envs/doc_builder/lib/python3.8/site-packages/pandas/core/internals/blocks.py:924: VisibleDeprecationWarning: Creating an ndarray from ragged nested sequences (which is a list-or-tuple of lists-or-tuples-or ndarrays with different lengths or shapes) is deprecated. If you meant to do this, you must specify 'dtype=object' when creating the ndarray. arr_value = np.asarray(value) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:209: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy cells_id_new.ID.iloc[ID] = new_ID /home/runner/work/pysteps/pysteps/pysteps/feature/tstorm.py:151: FutureWarning: `selem` is a deprecated argument name for `h_maxima`. It will be removed in version 1.0.Please use `footprint` instead. maxima = skim.h_maxima(filt_image, h=mindiff, selem=struct) /home/runner/work/pysteps/pysteps/pysteps/feature/tstorm.py:242: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy cells_id.ID.iloc[n] = ID /home/runner/work/pysteps/pysteps/pysteps/feature/tstorm.py:243: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy cells_id.x.iloc[n] = np.where(cells == cell_labels[n])[1] /home/runner/work/pysteps/pysteps/pysteps/feature/tstorm.py:244: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy cells_id.y.iloc[n] = np.where(cells == cell_labels[n])[0] /home/runner/work/pysteps/pysteps/pysteps/feature/tstorm.py:249: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy cells_id.cont.iloc[n] = contours /home/runner/work/pysteps/pysteps/pysteps/feature/tstorm.py:250: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy cells_id.cen_x.iloc[n] = int(np.nanmean(cells_id.x[n])) # int(x[0]) /home/runner/work/pysteps/pysteps/pysteps/feature/tstorm.py:251: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy cells_id.cen_y.iloc[n] = int(np.nanmean(cells_id.y[n])) # int(y[0]) /home/runner/work/pysteps/pysteps/pysteps/feature/tstorm.py:252: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy cells_id.max_ref.iloc[n] = maxref /home/runner/work/pysteps/pysteps/pysteps/feature/tstorm.py:253: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy cells_id.area.iloc[n] = len(cells_id.x.iloc[n]) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:209: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy cells_id_new.ID.iloc[ID] = new_ID /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:213: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy cells_id_new.ID.iloc[ID] = new_ID /home/runner/work/pysteps/pysteps/pysteps/feature/tstorm.py:151: FutureWarning: `selem` is a deprecated argument name for `h_maxima`. It will be removed in version 1.0.Please use `footprint` instead. maxima = skim.h_maxima(filt_image, h=mindiff, selem=struct) /home/runner/work/pysteps/pysteps/pysteps/feature/tstorm.py:242: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy cells_id.ID.iloc[n] = ID /home/runner/work/pysteps/pysteps/pysteps/feature/tstorm.py:243: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy cells_id.x.iloc[n] = np.where(cells == cell_labels[n])[1] /home/runner/work/pysteps/pysteps/pysteps/feature/tstorm.py:244: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy cells_id.y.iloc[n] = np.where(cells == cell_labels[n])[0] /home/runner/work/pysteps/pysteps/pysteps/feature/tstorm.py:249: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy cells_id.cont.iloc[n] = contours /home/runner/work/pysteps/pysteps/pysteps/feature/tstorm.py:250: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy cells_id.cen_x.iloc[n] = int(np.nanmean(cells_id.x[n])) # int(x[0]) /home/runner/work/pysteps/pysteps/pysteps/feature/tstorm.py:251: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy cells_id.cen_y.iloc[n] = int(np.nanmean(cells_id.y[n])) # int(y[0]) /home/runner/work/pysteps/pysteps/pysteps/feature/tstorm.py:252: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy cells_id.max_ref.iloc[n] = maxref /home/runner/work/pysteps/pysteps/pysteps/feature/tstorm.py:253: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy cells_id.area.iloc[n] = len(cells_id.x.iloc[n]) /home/runner/micromamba/envs/doc_builder/lib/python3.8/site-packages/pandas/core/internals/blocks.py:924: VisibleDeprecationWarning: Creating an ndarray from ragged nested sequences (which is a list-or-tuple of lists-or-tuples-or ndarrays with different lengths or shapes) is deprecated. If you meant to do this, you must specify 'dtype=object' when creating the ndarray. arr_value = np.asarray(value) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:213: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy cells_id_new.ID.iloc[ID] = new_ID /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:209: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy cells_id_new.ID.iloc[ID] = new_ID /home/runner/work/pysteps/pysteps/pysteps/feature/tstorm.py:151: FutureWarning: `selem` is a deprecated argument name for `h_maxima`. It will be removed in version 1.0.Please use `footprint` instead. maxima = skim.h_maxima(filt_image, h=mindiff, selem=struct) /home/runner/work/pysteps/pysteps/pysteps/feature/tstorm.py:242: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy cells_id.ID.iloc[n] = ID /home/runner/work/pysteps/pysteps/pysteps/feature/tstorm.py:243: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy cells_id.x.iloc[n] = np.where(cells == cell_labels[n])[1] /home/runner/work/pysteps/pysteps/pysteps/feature/tstorm.py:244: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy cells_id.y.iloc[n] = np.where(cells == cell_labels[n])[0] /home/runner/work/pysteps/pysteps/pysteps/feature/tstorm.py:249: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy cells_id.cont.iloc[n] = contours /home/runner/work/pysteps/pysteps/pysteps/feature/tstorm.py:250: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy cells_id.cen_x.iloc[n] = int(np.nanmean(cells_id.x[n])) # int(x[0]) /home/runner/work/pysteps/pysteps/pysteps/feature/tstorm.py:251: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy cells_id.cen_y.iloc[n] = int(np.nanmean(cells_id.y[n])) # int(y[0]) /home/runner/work/pysteps/pysteps/pysteps/feature/tstorm.py:252: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy cells_id.max_ref.iloc[n] = maxref /home/runner/work/pysteps/pysteps/pysteps/feature/tstorm.py:253: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy cells_id.area.iloc[n] = len(cells_id.x.iloc[n]) /home/runner/micromamba/envs/doc_builder/lib/python3.8/site-packages/pandas/core/internals/blocks.py:924: VisibleDeprecationWarning: Creating an ndarray from ragged nested sequences (which is a list-or-tuple of lists-or-tuples-or ndarrays with different lengths or shapes) is deprecated. If you meant to do this, you must specify 'dtype=object' when creating the ndarray. arr_value = np.asarray(value) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:209: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy cells_id_new.ID.iloc[ID] = new_ID /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:213: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy cells_id_new.ID.iloc[ID] = new_ID /home/runner/work/pysteps/pysteps/pysteps/feature/tstorm.py:151: FutureWarning: `selem` is a deprecated argument name for `h_maxima`. It will be removed in version 1.0.Please use `footprint` instead. maxima = skim.h_maxima(filt_image, h=mindiff, selem=struct) /home/runner/work/pysteps/pysteps/pysteps/feature/tstorm.py:242: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy cells_id.ID.iloc[n] = ID /home/runner/work/pysteps/pysteps/pysteps/feature/tstorm.py:243: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy cells_id.x.iloc[n] = np.where(cells == cell_labels[n])[1] /home/runner/work/pysteps/pysteps/pysteps/feature/tstorm.py:244: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy cells_id.y.iloc[n] = np.where(cells == cell_labels[n])[0] /home/runner/work/pysteps/pysteps/pysteps/feature/tstorm.py:249: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy cells_id.cont.iloc[n] = contours /home/runner/work/pysteps/pysteps/pysteps/feature/tstorm.py:250: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy cells_id.cen_x.iloc[n] = int(np.nanmean(cells_id.x[n])) # int(x[0]) /home/runner/work/pysteps/pysteps/pysteps/feature/tstorm.py:251: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy cells_id.cen_y.iloc[n] = int(np.nanmean(cells_id.y[n])) # int(y[0]) /home/runner/work/pysteps/pysteps/pysteps/feature/tstorm.py:252: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy cells_id.max_ref.iloc[n] = maxref /home/runner/work/pysteps/pysteps/pysteps/feature/tstorm.py:253: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy cells_id.area.iloc[n] = len(cells_id.x.iloc[n]) /home/runner/micromamba/envs/doc_builder/lib/python3.8/site-packages/pandas/core/internals/blocks.py:924: VisibleDeprecationWarning: Creating an ndarray from ragged nested sequences (which is a list-or-tuple of lists-or-tuples-or ndarrays with different lengths or shapes) is deprecated. If you meant to do this, you must specify 'dtype=object' when creating the ndarray. arr_value = np.asarray(value) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:209: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy cells_id_new.ID.iloc[ID] = new_ID /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:213: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy cells_id_new.ID.iloc[ID] = new_ID /home/runner/work/pysteps/pysteps/pysteps/feature/tstorm.py:151: FutureWarning: `selem` is a deprecated argument name for `h_maxima`. It will be removed in version 1.0.Please use `footprint` instead. maxima = skim.h_maxima(filt_image, h=mindiff, selem=struct) /home/runner/work/pysteps/pysteps/pysteps/feature/tstorm.py:242: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy cells_id.ID.iloc[n] = ID /home/runner/work/pysteps/pysteps/pysteps/feature/tstorm.py:243: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy cells_id.x.iloc[n] = np.where(cells == cell_labels[n])[1] /home/runner/work/pysteps/pysteps/pysteps/feature/tstorm.py:244: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy cells_id.y.iloc[n] = np.where(cells == cell_labels[n])[0] /home/runner/work/pysteps/pysteps/pysteps/feature/tstorm.py:249: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy cells_id.cont.iloc[n] = contours /home/runner/work/pysteps/pysteps/pysteps/feature/tstorm.py:250: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy cells_id.cen_x.iloc[n] = int(np.nanmean(cells_id.x[n])) # int(x[0]) /home/runner/work/pysteps/pysteps/pysteps/feature/tstorm.py:251: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy cells_id.cen_y.iloc[n] = int(np.nanmean(cells_id.y[n])) # int(y[0]) /home/runner/work/pysteps/pysteps/pysteps/feature/tstorm.py:252: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy cells_id.max_ref.iloc[n] = maxref /home/runner/work/pysteps/pysteps/pysteps/feature/tstorm.py:253: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy cells_id.area.iloc[n] = len(cells_id.x.iloc[n]) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:209: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy cells_id_new.ID.iloc[ID] = new_ID /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:213: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy cells_id_new.ID.iloc[ID] = new_ID /home/runner/work/pysteps/pysteps/pysteps/feature/tstorm.py:151: FutureWarning: `selem` is a deprecated argument name for `h_maxima`. It will be removed in version 1.0.Please use `footprint` instead. maxima = skim.h_maxima(filt_image, h=mindiff, selem=struct) /home/runner/work/pysteps/pysteps/pysteps/feature/tstorm.py:242: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy cells_id.ID.iloc[n] = ID /home/runner/work/pysteps/pysteps/pysteps/feature/tstorm.py:243: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy cells_id.x.iloc[n] = np.where(cells == cell_labels[n])[1] /home/runner/work/pysteps/pysteps/pysteps/feature/tstorm.py:244: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy cells_id.y.iloc[n] = np.where(cells == cell_labels[n])[0] /home/runner/work/pysteps/pysteps/pysteps/feature/tstorm.py:249: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy cells_id.cont.iloc[n] = contours /home/runner/work/pysteps/pysteps/pysteps/feature/tstorm.py:250: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy cells_id.cen_x.iloc[n] = int(np.nanmean(cells_id.x[n])) # int(x[0]) /home/runner/work/pysteps/pysteps/pysteps/feature/tstorm.py:251: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy cells_id.cen_y.iloc[n] = int(np.nanmean(cells_id.y[n])) # int(y[0]) /home/runner/work/pysteps/pysteps/pysteps/feature/tstorm.py:252: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy cells_id.max_ref.iloc[n] = maxref /home/runner/work/pysteps/pysteps/pysteps/feature/tstorm.py:253: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy cells_id.area.iloc[n] = len(cells_id.x.iloc[n]) /home/runner/micromamba/envs/doc_builder/lib/python3.8/site-packages/pandas/core/internals/blocks.py:924: VisibleDeprecationWarning: Creating an ndarray from ragged nested sequences (which is a list-or-tuple of lists-or-tuples-or ndarrays with different lengths or shapes) is deprecated. If you meant to do this, you must specify 'dtype=object' when creating the ndarray. arr_value = np.asarray(value) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:209: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy cells_id_new.ID.iloc[ID] = new_ID /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:213: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy cells_id_new.ID.iloc[ID] = new_ID /home/runner/work/pysteps/pysteps/pysteps/feature/tstorm.py:151: FutureWarning: `selem` is a deprecated argument name for `h_maxima`. It will be removed in version 1.0.Please use `footprint` instead. maxima = skim.h_maxima(filt_image, h=mindiff, selem=struct) /home/runner/work/pysteps/pysteps/pysteps/feature/tstorm.py:242: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy cells_id.ID.iloc[n] = ID /home/runner/work/pysteps/pysteps/pysteps/feature/tstorm.py:243: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy cells_id.x.iloc[n] = np.where(cells == cell_labels[n])[1] /home/runner/work/pysteps/pysteps/pysteps/feature/tstorm.py:244: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy cells_id.y.iloc[n] = np.where(cells == cell_labels[n])[0] /home/runner/work/pysteps/pysteps/pysteps/feature/tstorm.py:249: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy cells_id.cont.iloc[n] = contours /home/runner/work/pysteps/pysteps/pysteps/feature/tstorm.py:250: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy cells_id.cen_x.iloc[n] = int(np.nanmean(cells_id.x[n])) # int(x[0]) /home/runner/work/pysteps/pysteps/pysteps/feature/tstorm.py:251: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy cells_id.cen_y.iloc[n] = int(np.nanmean(cells_id.y[n])) # int(y[0]) /home/runner/work/pysteps/pysteps/pysteps/feature/tstorm.py:252: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy cells_id.max_ref.iloc[n] = maxref /home/runner/work/pysteps/pysteps/pysteps/feature/tstorm.py:253: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy cells_id.area.iloc[n] = len(cells_id.x.iloc[n]) /home/runner/micromamba/envs/doc_builder/lib/python3.8/site-packages/pandas/core/internals/blocks.py:924: VisibleDeprecationWarning: Creating an ndarray from ragged nested sequences (which is a list-or-tuple of lists-or-tuples-or ndarrays with different lengths or shapes) is deprecated. If you meant to do this, you must specify 'dtype=object' when creating the ndarray. arr_value = np.asarray(value) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:209: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy cells_id_new.ID.iloc[ID] = new_ID /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:213: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy cells_id_new.ID.iloc[ID] = new_ID /home/runner/work/pysteps/pysteps/pysteps/feature/tstorm.py:151: FutureWarning: `selem` is a deprecated argument name for `h_maxima`. It will be removed in version 1.0.Please use `footprint` instead. maxima = skim.h_maxima(filt_image, h=mindiff, selem=struct) /home/runner/work/pysteps/pysteps/pysteps/feature/tstorm.py:242: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy cells_id.ID.iloc[n] = ID /home/runner/work/pysteps/pysteps/pysteps/feature/tstorm.py:243: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy cells_id.x.iloc[n] = np.where(cells == cell_labels[n])[1] /home/runner/work/pysteps/pysteps/pysteps/feature/tstorm.py:244: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy cells_id.y.iloc[n] = np.where(cells == cell_labels[n])[0] /home/runner/work/pysteps/pysteps/pysteps/feature/tstorm.py:249: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy cells_id.cont.iloc[n] = contours /home/runner/work/pysteps/pysteps/pysteps/feature/tstorm.py:250: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy cells_id.cen_x.iloc[n] = int(np.nanmean(cells_id.x[n])) # int(x[0]) /home/runner/work/pysteps/pysteps/pysteps/feature/tstorm.py:251: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy cells_id.cen_y.iloc[n] = int(np.nanmean(cells_id.y[n])) # int(y[0]) /home/runner/work/pysteps/pysteps/pysteps/feature/tstorm.py:252: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy cells_id.max_ref.iloc[n] = maxref /home/runner/work/pysteps/pysteps/pysteps/feature/tstorm.py:253: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy cells_id.area.iloc[n] = len(cells_id.x.iloc[n]) /home/runner/micromamba/envs/doc_builder/lib/python3.8/site-packages/pandas/core/internals/blocks.py:924: VisibleDeprecationWarning: Creating an ndarray from ragged nested sequences (which is a list-or-tuple of lists-or-tuples-or ndarrays with different lengths or shapes) is deprecated. If you meant to do this, you must specify 'dtype=object' when creating the ndarray. arr_value = np.asarray(value) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:209: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy cells_id_new.ID.iloc[ID] = new_ID /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:213: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy cells_id_new.ID.iloc[ID] = new_ID /home/runner/work/pysteps/pysteps/pysteps/feature/tstorm.py:151: FutureWarning: `selem` is a deprecated argument name for `h_maxima`. It will be removed in version 1.0.Please use `footprint` instead. maxima = skim.h_maxima(filt_image, h=mindiff, selem=struct) /home/runner/work/pysteps/pysteps/pysteps/feature/tstorm.py:242: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy cells_id.ID.iloc[n] = ID /home/runner/work/pysteps/pysteps/pysteps/feature/tstorm.py:243: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy cells_id.x.iloc[n] = np.where(cells == cell_labels[n])[1] /home/runner/work/pysteps/pysteps/pysteps/feature/tstorm.py:244: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy cells_id.y.iloc[n] = np.where(cells == cell_labels[n])[0] /home/runner/work/pysteps/pysteps/pysteps/feature/tstorm.py:249: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy cells_id.cont.iloc[n] = contours /home/runner/work/pysteps/pysteps/pysteps/feature/tstorm.py:250: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy cells_id.cen_x.iloc[n] = int(np.nanmean(cells_id.x[n])) # int(x[0]) /home/runner/work/pysteps/pysteps/pysteps/feature/tstorm.py:251: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy cells_id.cen_y.iloc[n] = int(np.nanmean(cells_id.y[n])) # int(y[0]) /home/runner/work/pysteps/pysteps/pysteps/feature/tstorm.py:252: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy cells_id.max_ref.iloc[n] = maxref /home/runner/work/pysteps/pysteps/pysteps/feature/tstorm.py:253: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy cells_id.area.iloc[n] = len(cells_id.x.iloc[n]) /home/runner/micromamba/envs/doc_builder/lib/python3.8/site-packages/pandas/core/internals/blocks.py:924: VisibleDeprecationWarning: Creating an ndarray from ragged nested sequences (which is a list-or-tuple of lists-or-tuples-or ndarrays with different lengths or shapes) is deprecated. If you meant to do this, you must specify 'dtype=object' when creating the ndarray. arr_value = np.asarray(value) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:209: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy cells_id_new.ID.iloc[ID] = new_ID /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:213: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy cells_id_new.ID.iloc[ID] = new_ID /home/runner/work/pysteps/pysteps/pysteps/feature/tstorm.py:151: FutureWarning: `selem` is a deprecated argument name for `h_maxima`. It will be removed in version 1.0.Please use `footprint` instead. maxima = skim.h_maxima(filt_image, h=mindiff, selem=struct) /home/runner/work/pysteps/pysteps/pysteps/feature/tstorm.py:242: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy cells_id.ID.iloc[n] = ID /home/runner/work/pysteps/pysteps/pysteps/feature/tstorm.py:243: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy cells_id.x.iloc[n] = np.where(cells == cell_labels[n])[1] /home/runner/work/pysteps/pysteps/pysteps/feature/tstorm.py:244: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy cells_id.y.iloc[n] = np.where(cells == cell_labels[n])[0] /home/runner/work/pysteps/pysteps/pysteps/feature/tstorm.py:249: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy cells_id.cont.iloc[n] = contours /home/runner/work/pysteps/pysteps/pysteps/feature/tstorm.py:250: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy cells_id.cen_x.iloc[n] = int(np.nanmean(cells_id.x[n])) # int(x[0]) /home/runner/work/pysteps/pysteps/pysteps/feature/tstorm.py:251: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy cells_id.cen_y.iloc[n] = int(np.nanmean(cells_id.y[n])) # int(y[0]) /home/runner/work/pysteps/pysteps/pysteps/feature/tstorm.py:252: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy cells_id.max_ref.iloc[n] = maxref /home/runner/work/pysteps/pysteps/pysteps/feature/tstorm.py:253: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy cells_id.area.iloc[n] = len(cells_id.x.iloc[n]) /home/runner/micromamba/envs/doc_builder/lib/python3.8/site-packages/pandas/core/internals/blocks.py:924: VisibleDeprecationWarning: Creating an ndarray from ragged nested sequences (which is a list-or-tuple of lists-or-tuples-or ndarrays with different lengths or shapes) is deprecated. If you meant to do this, you must specify 'dtype=object' when creating the ndarray. arr_value = np.asarray(value) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:209: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy cells_id_new.ID.iloc[ID] = new_ID /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:213: SettingWithCopyWarning: A value is trying to be set on a copy of a slice from a DataFrame See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy cells_id_new.ID.iloc[ID] = new_ID /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) /home/runner/work/pysteps/pysteps/pysteps/tracking/tdating.py:309: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead. cell_track = cell_track.append(mycell) .. GENERATED FROM PYTHON SOURCE LINES 104-106 Plotting the results ~~~~~~~~~~~~~~~~~~~~ .. GENERATED FROM PYTHON SOURCE LINES 106-126 .. code-block:: default # Plot precipitation field plot_precip_field(Z[2, :, :], geodata=metadata, units=metadata["unit"]) plt.xlabel("Swiss easting [m]") plt.ylabel("Swiss northing [m]") # Add the identified cells plot_cart_contour(cells_id.cont, geodata=metadata) # Filter the tracks to only contain cells existing in this timestep IDs = cells_id.ID.values track_filt = [] for track in track_list: if np.unique(track.ID) in IDs: track_filt.append(track) # Add their tracks plot_track(track_filt, geodata=metadata) plt.show() .. image-sg:: /auto_examples/images/sphx_glr_thunderstorm_detection_and_tracking_001.png :alt: thunderstorm detection and tracking :srcset: /auto_examples/images/sphx_glr_thunderstorm_detection_and_tracking_001.png :class: sphx-glr-single-img .. GENERATED FROM PYTHON SOURCE LINES 127-130 Evaluating temporal behaviour of cell ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Maximum reflectivity of cells in time .. GENERATED FROM PYTHON SOURCE LINES 130-146 .. code-block:: default # Make an empty list tlen = [] # Get a list of colors that we will use for the plot color = iter(plt.cm.ocean(np.linspace(0, 0.8, len(track_filt)))) # Now, loop through all the tracks and plot the maximum reflectivity of the cell # in time. for track in track_filt: plt.plot(np.arange(len(track)), track.max_ref, c=next(color)) tlen.append(len(track)) plt.xticks(np.arange(max(tlen) + 1), labels=np.arange(max(tlen) + 1) * 5) plt.ylabel("Maximum reflectivity (dBZ)") plt.xlabel("Time since cell detection (min)") plt.legend(IDs, loc="lower right", ncol=3, title="Track number") plt.show() .. image-sg:: /auto_examples/images/sphx_glr_thunderstorm_detection_and_tracking_002.png :alt: thunderstorm detection and tracking :srcset: /auto_examples/images/sphx_glr_thunderstorm_detection_and_tracking_002.png :class: sphx-glr-single-img .. GENERATED FROM PYTHON SOURCE LINES 147-148 The size of the thunderstorm cells in time .. GENERATED FROM PYTHON SOURCE LINES 148-166 .. code-block:: default # Make an empty list tlen = [] # Get a list of colors that we will use for the plot color = iter(plt.cm.ocean(np.linspace(0, 0.8, len(track_filt)))) # Now, loop through all the tracks and plot the cell size of the thunderstorms # in time. for track in track_filt: size = [] for ID, t in track.iterrows(): size.append(len(t.x)) plt.plot(np.arange(len(track)), size, c=next(color)) tlen.append(len(track)) plt.xticks(np.arange(max(tlen) + 1), labels=np.arange(max(tlen) + 1) * 5) plt.ylabel("Thunderstorm cell size (pixels)") plt.xlabel("Time since cell detection (min)") plt.legend(IDs, loc="upper left", ncol=3, title="Track number") plt.show() .. image-sg:: /auto_examples/images/sphx_glr_thunderstorm_detection_and_tracking_003.png :alt: thunderstorm detection and tracking :srcset: /auto_examples/images/sphx_glr_thunderstorm_detection_and_tracking_003.png :class: sphx-glr-single-img .. rst-class:: sphx-glr-timing **Total running time of the script:** ( 1 minutes 14.083 seconds) .. _sphx_glr_download_auto_examples_thunderstorm_detection_and_tracking.py: .. only :: html .. container:: sphx-glr-footer :class: sphx-glr-footer-example .. container:: sphx-glr-download sphx-glr-download-python :download:`Download Python source code: thunderstorm_detection_and_tracking.py ` .. container:: sphx-glr-download sphx-glr-download-jupyter :download:`Download Jupyter notebook: thunderstorm_detection_and_tracking.ipynb ` .. only:: html .. rst-class:: sphx-glr-signature `Gallery generated by Sphinx-Gallery `_