country

Occurrence

compulsory, single

Attributes

Description

Inside <country> the country of a city, or dive spot respectively, are put in brackets.

Inside <address> <country> must be given, whereas the other elements (<city>, <postcode>, and <street>) can also be omitted.

Parent Elements

<address>

Child Elements

See Also

<address>, <geography>

Examples

<!-- <country> given inside <address> -->
<address>
    <street>Kornstr. 24</street>
    <city>Unna</city>
    <postcode>59625</postcode>
    <country>Germany</country>
</address>
                
<!-- <country> as a statement inside <geography> -->
<geography>
    <location>Möhnesee</location>
    <address>
        <province>Nordrhein-Westfalen</province>
        <country>Germany</country>
    </address>
    <!-- here more information concerning geographical latitude, and longitude -->
</geography>