Historical Typhoon Data Download for Taiwan

The cover image is a downloaded typhoon satellite image. It is a satellite water vapor cloud image produced by the Central Weather Administration (CWA) using CCU/SSL. The image was captured at 07:10 on July 11, 2026, and was obtained from the Weather Image Archive of the Department of Atmospheric Sciences at Chinese Culture University (Atmospheric Science Research and Application Databank).
This is a small program that was originally written to download typhoon satellite images and related data. Its initial purpose was to collect image data for image recognition research. Since the program was developed at an earlier stage, it still contains several relatively immature implementation approaches. Therefore, this article serves only as a record and reference for the data download process, and does not provide an in-depth discussion of the program architecture or optimization methods. The programming language used in this project is Python.
Data Sources
Before downloading the data, it is necessary to clearly define the data sources and download objectives. The goal of this project is to collect satellite images covering the Taiwan region and classify the images into two categories, “with typhoon” and “without typhoon,” based on whether a typhoon affected the region. This classification facilitates subsequent model training by allowing the model to distinguish between different data categories.
Based on these requirements, the Atmospheric Science Research and Application Databank was selected as the primary source for satellite images, while the Typhoon Database was used to obtain typhoon-related information.
Atmospheric Science Research and Application Databank
The Atmospheric Science Research and Application Databank (ASRAD) is currently maintained by the Department of Atmospheric Sciences at Chinese Culture University. It provides a wide range of atmospheric observation and satellite-related datasets. According to its website, the development history of this database is described as follows.
In 1987, the National Science Council established the “Subtropical Data Center” at the Department of Atmospheric Sciences, National Taiwan University, initiating the collection and service of atmospheric research data. Since 2011, the operation was taken over by the National Applied Research Laboratories’ National Science and Technology Center for Disaster Reduction, and the database was expanded into the “Atmospheric and Hydrological Research Database.” In 2018, the database was transferred to the Department of Atmospheric Sciences at Chinese Culture University. In 2022, it was merged with the “Space Science Research Database” and renamed the “Atmospheric Science Research and Application Databank.” In September 2023, it was officially incorporated into the core facilities of the National Science and Technology Council. In addition to expanding its services and research fields, the database integrates multiple atmospheric observation experiments, continuously preserving and providing atmospheric research data to support atmospheric science research and applications both domestically and internationally.
This database provides various types of meteorological and remote sensing data, including satellite cloud images, water vapor cloud images, visible and infrared satellite imagery, radar reflectivity images, surface meteorological observations, radiosonde data, numerical weather analysis charts, and typhoon-related products. It is suitable for applications such as weather analysis, typhoon research, climate studies, image recognition, and atmospheric science education. For researchers who need to construct meteorological image datasets or perform long-term time-series analysis, it serves as a convenient and comprehensive data source.

Typhoon Database
The Typhoon Database is established and maintained by the Central Weather Administration (CWA). It integrates historical observation and analysis data related to typhoons in the western North Pacific and provides researchers, government agencies, and the general public with access to historical typhoon records and related meteorological information. According to its website, the database is described as follows.
The Typhoon Database collects the names and identification numbers of typhoons that have occurred in the western North Pacific over the years. During periods when typhoon warnings are issued by the Central Weather Administration, various meteorological datasets are collected and presented in textual or graphical formats. These include typhoon warning summaries, typhoon track maps, warning bulletins, satellite imagery, radar images, daily accumulated rainfall maps, regional rainfall maps, skew-T diagrams, comprehensive typhoon rainfall information, synoptic weather charts, hourly variations of meteorological elements at observation stations, bar charts of maximum mean wind and maximum gusts, bar charts of total rainfall, bar charts of consecutive 24-hour accumulated rainfall, and surface weather analysis charts. Registered research users can further access advanced datasets, including typhoon track data, meteorological station observations, dropsonde data, and reanalysis products such as hourly typhoon track maps, wind field distributions at different stages, and pressure field distributions at different stages.
This database provides comprehensive records of typhoon events. In this project, the basic typhoon information and warning issuance periods are mainly used to determine whether satellite images were affected by typhoons. In addition, typhoon intensity information is used for subsequent image classification, dividing the dataset into four categories: “Super Typhoon,” “Moderate Typhoon,” “Mild Typhoon,” and “No Typhoon.”

