.. _book.specs.cosi_ee: Estonia ======= The Estonian version of :ref:`cosi` imports every place in Estonia from :mod:`commondata.ee`. .. include:: /../docs/shared/include/tested.rst >>> import lino >>> lino.startup('lino_book.projects.cosi_ee.settings.demo') >>> from lino.api.doctest import * >>> ses = rt.login("rando") >>> dd.translation.activate('et') The Estonian `Wikipedia `_ says: Rapla maakonnas on 10 omavalitsusüksust (valda): Juuru vald - Järvakandi vald - Kaiu vald - Kehtna vald - Kohila vald - Käru vald - Märjamaa vald - Raikküla vald - Rapla vald - Vigala vald Lino and :mod:`commondata.ee` agree with this: >>> raplamaa = countries.Place.objects.get( ... name="Rapla", type=countries.PlaceTypes.county) >>> ses.show("countries.PlacesByPlace", raplamaa) ========================= =========== ========== Asum Asumiliik zip code ------------------------- ----------- ---------- `Juuru `__ Vald `Järvakandi `__ Vald `Kaiu `__ Vald `Kehtna `__ Vald `Kohila `__ Vald `Käru `__ Vald `Märjamaa `__ Vald `Raikküla `__ Vald `Rapla `__ Linn `Vigala `__ Vald ========================= =========== ========== Another test is the `municipality of Juuru `_ for which Wikipedia announces one small borough and 14 villages: Juuru vallas on üks alevik (Juuru, elanikke 597) ja 14 küla: Atla (91), Helda, Hõreda (80), Härgla (84), Jaluse (40), Järlepa (235), Kalda, Lõiuse (103), Mahtra (99), Maidla (124), Orguse (43), Pirgu (102), Sadala ja Vankse (30). Lino and :mod:`commondata.ee` again agree with this: >>> juuru = countries.Place.objects.get(name="Juuru", ... type=countries.PlaceTypes.municipality) >>> ses.show("countries.PlacesByPlace", juuru) ====================== =========== ========== Asum Asumiliik zip code ---------------------- ----------- ---------- `Atla `__ Küla 79403 `Helda `__ Küla 79417 `Härgla `__ Küla 79404 `Hõreda `__ Küla 79010 `Jaluse `__ Küla 79410 `Juuru `__ Alevik `Järlepa `__ Küla `Kalda `__ Küla 79418 `Lõiuse `__ Küla 79405 `Mahtra `__ Küla 79407 `Orguse `__ Küla `Pirgu `__ Küla `Sadala `__ Küla 79419 `Vankse `__ Küla 79406 ====================== =========== ========== Formatting postal addresses --------------------------- The country is being printed in the address, depends on the :attr:`country_code ` setting. >>> rmu(dd.plugins.countries.country_code) 'EE' >>> dd.plugins.countries.get_my_country() Country #EE ('Estonia') >>> eesti = countries.Country.objects.get(isocode="EE") >>> sindi = countries.Place.objects.get(name="Sindi") >>> p = contacts.Person(first_name="Malle", last_name="Mets", ... street=u"M\xe4nni tn", street_no="5", street_box="-6", ... zip_code="86705", country=eesti, city=sindi) >>> print(p.address) Malle Mets Männi tn 5-6 86705 Sindi Townships in Estonia get special handling: their name is replaced by the town's name when a zip code is known: >>> city = countries.Place.objects.get(name="Kesklinn") >>> print(city) Kesklinn >>> city.type >>> p = contacts.Person(first_name="Kati", last_name="Kask", ... street="Tartu mnt", street_no="71", street_box="-5", ... zip_code="10115", country=eesti, city=city) >>> print(p.address) Kati Kask Tartu mnt 71-5 10115 Tallinn And yet another rule for countryside addresses: >>> city = countries.Place.objects.get(name="Vana-Vigala") >>> city.type >>> p = contacts.Person(first_name="Kati", last_name="Kask", ... street="Hirvepargi", street_no="123", ... zip_code="78003", country=eesti, city=city) >>> print(p.address) Kati Kask Hirvepargi 123 Vana-Vigala küla Vigala vald 78003 Rapla maakond