Results 1 to 2 of 2

Thread: Not picking up power data

  1. #1
    Potential Tuner
    Join Date
    Jul 2022
    Posts
    1

    Not picking up power data

    I have only just started using this product and am trying to get data on my screen. I am able to get the data for ele (Elevation), Time, cad (cadence), distance.

    The data i want is power except it is not picking this up for me. Just wondering how i would go about getting the software to pick this up?

    Below is a samle block of the code.

    <trkpt lat="-27.463339" lon="152.94693">
    <ele>274.7</ele>
    <time>1970-01-02T02:08:13.000Z</time>
    <extensions>
    <power>149</power>
    <gpxtpx:TrackPointExtension>
    <gpxtpx:cad>72</gpxtpx:cad>
    </gpxtpx:TrackPointExtension>
    </extensions>
    </trkpt>

    cheers

  2. #2
    Advanced Tuner
    Join Date
    Apr 2018
    Posts
    296
    According to the documentation here:

    GPX is a somewhat loose format, so there may be variations that do not work with RaceRender, and non-standard or "extensions" data may not be picked up. Generally speaking, the file must begin with an <?xml> tag, and for GPX, each track point should look similar to the following example:

    <trkpt lat="39.602613" lon="-105.020217">
    <ele>1624.77</ele>
    <time>2011-06-02T14:28:35Z</time>
    <speed>31.2</speed>
    </trkpt>

    The time tag is always required. The elevation and speed tags are optional, but recommended.
    So, it sounds like "power" isn't a supported field. Is there a way to rename it to "speed" in your application? Or maybe you can try a GPX to CSV Converter to change it over to a CSV file which might be more easily read by RaceRender?