Skip to content

Commit

Permalink
removing old readme to fix merge
Browse files Browse the repository at this point in the history
  • Loading branch information
Paul Philion committed Jan 18, 2024
2 parents e44ac8f + 902c1dc commit 70acd2e
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 11 deletions.
16 changes: 16 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,22 @@ Visualizations of coverage and performance analysis for Community Cellular Netwo

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

# Testing & Deployment

Changes to the main branch are automically built and deployed to: https://seattlecommunitynetwork.org/ccn-coverage-vis/

Once changes have been validated, they can be deployed with:

```
ssh coverage-api.westus2.cloudapp.azure.com
cd ccn-coverage-vis/
git switch main
git stash
git pull
npm install
```


# Issues

- Chart doesn't show tooltips.
Expand Down
3 changes: 0 additions & 3 deletions README.old.md

This file was deleted.

16 changes: 8 additions & 8 deletions src/vis/MeasurementMap.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,15 +16,15 @@ import axios from 'axios';
import { GeoSearchControl, OpenStreetMapProvider } from 'leaflet-geosearch';
import 'leaflet-geosearch/dist/geosearch.css';

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

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

const BIN_SIZE_SHIFT = 0;
const DEFAULT_ZOOM = 10;
Expand Down

0 comments on commit 70acd2e

Please sign in to comment.