Class: AtlasEngine::It::AddressImporter::OpenAddress::Mapper

Inherits:
AddressImporter::OpenAddress::DefaultMapper show all
Defined in:
app/countries/atlas_engine/it/address_importer/open_address/mapper.rb

Instance Method Summary collapse

Methods inherited from AddressImporter::OpenAddress::DefaultMapper

#initialize

Methods included from AddressImporter::OpenAddress::FeatureHelper

#geometry, #housenumber_and_unit, #normalize_zip, #openaddress_source_id, #province_code_from_name, #province_code_from_zip, #province_from_code

Constructor Details

This class inherits a constructor from AtlasEngine::AddressImporter::OpenAddress::DefaultMapper

Instance Method Details

#map(feature) ⇒ Object



12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
# File 'app/countries/atlas_engine/it/address_importer/open_address/mapper.rb', line 12

def map(feature)
  region, district, city, street, number, unit, postcode = feature["properties"].values_at(
    "region",
    "district",
    "city",
    "street",
    "number",
    "unit",
    "postcode",
  )
  {
    source_id: openaddress_source_id(feature),
    locale: @locale,
    country_code: "IT",
    province_code: province_code_from_name(district),
    region1: region,
    region2: district,
    city: [city.titleize],
    suburb: nil,
    zip: postcode,
    street: street,
    building_and_unit_ranges: housenumber_and_unit(number, unit),
    latitude: geometry(feature)&.at(1),
    longitude: geometry(feature)&.at(0),
  }
end