Skip to content

Instantly share code, notes, and snippets.

@chappy84
chappy84 / convert_stravactivity_to_gpx
Last active January 15, 2023 05:25
Quick and dirty PHP script to convert .stravactivity file to basic gpx xml
#!/usr/bin/env php
<?php
function dateInFormat($timestamp)
{
return date('Y-m-d\TH:i:s\Z', $timestamp);
}
function latLongInFormat($reference)
{
return round((float) $reference, 6);