Skip to content

Commit

Permalink
Update counterpart names for Germany
Browse files Browse the repository at this point in the history
  • Loading branch information
christophscheuch committed Dec 2, 2024
1 parent 171b980 commit e57d985
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
Binary file modified R/sysdata.rda
Binary file not shown.
12 changes: 9 additions & 3 deletions data-raw/wbids-data.R
Original file line number Diff line number Diff line change
Expand Up @@ -228,9 +228,15 @@ counterparts_ids_cleaned <- counterparts_ids_enriched |>
select(geography_id, geography_iso2code, geography_type, geography_name),
join_by(geography_id, geography_iso2code, geography_type)
) |>
mutate(counterpart_name = if_else(
!is.na(geography_name), geography_name, counterpart_name
)) |>
mutate(
counterpart_name = if_else(
!is.na(geography_name), geography_name, counterpart_name
),
counterpart_name = case_when(
counterpart_name == "German Dem. Rep." ~ "German Democratic Republic",
.default = counterpart_name
)
) |>
select(-geography_name)

global_ifis <- c(
Expand Down

0 comments on commit e57d985

Please sign in to comment.