Data Download
In this project, Python was used to develop the data downloading program. The requests package was utilized to send HTTP requests to the website and retrieve satellite images and typhoon-related data. Compared with manually downloading files one by one, programmatic downloading significantly improves efficiency and facilitates large-scale data collection and automated processing in subsequent steps.
Satellite Cloud Images
Since ASRAD stores satellite images according to a fixed directory structure and file-naming convention, the corresponding URL can be generated based on the date and time information to retrieve satellite images at a specific time. In this project, the “Water Vapor Color Satellite Image” covering the Taiwan region was selected as the data source. After downloading, the images were saved using their original filenames.
| |
Typhoon Data
The Typhoon Database website provides an API for retrieving the typhoon list data. Since the website returns data in JSON format, the downloaded content can be directly converted into Python objects, making it convenient for subsequent analysis and processing.
Two functions were implemented in this project. The first function, get_taiwan_warning_typhon_data(), is used to retrieve the list of historical typhoons that resulted in the issuance of marine or land typhoon warnings in the Taiwan region. The second function, get_northwest_pacific_typhon_data(), retrieves all typhoon records in the western North Pacific region.
Both functions obtain data from the Central Weather Administration through HTTP POST requests. The returned JSON data are then parsed and provided for further processing within the program.
| |
Download and Classification
After implementing the two data downloading functions described above, the program can proceed with batch data downloading and classification.
The function get_newest_taiwan_warning_typhon() first checks whether the typhoon warning data downloaded on the current day already exists locally. If the data are available, they are loaded directly; otherwise, the function calls the aforementioned API to retrieve the latest data and saves them as a CSV file. This approach reduces unnecessary repeated downloads and avoids wasting computational time and network resources.
The function download_satellite_image() is responsible for batch downloading satellite images. It first creates a one-minute interval time series from the specified start date to the current time, and then sequentially calls the satellite image downloading function to retrieve images for each timestamp. Since corresponding satellite images are not available for every time point, an exception handling mechanism is implemented to skip unavailable images and ensure that the entire downloading process can continue without interruption.
Finally, the program reads all successfully downloaded satellite images one by one and compares the acquisition time extracted from each filename with the periods of typhoon warnings. If an image timestamp falls within a typhoon warning period, the image is moved to the corresponding folder based on the maximum intensity of that typhoon: “Super Typhoon,” “Moderate Typhoon,” or “Mild Typhoon.” If the image does not correspond to any typhoon warning period, it is classified into the “No Typhoon” category.
| |
Conclusion
Although this program was originally developed as an automated tool for image downloading and data collection during the early stage of image recognition research, there are still several aspects of the program structure and error handling that can be further improved. Potential improvements include implementing a more robust download retry mechanism, data caching, parallel downloading, and more precise determination of the affected areas of typhoons. Nevertheless, this workflow provides an efficient approach for constructing labeled meteorological image datasets, which can serve as a foundation for subsequent image classification, deep learning model training, and other atmospheric science applications.
Meteorological data typically exhibit strong temporal and spatial continuity. By effectively combining automated data collection techniques with artificial intelligence methods, more valuable information can be extracted from large-scale historical observational datasets. This article mainly documents the procedures for data acquisition and organization, and aims to provide a simple reference for researchers who are conducting meteorological image analysis or related studies.
References
- Department of Atmospheric Sciences, Chinese Culture University. (2023). Atmospheric Science Research and Application Databank (ASRAD). https://asrad.pccu.edu.tw/dbar/
- Central Weather Administration. (n.d.). Typhoon Database. https://rdc28.cwa.gov.tw/TDB/
![[Note] Git Command Notes](
https://yao-chih.netlify.app/images/carousel/default%20carousel%20image.png
)

![[Thought] Historical Earthquake Locations Around Taiwan](https://Josh-test-lab.github.io/posts/Historical%20Earthquake%20Locations%20Around%20Taiwan/cover%20image.webp)

![[Forbidden City Project] Building the Forbidden City in Minecraft](https://raw.githubusercontent.com/Josh-test-lab/website-assets-repository/refs/heads/main/posts/Forbidden%20City%20Project/cover%20image.png)


