top of page
태풍 움짤.gif

Result

Overview:

We evaluate the forecasting accuracy of each case by comparing the predicted typhoon tracks against the true MAYSAK (2020) track using RMSE (km).

Modeling Results

Case A

Linear Extrapolation

Case B

LSTM based Imputation

[결측치 40] 선형보간.png
[결측치 60] LSTM.png

a. Trajectory prediction with 40% Missing Value

c. Trajectory prediction with 40% Missing Value

[결측치 60] 선형보간.png
[결측치 40] LSTM.png

b. Trajectory prediction with 60% Missing Value

d. Trajectory prediction with 60% Missing Value

Legend Explanation

Full Actual Path

1.jpg.jpg

: The projection of the raw, ground-truth data representing the actual track of Typhoon Maysak.

Full Actual Path

Input Data

스크린샷 2026-05-12 오후 4.38.49.png
2.jpg

: The observed data points intentionally retained for the model, excluding the sections designated as missing (gaps).

Full Actual Path

Full Actual Path

Full Actual Path

Full Actual Path

Full Actual Path

Background

3.jpg

: An artificially generated background field created by applying intentional error values (perturbations) to the missing data segments.

Full Actual Path

Full Actual Path

Full Actual Path

Full Actual Path

Full Actual Path

Prediction

4.jpg

: The reconstructed path generated by filling the data gaps using linear extrapolation or LSTM deep learning models.

Full Actual Path

Full Actual Path

Full Actual Path

Full Actual Path

Full Actual Path

Final EnFK Result

5.jpg

: The optimized typhoon track prediction achieved by performing an Ensemble Kalman Filter (EnKF) data assimilation on the background field and the interpolated observations.

 Quantitative Evaluation (RMSE)

Pink Poppy Flowers

Case A (Linear Extrapolation) RMSE

Pink Poppy Flowers

Case B (LSTM) RMSE

Interpretation of RMSE result

Case A — Linear Extrapolation

At 40% missing data, the linear model performed efficiently (Total Track Error: 0.9819). However, when the gap increased to 60%, the Lat RMSE surged from 1.1774 to 9.714 — revealing its inability to capture nonlinear typhoon dynamics. EnKF reduced the error by 27.10%, but the final Total Track Error remained high at 7.7215. This confirms that when input observations are severely distorted, EnKF correction alone cannot overcome the physical limitations of linear extrapolation.

Case B — LSTM-based Imputation

The LSTM model maintained stable performance even at 60% missing data, achieving a Lat RMSE of 0.928 after EnKF — 7.5 times more accurate than the linear model (7.042). The Total Track Error was 3.7694, less than half of Case A. This demonstrates that the LSTM learns temporal patterns from historical data and reconstructs physically plausible trajectories, further refined by EnKF's dynamic correction.

Overall Comparison

The optimal strategy depends on data availability. With low data loss (40%), linear extrapolation is sufficient. With severe data loss (60%), the LSTM + EnKF hybrid is far superior — combining learned temporal patterns with physics-based state estimation for reliable track reconstruction.

Total Track Error Comparison.png
Latitude RMSE — Before vs After EnKF.png
EnKF Path Accuracy Improvement Rate (%).png

Combining "learned temporal pattern information" with a "physics-based state estimation system" enables reliable typhoon track reconstruction even in extremely data-sparse environments. The LSTM + EnKF hybrid provides significantly greater robustness and stability than conventional interpolation-based methods. 

 Overall Conclusion of the Study

Linear extrapolation

LSTM-based imputation

Relies on simple geometric calculations, unable to account for physical factors like inertia or atmospheric pressure.

Learns temporal patterns from historical typhoon data, capturing non-linear dynamics in trajectory prediction.

Strength

Computationally efficient; performs well at low missing-data ratios where the trajectory remains relatively linear (40% gap → Total Track Error 0.98)

Strength

Captures general climatological tendency and non-linear recurvature patterns; remains stable under severe data loss (60% gap → Total Track Error 3.77, less than half of Case A)

Limitation

Cannot capture non-linear dynamics; highly sensitive to gap location at inflection points; error surges dramatically as missing-data ratio increases (60% gap → Total Track Error 7.72)

Limitation

Biased toward average track patterns from training data; reproduces common northeastward paths without distinguishing individual synoptic conditions; fails to capture nonlinearity during dissipation stage

💡 Key Insight

The optimal modeling strategy depends strongly on the level of data availability. At relatively low missing-data conditions (40%), the linear-based EnKF model outperforms LSTM, suggesting that a simple linear approach can efficiently capture local movement characteristics without requiring a complex learning model. However, when the missing-data ratio increases to 60%, the performance trend reverses completely — the LSTM + EnKF hybrid achieves the best overall performance by maintaining low spatial errors even under severe data-loss conditions. This demonstrates that combining "learned temporal pattern information" with a "physics-based state estimation system" enables reliable typhoon track reconstruction even in extremely data-sparse environments.

 Limitations

🔒

Fixed Bias in Background Field Generation

The current implementation generates the background field by adding a fixed constant (intentional_bias) to the ground truth, effectively resulting in a simple parallel shift: raw_background = raw_true_val + intentional_bias. However, in real-world Numerical Weather Prediction (NWP) models, errors accumulate over time, often causing the predicted path’s shape to diverge from the actual trajectory. This fixed-bias approach lacks the dynamic, time-dependent error growth seen in operational forecasting, which may oversimplify the correction task for the filter.

1.png

About Condition Setting

📊

Confidence Weighting in EnKF

The EnKF’s reliability is governed by the relative variance of its inputs. Currently, the observation error (LSTM), R_std, is set to 0.03, while the background error, Q_std, is 0.05. This configuration results in a Kalman Gain (K ≈ 0.73) that forces the filter to trust LSTM predictions approximately three times more than the background field. While this prioritizes the deep learning model, it creates a high dependency on LSTM performance. If the LSTM produces a biased or outlier prediction, the filter lacks the corrective “anchor” from the background field to mitigate the error, potentially leading to over-fitted or unstable results.

2.png

🌪️

Missing Environmental Steering Flow

Tropical cyclones do not move independently; their tracks are strongly influenced by surrounding atmospheric flows such as the subtropical high, mid-latitude westerlies, and upper-level jet streams. However, the LSTM model in this study was trained only with storm-centered variables, including latitude, longitude, central pressure, wind radius, velocity components, and translation speed. As a result, the model could learn the past motion and internal characteristics of the typhoon, but it could not recognize the external atmospheric forces that cause recurvature or acceleration during the decaying stage. Therefore, when the typhoon approached the missing-data point, the model tended to extend the previous motion linearly toward the northeast rather than dynamically responding to changes in the surrounding pressure and wind fields.

3.png

About Model

🔄

Autoregressive Error Accumulation

A key limitation of this experiment is that the model uses an autoregressive rolling-window structure, where each LSTM prediction is repeatedly fed back into the next input sequence. Since the EnKF-corrected value was not used as the next input, small errors in the LSTM prediction were carried forward and gradually amplified over time. As a result, once the predicted track began to deviate toward the northeast, the following predictions continued in the same direction, causing the model to follow an inertial straight path rather than fully capturing the recurvature during the typhoon’s dissipation stage.

4.png
bottom of page