Usage
render_brazil_address(
street = NA_character_,
complement = NA_character_,
neighborhood = NA_character_,
municipality = NA_character_,
state = NA_character_,
postal_code = NA_character_
)
Arguments
- street
(Optional) A
character
vector with the street names (Default:NA_character
).- complement
(Optional) A
character
vector with the complement of the address (Default:NA_character
).- neighborhood
(Optional) A
character
vector with the neighborhood names (Default:NA_character
).- municipality
(Optional) A
character
vector with the name of the municipalities (Default:NA_character
).- state
(Optional) A
character
vector with the name of the states (Default:NA_character
).- postal_code
(Optional) A
character
vector with the postal codes (Default:NA_character
).
Value
A character
vector with the formatted address.
See also
Other Brazil functions:
get_brazil_fu()
,
get_brazil_municipality()
,
get_brazil_municipality_code()
,
get_brazil_region()
,
get_brazil_state()
,
get_brazil_state_by_utc()
,
get_brazil_state_capital()
,
get_brazil_state_code()
,
get_brazil_state_latitude()
,
get_brazil_state_longitude()
Examples
render_brazil_address(
street = c("Viaduto do Chá, 15", "Alameda Ribeiro da Silva, 919"),
complement = c("", "Ap. 502"),
neighborhood = c("Centro", "Campos Elíseos"),
municipality = c("São Paulo", "São Paulo"),
state = c("SP", "SP"),
postal_code = c("01002-020", "01217-010")
)
#> [1] "Viaduto do Chá, 15, Centro, São Paulo-SP, 01002-020, Brasil"
#> [2] "Alameda Ribeiro da Silva, 919, Ap. 502, Campos Elíseos, São Paulo-SP, 01217-010, Brasil"