<Locations>

Each location in your database will have its own location page and will use a Google map to display the location marker based on its description, or if they're known, its latitude and longitude. Gigatrees will look for coordinates in non-standard GEDCOM location records ( PLAC, _PLAC_DEFN, _LOC and _PLC) and in standard GEDCOM location coordinate fields ( PLAC.MAP ). In most cases, coordinates are not required for Google to draw the map correctly, but in those rare cases where it errs, users may use this option to force appropriate coordinates.

When creating location pages, Gigatrees will cleanup the location descriptions using recognized international counties (and their ISO abbreviations) and country states (and their ISO abbreviations), which for most users is seemless. If however you are an international user or a non-English speaker, you may want to add new or modify existing counties and states, or, God forbid, disable the cleanup altogether.

Locations - Index
Locations - Index
Locations - Location
Locations - Location
Locations - Location - Claims
Locations - Location - Claims

Example

<Locations>
   <Location> 
     <Description> Palestine </Description> 
     <Latitude> 31.952162    </Latitude> 
      <Longitude> 35.233154  </Longitude> 
   </Location>
   
   <Location> 
     <Description> Acre, Palestine </Description> 
     <Latitude> 32.933957          </Latitude> 
     <Longitude> 35.079946         </Longitude> 
   </Location>
   
   <CleanupLocationDescriptions> true </CleanupLocationDescriptions>
   
   <Country>
     <Name>      Canada       </Name>
     <Code>      CAN          </Code>
     <Preferred> true         </Preferred>
   </Country>	
   
   <State>
     <Name>      Newfoundland  </Name/t>
     <Code>      NL            </Code>
     <Country>   CAN           </Country>
     <Preferred> false         </Preferred>
   </State>
   
   <State>
     <Name>      Newfoundland and Labrador </Name/t>
     <Code>      NL                        </Code>
     <Country>   CAN                       </Country>
     <Preferred> true                      </Preferred>
   </State>
</Locations>

Options

<Location>
This tag indicates the beginning of a new location coordinate definition.
<Description>
[]
The original location description.
<Latitude>
[]
The location's latitude.
<Longitude>
[]
The location's longitude.
<CleanupLocationDescriptions>
[true]
Gigatrees will cleanup all location descriptions by replacing ISO country and state codes with their respective names and autodetecting many countries based on the state name. Disable to prevent Gigatrees from "cleaning up" the location descriptions.
<Country>
This tag indicates the beginning of a new Country definition.
<Name>
[]
The Country name to add or override.
<Code>
[]
The Country ISO abbreviation.
<Preferred>
[]
Indicates that this "Name" is preferred when only the "Code" is provided.
<State>
This tag indicates the beginning of a new State definition.
<Name>
[]
The State name to add or override.
<Code>
[]
The State ISO abbreviation.
<Country>
[]
The Country to which this State belongs.
<Preferred>
[]
Indicates that this "Name" is preferred when only the "Code" is provided.
Comments