Skip to content

Commit 70acd2e

Browse files
author
Paul Philion
committed
removing old readme to fix merge
2 parents e44ac8f + 902c1dc commit 70acd2e

File tree

3 files changed

+24
-11
lines changed

3 files changed

+24
-11
lines changed

README.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,22 @@ Visualizations of coverage and performance analysis for Community Cellular Netwo
44

55
Now hosted on https://coverage.seattlecommunitynetwork.org/
66

7+
# Testing & Deployment
8+
9+
Changes to the main branch are automically built and deployed to: https://seattlecommunitynetwork.org/ccn-coverage-vis/
10+
11+
Once changes have been validated, they can be deployed with:
12+
13+
```
14+
ssh coverage-api.westus2.cloudapp.azure.com
15+
cd ccn-coverage-vis/
16+
git switch main
17+
git stash
18+
git pull
19+
npm install
20+
```
21+
22+
723
# Issues
824

925
- Chart doesn't show tooltips.

README.old.md

Lines changed: 0 additions & 3 deletions
This file was deleted.

src/vis/MeasurementMap.tsx

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -16,15 +16,15 @@ import axios from 'axios';
1616
import { GeoSearchControl, OpenStreetMapProvider } from 'leaflet-geosearch';
1717
import 'leaflet-geosearch/dist/geosearch.css';
1818

19-
const ATTRIBUTION =
20-
'Map tiles by <a href="http://stamen.com">Stamen Design</a>, ' +
21-
'under <a href="http://creativecommons.org/licenses/by/3.0">CC BY 3.0</a>. ' +
22-
'Data by <a href="http://openstreetmap.org">OpenStreetMap</a>, ' +
23-
'under <a href="http://www.openstreetmap.org/copyright">ODbL</a>.';
19+
// Updated with details from: https://stadiamaps.com/stamen/onboarding/migrate/
20+
const ATTRIBUTION = '&copy; <a href="https://stadiamaps.com/" target="_blank">Stadia Maps</a> ' +
21+
'&copy; <a href="https://www.stamen.com/" target="_blank">Stamen Design</a> ' +
22+
'&copy; <a href="https://openmaptiles.org/" target="_blank">OpenMapTiles</a> ' +
23+
'&copy; <a href="https://www.openstreetmap.org/about/" target="_blank">OpenStreetMap contributors</a>';
2424

25-
const URL = `https://stamen-tiles-{s}.a.ssl.fastly.net/toner-lite/{z}/{x}/{y}${
26-
devicePixelRatio > 1 ? '@2x' : ''
27-
}.png`;
25+
const URL = `https://tiles.stadiamaps.com/tiles/stamen_toner_lite/{z}/{x}/{y}${
26+
devicePixelRatio > 1 ? '@2x' : ''
27+
}.png`;
2828

2929
const BIN_SIZE_SHIFT = 0;
3030
const DEFAULT_ZOOM = 10;

0 commit comments

Comments
 (0)