|
2 | 2 |
|
3 | 3 | A PHP class for analysing FIT files created by Garmin GPS devices. |
4 | 4 |
|
5 | | -[Live demonstration](http://www.adriangibbons.com/phpFITFileAnalysis/demo/) (Right-click and Open in new tab) |
| 5 | +[Live demonstration](http://www.adriangibbons.com/php-fit-file-analysis/demo/) (Right-click and Open in new tab) |
6 | 6 |
|
7 | 7 | ##Demo Screenshots |
8 | 8 |  |
9 | 9 |  |
10 | 10 |  |
11 | 11 |
|
12 | | -Please read this page in its entirety and the [FAQ](https://github.com/adriangibbons/phpFITFileAnalysis/wiki/Frequently-Asked-Questions-(FAQ)) first if you have any questions or need support. |
| 12 | +Please read this page in its entirety and the [FAQ](https://github.com/adriangibbons/php-fit-file-analysis/wiki/Frequently-Asked-Questions-(FAQ)) first if you have any questions or need support. |
13 | 13 |
|
14 | 14 | ##What is a FIT file? |
15 | 15 | FIT or Flexible and Interoperable Data Transfer is a file format used for GPS tracks and routes. It is used by newer Garmin fitness GPS devices, including the Edge and Forerunner series, which are popular with cyclists and runners. |
@@ -105,7 +105,7 @@ $options = [ |
105 | 105 | 'units' => 'statute', |
106 | 106 | 'pace' => true |
107 | 107 | ]; |
108 | | -$pFFA = new phpFITFileAnalysis('my_fit_file.fit', $options); |
| 108 | +$pFFA = new adriangibbons\phpFITFileAnalysis\phpFITFileAnalysis('my_fit_file.fit', $options); |
109 | 109 | ```` |
110 | 110 | The optional parameters are described in more detail below. |
111 | 111 | ####"Fix" the Data |
@@ -290,7 +290,7 @@ $pFFA->criticalPower($time_periods); // e.g. 300 or [300, 600, 900, 1200] |
290 | 290 | Note that ```$pFFA->criticalPower``` and some power metrics (Normalised Power, Variability Index, Intensity Factor, Training Stress Score) will use the [PHP Trader](http://php.net/manual/en/book.trader.php) extension if it is loaded on the server. If the extension is not loaded then it will use the built-in Simple Moving Average algorithm, which is far less performant particularly for larger files! |
291 | 291 |
|
292 | 292 |
|
293 | | -A demo of power analysis is available [here](http://www.adriangibbons.com/phpFITFileAnalysis-demo/analysis_power.php). |
| 293 | +A demo of power analysis is available [here](http://www.adriangibbons.com/php-fit-file-analysis-demo/analysis_power.php). |
294 | 294 |
|
295 | 295 | ##Acknowledgement |
296 | 296 | This class has been created using information available in a Software Development Kit (SDK) made available by ANT ([thisisant.com](http://www.thisisant.com/resources/fit)). |
|
0 commit comments