xoolive/traffic

OpenAP.phases method in openap.py fails

Closed this issue · 3 comments

Fresh install of the Traffic library v. 2.10.2 in a separate conda environment (from conda-forge).
Contains:
Python 3.12.7, numpy 1.26.4, pandas 2.2.3, openap 2.0

Relevant part of the stack trace:

sub_segm_to_test_phases.phases(3) 
    ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/home/iavrekh/anaconda3/envs/traffic/lib/python3.12/site-packages/traffic/algorithms/openap.py", line 28, in phases
    
  File "/home/iavrekh/anaconda3/envs/traffic/lib/python3.12/site-packages/pandas/core/ops/common.py", line 76, in new_method
    return method(self, other)
           ^^^^^^^^^^^^^^^^^^^
  File "/home/iavrekh/anaconda3/envs/traffic/lib/python3.12/site-packages/pandas/core/arraylike.py", line 194, in __sub__
    return self._arith_method(other, operator.sub)
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/home/iavrekh/anaconda3/envs/traffic/lib/python3.12/site-packages/pandas/core/arrays/arrow/array.py", line 787, in _arith_method
    return self._evaluate_op_method(other, op, ARROW_ARITHMETIC_FUNCS)
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/home/iavrekh/anaconda3/envs/traffic/lib/python3.12/site-packages/pandas/core/arrays/arrow/array.py", line 729, in _evaluate_op_method
    other = self._box_pa(other)
            ^^^^^^^^^^^^^^^^^^^
  File "/home/iavrekh/anaconda3/envs/traffic/lib/python3.12/site-packages/pandas/core/arrays/arrow/array.py", line 404, in _box_pa
    return cls._box_pa_scalar(value, pa_type)
           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/home/iavrekh/anaconda3/envs/traffic/lib/python3.12/site-packages/pandas/core/arrays/arrow/array.py", line 440, in _box_pa_scalar
    pa_scalar = pa.scalar(value, type=pa_type, from_pandas=True)
                ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "pyarrow/scalar.pxi", line 1212, in pyarrow.lib.scalar
  File "pyarrow/error.pxi", line 155, in pyarrow.lib.pyarrow_internal_check_status
  File "pyarrow/error.pxi", line 89, in pyarrow.lib.check_status
TypeError: int() argument must be a string, a bytes-like object or a real number, not 'datetime.date'

Works when "np.datetime64("1970-01-01")" in this statement

        fp.set_trajectory(
            (self.data.timestamp.values - np.datetime64("1970-01-01"))
            / np.timedelta64(1, "s"),
            altitude,
            groundspeed,
            vertical_rate,
        )

replaced with "datetime.datetime(1970,1,1,tzinfo=timezone.utc)",
but I'm not sure what the root cause is.

Could you please provide the code for a failing example please?

Please add this line:
first_flight.phases(3)

at the end of the SplitTestA.py program from the "Split" archive attached to my comment for issue #466 .

Let me close the issue, let's confirm in #468 that everything works
When confirmed, I will merge into master