Pangu-Weather icon indicating copy to clipboard operation
Pangu-Weather copied to clipboard

Tropical cyclone tracking

Open cnagda opened this issue 1 year ago • 2 comments

Will code or pseudocode be added for the tropical cyclone tracking algorithm given in the paper? If not, would the authors mind sharing how thickness and relative vorticity can be computed from the output maps, and how radius can be checked?

cnagda avatar Nov 07 '23 23:11 cnagda

Hi, the thickness and vorticity can be calculated by calling the Python library metpy. You can refer to the calc and units parts in metpy.

For radius, you can import distance from the geopy library which allows you to compute the distance between two positions in the Earth's surface. When a radius R (445km or 278km in the paper) is set, you can manually check all positions with a distance smaller than R.

198808xc avatar Nov 12 '23 03:11 198808xc

So the algorithm is not going to be public?

dhruvyadav89300 avatar Jul 04 '24 06:07 dhruvyadav89300