Skip to contents

[Stable]

get_brazil_state_longitude() returns a vector with the longitude of Brazilian state capitals.

Usage

get_brazil_state_longitude(x = NULL)

Arguments

x

(Optional) A character vector with the names of Brazilian states or federal units. If NULL, returns all state longitudes (Default: NULL).

Value

A character vector with the longitude of Brazilian states.

Details

The data from this function is based on Google's Geocoding API gathered via the tidygeocoder R package.

Examples

get_brazil_state_longitude()
#>                Acre             Alagoas               Amapá            Amazonas 
#>           -67.82208           -35.73393           -51.05696           -59.98250 
#>               Bahia               Ceará    Distrito Federal      Espírito Santo 
#>           -38.48128           -38.52180           -47.88232           -40.33767 
#>               Goiás            Maranhão         Mato Grosso  Mato Grosso do Sul 
#>           -49.25327           -44.29639           -56.09913           -54.61629 
#>        Minas Gerais                Pará             Paraíba              Paraná 
#>           -43.94509           -48.46825           -34.88203           -49.27127 
#>          Pernambuco               Piauí      Rio de Janeiro Rio Grande do Norte 
#>           -34.88482           -42.80496           -43.20937           -35.20809 
#>   Rio Grande do Sul            Rondônia             Roraima      Santa Catarina 
#>           -51.23038           -63.87354           -60.67196           -48.54961 
#>           São Paulo             Sergipe           Tocantins 
#>           -46.63338           -37.07747           -48.33364 

get_brazil_state_longitude("sao paulo")
#> [1] -46.63338
#> [1] -46.63338 # Expected

get_brazil_state_longitude("sp")
#> [1] -46.63338
#> [1] -46.63338 # Expected