Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
tropo_pyaps3.get_snwe()
: return native int
instead of `numpy.int6…
…4` (#1324) + In the `get_snwe` function within `tropo_pyaps3.py`, the original `return (S, N, W, E)` was returning S, N, W, and E as NumPy's `np.int64` type, while the expected type was standard Python's int. Therefore, I modified the return statement to `return (int(S), int(N), int(W), int(E))`, which successfully fixed the problem. + Remove unnecessary formatting --------- Co-authored-by: Zhang Yunjun <[email protected]>
- Loading branch information