Skip to content

Commit 4ed4f4f

Browse files
committed
Moved MB.html to roads.html
1 parent 35c5331 commit 4ed4f4f

File tree

2 files changed

+13
-7
lines changed

2 files changed

+13
-7
lines changed

notes.txt

+9-4
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ todo
99
- counties: featureState seems backwards!
1010
- find source for all data/ files, put in npm run scripts
1111

12-
12+
Benny: https://dev.simtable.com/ASM/ft-epidemic-map/NewMexicoSIR/
1313

1414
https://docs.mapbox.com/mapbox-gl-js/api/#geojsonsource#setdata
1515
https://docs.mapbox.com/mapbox-gl-js/api/#map#setstyle
@@ -74,6 +74,8 @@ styles/mapbox/satellite-v9',
7474
styles/mapbox/dark-v10',
7575
styles/mapbox/light-v10',
7676
......................................................................
77+
Data:
78+
7779
https://github.com/johan/world.geo.json
7880
https://catalog.data.gov/dataset
7981
https://simplemaps.com/data
@@ -106,7 +108,8 @@ http://geojson.io/#map=13/35.6831/-105.9582
106108

107109

108110
https://drive.google.com/drive/folders/1PbuHq59DMuI5XkKvmIcYuElGVVbknX0z
109-
https://svi.cdc.gov/data-and-tools-download.html
111+
CDC's Social Vulnerability Index (SVI)
112+
https://svi.cdc.gov/data-and-tools-download.html
110113

111114
......................................................................
112115
Data
@@ -123,6 +126,8 @@ usstates.geojson counties.json:
123126
states:
124127
agentscript/bin/minifyjson
125128

129+
Sociall Vulnerability Index
130+
https://svi.cdc.gov/data-and-tools-download.html
126131

127132
Downloads data0/ https://eric.clst.org/tech/usgeojson/
128133
us_040: states
@@ -168,11 +173,11 @@ gitcommit
168173

169174
//////////
170175

171-
176+
New: counties.html popup while hovering counties
177+
- counties.html: add popup for county names
172178
- data0/: gitignored dir of original data before modified for MB use
173179
- mktiles: put large intermediate files in data0/
174180

175-
176181
counties.html: state filter
177182
- bin/fips2json:
178183
- add both Postal & ID code keys

MB.html roads.html

+4-3
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<html>
33
<head>
44
<meta charset="utf-8" />
5-
<title>MB</title>
5+
<title>Roads</title>
66
<meta
77
name="viewport"
88
content="initial-scale=1,maximum-scale=1,user-scalable=no"
@@ -33,6 +33,7 @@
3333
const modelParams = util.parseQueryString()
3434

3535
const name = Object.keys(modelParams)[0] || 'geojson'
36+
3637
mapboxgl.accessToken =
3738
'pk.eyJ1IjoiYmFja3NwYWNlcyIsImEiOiJjanVrbzI4dncwOXl3M3ptcGJtN3oxMmhoIn0.x9iSCrtm0iADEqixVgPwqQ'
3839
const map = new mapboxgl.Map({
@@ -45,8 +46,8 @@
4546
util.toWindow({ util, map })
4647

4748
const types = {
48-
geojson: { data: './santafe7roads.json', type: 'geojson' },
49-
vector: {
49+
geojson: { data: './data/santafe7roads.json', type: 'geojson' },
50+
tile: {
5051
data: 'mapbox://backspaces.c3ezilfb',
5152
type: 'vector',
5253
},

0 commit comments

Comments
 (0)