Indonesia's WHO region changed from SEARO to WPRO as of 2025-05-23.
For now, we have updated get_region() to assign Indonesia to WPRO. Ideally, the code base should be updated in some way to incorporate date-specific logic so that for Indonesia, for dates prior to 5/23/2025 it will be assigned to SEARO, and for dates after 5/23/2025 it will be assigned to WPRO.
Additionally, region assignments are not consistently handled through get_region() across the codebase. A review is needed to:
- Identify instances where region is hardcoded or derived outside of get_region()
- Refactor those cases to use get_region() where possible, or
- Implement equivalent logic to ensure Indonesia is assigned to the correct region based on date
The goal is to ensure consistent and accurate region assignment for Indonesia across all code paths.
Indonesia's WHO region changed from SEARO to WPRO as of 2025-05-23.
For now, we have updated
get_region()to assign Indonesia to WPRO. Ideally, the code base should be updated in some way to incorporate date-specific logic so that for Indonesia, for dates prior to 5/23/2025 it will be assigned to SEARO, and for dates after 5/23/2025 it will be assigned to WPRO.Additionally, region assignments are not consistently handled through get_region() across the codebase. A review is needed to:
The goal is to ensure consistent and accurate region assignment for Indonesia across all code paths.