This adds the Strava Global Heatmap layer to Gaia GPS, so you can see common tracks on where other people have been outside. Like this:
- Log into https://www.gaiagps.com/map
- On the left sidebar, go to
Layers
This adds the Strava Global Heatmap layer to Gaia GPS, so you can see common tracks on where other people have been outside. Like this:
Layers| import xarray as xr | |
| def detrend_dim(da, dim, deg=1): | |
| # detrend along a single dimension | |
| p = da.polyfit(dim=dim, deg=deg) | |
| fit = xr.polyval(dim, p.polyfit_coefficients) | |
| return da - fit | |
| def detrend(da, dims, deg=1): | |
| # detrend along multiple dimensions |
| """Convert jupyter notebook to sphinx gallery notebook styled examples. | |
| Usage: python ipynb_to_gallery.py <notebook.ipynb> | |
| Dependencies: | |
| pypandoc: install using `pip install pypandoc` | |
| """ | |
| import pypandoc as pdoc | |
| import json |