Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Enhancing Brazilian Address Formatting #123

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions conf/components.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -99,3 +99,7 @@ aliases:
name: country_code
---
name: continent
---
name: complement
aliases:
- quarter
2 changes: 1 addition & 1 deletion conf/countries/worldwide.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -441,7 +441,7 @@ BR:
address_template: |
{{{attention}}}
{{{house}}}
{{{road}}} {{{house_number}}}
{{{road}}} {{{house_number}}}{{#first}}, {{{quarter}}}, {{{complement}}} ||, {{{complement}}}{{/first}}
{{#first}} {{{suburb}}} || {{{city_district}}} || {{{village}}} || {{{hamlet}}}{{/first}}
{{#first}} {{{city}}} || {{{town}}} || {{{state_district}}} {{/first}} - {{#first}} {{{state_code}}} || {{{state}}} {{/first}}
{{{postcode}}}
Expand Down
61 changes: 59 additions & 2 deletions testcases/countries/br.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -75,5 +75,62 @@ expected: |
Região Geográfica Intermediária de Picos - PI
64675-000
Brazil


---
description: Maranhão [+quarter]
components:
road: Av. dos Holandeses
house_number: 9
quarter: Quadra 33
suburb: Calhau
city: São Luís
state: Maranhão
state_code: MA
postcode: 65071-380
country_code: br
country: Brazil
expected: |
Av. dos Holandeses 9, Quadra 33
Calhau
São Luís - MA
65071-380
Brazil
---
# Addresses in the capital city of Brasilia are special. Brasilia is divided into sectors. Each sector is divided into quadrants ("quadras"). Each quadra is divided into blocks. Each sector has a three-letter or four-letter code, which comes before the quadra.
description: BRASILIA - DF (1) [-house_number, +quarter, +complement]
components:
road: SBN
quarter: Quadra 13
complement: Bloca B - 8o andar
suburb: Asa Norte
city: Brasília
state: Distrito Federal
state_code: DF
postcode: 70770-520
country: Brazil
country_code: br
expected: |
#[sector SBN, quadrant 13, block B - 8th floor]
SBN, Quadra 13, Bloca B - 8o andar
#[City-ProvinceCode]
BRASILIA-DF
70002–900
BRAZIL
---
# https://emec.mec.gov.br/emec/consulta-cadastro/detalhes-ies-endereco/d96957f455f6405d14c6542552b0f6eb/Nzc1
description: BRASILIA - DF (2) [-house_number, +complement]
components:
road: SEPN 516 - W3
complement: Bloco E
suburb: Asa Norte
city: Brasília
state: Distrito Federal
state_code: DF
postcode: 70770-520
country: Brazil
country_code: br
expected: |
SEPN 516 - W3, Bloco E
Asa Norte
Brasília - DF
70770-520
Brazil