Ancestris - Forum

Ancestris Support => ENGLISH => Topic started by: Pollux on November 08, 2019, 06:43:52

Title: Local map material with Ancestris usable?
Post by: Pollux on November 08, 2019, 06:43:52
Can (or could...) the 'Geographic View' and the 'Location Editor' of 'Ancestris' be used with local (offline) maps or installed software such as 'Vasco da Gama + VascoStreetmaps' (https://motionstudios.de/Home)?
Title: Re: Local map material with Ancestris usable?
Post by: Zurga on November 08, 2019, 07:16:09
Hi,

Ancestris uses OpenStreetMap to display maps.
The coordinates are stored in the GEDCOM file and GEDCOM file is a text file.

So I believe you can extract coordinates from GEDCOM to populate your maps.

But actually, there is no way to change maps provider to use a local one.

Zurga
Title: Re: Local map material with Ancestris usable?
Post by: Pollux on November 08, 2019, 08:01:03
Hi,
Thank you for your quick response.
In what form are the coordinates of Ancestris transferred to OpenStreetMap?
Or:
What would the provider of 'Vasco da Gama + Vasco StreetMaps' need to know and implement in order to provide a comparable 'Geographic View' / 'Location Editor' view, which offers 'Ancestris' (unfortunately only) 'ONLINE' via OpenStreetMap?
Title: Re: Local map material with Ancestris usable?
Post by: Zurga on November 08, 2019, 09:27:00
In GEDCOM, coordinates are store in decimal degrees with sign represented by letter.
For example :
3 MAP
4 LATI N47.8
4 LONG E1.516667

N=> +
S => -
E => +
W=> -



Zurga
Title: Re: Local map material with Ancestris usable?
Post by: Pollux on November 09, 2019, 05:02:59
Thanks, for now!
Title: Re: Local map material with Ancestris usable?
Post by: Pollux on December 06, 2019, 18:59:56
The following GPS coordinate formats are automatically recognized by my LOCAL software when selected:
GPX, KML, G7T, CRS, OVL, TCX, TK, TRK, TXT
For individual locations, for multiple locations (for the selection of an area or as a track)
Does Ancestris give me a chance?
Title: Re: Local map material with Ancestris usable?
Post by: Paul on December 06, 2019, 19:40:57
If you have any scripting ability...

As KML is really just XML, you could write a simple script to work directly on the gedcom file outside of Ancestris.

For every INDI that has MAP data write out the INDI number (or name or whatever) and the latitude/longitude to a file with appropriate KML tags...
<name>I123 John Doe</name>
<Point>
<coordinates>-122.0822035425683,37.42228990140251,0</coordinates>
</Point>

Once that file is saved, paste it into a KML template then open in google Earth or whatever.

See https://developers.google.com/kml/documentation/kml_tut#placemarks

Not sure if that's what you're after but it might help  :)