@cdc/map 4.25.8 → 4.25.11

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (137) hide show
  1. package/.claude/agents/typescript-organizer.md +118 -0
  2. package/.claude/settings.local.json +30 -0
  3. package/dist/{cdcmap-fce76882.es.js → cdcmap-BnB1QM5d.es.js} +6 -13
  4. package/dist/{cdcmap-c55ac1ea.es.js → cdcmap-D6CG2-Hb.es.js} +5 -12
  5. package/dist/{cdcmap-31a33da1.es.js → cdcmap-MXgURbdZ.es.js} +6 -13
  6. package/dist/{cdcmap-1a1724a1.es.js → cdcmap-dgT_1dIT.es.js} +136 -151
  7. package/dist/cdcmap.js +56991 -53706
  8. package/examples/example-city-state.json +9 -1
  9. package/examples/multi-country-centering.json +45 -0
  10. package/examples/private/c.json +290 -0
  11. package/examples/private/canvas-city-hover.json +787 -0
  12. package/examples/private/colors-2.json +221 -0
  13. package/examples/private/colors.json +221 -0
  14. package/examples/private/d.json +345 -0
  15. package/examples/private/g.json +1 -0
  16. package/examples/private/h.json +105911 -0
  17. package/examples/private/measles-data.json +378 -0
  18. package/examples/private/measles.json +211 -0
  19. package/examples/private/north-dakota.json +1132 -0
  20. package/examples/private/state-with-pattern.json +883 -0
  21. package/index.html +36 -34
  22. package/package.json +26 -5
  23. package/src/CdcMap.tsx +23 -8
  24. package/src/CdcMapComponent.tsx +238 -308
  25. package/src/_stories/CdcMap.ColumnWrap.stories.tsx +31 -0
  26. package/src/_stories/CdcMap.DistrictOfColumbia.stories.tsx +320 -0
  27. package/src/_stories/CdcMap.Editor.stories.tsx +3371 -0
  28. package/src/_stories/CdcMap.Filters.stories.tsx +2 -2
  29. package/src/_stories/CdcMap.Legend.Gradient.stories.tsx +3 -3
  30. package/src/_stories/CdcMap.Legend.stories.tsx +7 -4
  31. package/src/_stories/CdcMap.Patterns.stories.tsx +2 -2
  32. package/src/_stories/CdcMap.SmallMultiples.stories.tsx +35 -0
  33. package/src/_stories/CdcMap.Table.stories.tsx +2 -2
  34. package/src/_stories/CdcMap.stories.tsx +37 -9
  35. package/src/_stories/GoogleMap.stories.tsx +2 -2
  36. package/src/_stories/UsaMap.NoData.stories.tsx +2 -2
  37. package/src/_stories/_mock/column-wrap-test.json +265 -0
  38. package/src/_stories/_mock/equal-number.json +1109 -0
  39. package/src/_stories/_mock/multi-country-hide.json +78 -0
  40. package/src/_stories/_mock/multi-country.json +95 -0
  41. package/src/_stories/_mock/multi-state.json +887 -20403
  42. package/src/_stories/_mock/small_multiples/multi-state-small-multiples.json +8399 -0
  43. package/src/_stories/_mock/small_multiples/region-small-multiples.json +657 -0
  44. package/src/_stories/_mock/small_multiples/wastewater-map-small-multiples.json +221 -0
  45. package/src/_stories/_mock/us-bubble-cities.json +306 -0
  46. package/src/_stories/_mock/usa-state-gradient.json +2 -4
  47. package/src/components/BubbleList.tsx +17 -13
  48. package/src/components/CityList.tsx +85 -107
  49. package/src/components/EditorPanel/components/EditorPanel.tsx +787 -709
  50. package/src/components/EditorPanel/components/HexShapeSettings.tsx +58 -95
  51. package/src/components/EditorPanel/components/Panels/Panel.PatternSettings.tsx +34 -42
  52. package/src/components/EditorPanel/components/Panels/Panel.SmallMultiples.tsx +354 -0
  53. package/src/components/EditorPanel/components/Panels/index.tsx +3 -1
  54. package/src/components/Geo.tsx +22 -3
  55. package/src/components/Legend/components/Legend.tsx +76 -40
  56. package/src/components/Legend/components/LegendGroup/Legend.Group.tsx +10 -7
  57. package/src/components/Legend/components/index.scss +1 -1
  58. package/src/components/MapContainer.tsx +52 -0
  59. package/src/components/MapControls.tsx +44 -0
  60. package/src/components/NavigationMenu.tsx +27 -15
  61. package/src/components/SmallMultiples/SmallMultipleTile.tsx +163 -0
  62. package/src/components/SmallMultiples/SmallMultiples.css +32 -0
  63. package/src/components/SmallMultiples/SmallMultiples.tsx +150 -0
  64. package/src/components/SmallMultiples/SynchronizedTooltip.tsx +105 -0
  65. package/src/components/SmallMultiples/index.tsx +3 -0
  66. package/src/components/UsaMap/components/SingleState/SingleState.CountyOutput.tsx +36 -4
  67. package/src/components/UsaMap/components/TerritoriesSection.tsx +26 -12
  68. package/src/components/UsaMap/components/Territory/Territory.Hexagon.tsx +30 -4
  69. package/src/components/UsaMap/components/Territory/Territory.Rectangle.tsx +23 -4
  70. package/src/components/UsaMap/components/Territory/TerritoryShape.ts +6 -0
  71. package/src/components/UsaMap/components/UsaMap.County.tsx +123 -37
  72. package/src/components/UsaMap/components/UsaMap.Region.tsx +36 -5
  73. package/src/components/UsaMap/components/UsaMap.SingleState.tsx +30 -10
  74. package/src/components/UsaMap/components/UsaMap.State.tsx +53 -12
  75. package/src/components/UsaMap/helpers/map.ts +4 -4
  76. package/src/components/UsaMap/helpers/shapes.ts +9 -6
  77. package/src/components/WorldMap/WorldMap.tsx +193 -35
  78. package/src/components/ZoomControls.tsx +6 -9
  79. package/src/context/LegendMemoContext.tsx +30 -0
  80. package/src/context.ts +1 -40
  81. package/src/data/initial-state.js +153 -130
  82. package/src/data/supported-geos.js +25 -78
  83. package/src/helpers/addUIDs.ts +13 -2
  84. package/src/helpers/applyColorToLegend.ts +140 -20
  85. package/src/helpers/applyLegendToRow.ts +10 -6
  86. package/src/helpers/componentHelpers.ts +8 -0
  87. package/src/helpers/constants.ts +12 -14
  88. package/src/helpers/dataTableHelpers.ts +6 -0
  89. package/src/helpers/displayGeoName.ts +18 -3
  90. package/src/helpers/generateRuntimeLegend.ts +44 -10
  91. package/src/helpers/generateRuntimeLegendHash.ts +4 -2
  92. package/src/helpers/getColumnNames.ts +1 -1
  93. package/src/helpers/getCountriesPicked.ts +103 -0
  94. package/src/helpers/getMapContainerClasses.ts +7 -0
  95. package/src/helpers/getPatternForRow.ts +33 -0
  96. package/src/helpers/getStatesPicked.ts +8 -5
  97. package/src/helpers/index.ts +3 -3
  98. package/src/helpers/isLegendItemDisabled.ts +16 -0
  99. package/src/helpers/mapObserverHelpers.ts +40 -0
  100. package/src/helpers/resetLegendToggles.ts +3 -2
  101. package/src/helpers/smallMultiplesHelpers.ts +359 -0
  102. package/src/helpers/tests/titleCase.test.ts +76 -0
  103. package/src/helpers/titleCase.ts +13 -13
  104. package/src/helpers/toggleLegendActive.ts +6 -11
  105. package/src/helpers/urlDataHelpers.ts +70 -0
  106. package/src/hooks/useCountryZoom.tsx +241 -0
  107. package/src/hooks/useGeoClickHandler.ts +36 -2
  108. package/src/hooks/useLegendMemo.ts +17 -0
  109. package/src/hooks/useMapLayers.tsx +5 -4
  110. package/src/hooks/useProgrammaticMapTooltip.ts +110 -0
  111. package/src/hooks/useResizeObserver.ts +5 -2
  112. package/src/hooks/useStateZoom.tsx +30 -8
  113. package/src/hooks/useSynchronizedGeographies.ts +56 -0
  114. package/src/hooks/useTooltip.ts +1 -2
  115. package/src/index.jsx +1 -2
  116. package/src/scss/editor-panel.scss +4 -440
  117. package/src/scss/main.scss +1 -1
  118. package/src/scss/map.scss +12 -15
  119. package/src/store/map.actions.ts +7 -7
  120. package/src/store/map.reducer.ts +17 -6
  121. package/src/test/CdcMap.test.jsx +11 -0
  122. package/src/types/MapConfig.ts +46 -18
  123. package/src/types/MapContext.ts +6 -7
  124. package/src/types/runtimeLegend.ts +17 -1
  125. package/vite.config.js +2 -7
  126. package/vitest.config.ts +16 -0
  127. package/src/components/DataTable.tsx +0 -385
  128. package/src/components/EditorPanel/components/Inputs.tsx +0 -59
  129. package/src/coreStyles_map.scss +0 -3
  130. package/src/helpers/colorDistributions.ts +0 -12
  131. package/src/helpers/generateColorsArray.ts +0 -14
  132. package/src/helpers/tests/generateColorsArray.test.ts +0 -18
  133. package/src/helpers/tests/generateRuntimeLegendHash.test.ts +0 -11
  134. package/src/hooks/useActiveElement.ts +0 -19
  135. package/src/scss/mixins.scss +0 -47
  136. package/src/types/Annotations.ts +0 -24
  137. /package/dist/{cdcmap-548642e6.es.js → cdcmap-Ct2SB0vL.es.js} +0 -0
@@ -0,0 +1,787 @@
1
+ {
2
+ "annotations": [],
3
+ "general": {
4
+ "geoBorderColor": "darkGray",
5
+ "headerColor": "theme-slate",
6
+ "showTitle": true,
7
+ "showSidebar": true,
8
+ "showDownloadButton": true,
9
+ "showDownloadMediaButton": false,
10
+ "displayAsHex": false,
11
+ "displayStateLabels": false,
12
+ "territoriesLabel": "Territories",
13
+ "language": "en",
14
+ "geoType": "us-county",
15
+ "hasRegions": false,
16
+ "expandDataTable": false,
17
+ "fullBorder": false,
18
+ "type": "us-geocode",
19
+ "palette": {
20
+ "isReversed": false
21
+ },
22
+ "allowMapZoom": true,
23
+ "hideGeoColumnInTooltip": true,
24
+ "hidePrimaryColumnInTooltip": false,
25
+ "statePicked": {
26
+ "fipsCode": "01",
27
+ "stateName": "Alabama"
28
+ },
29
+ "title": "Example US Geocode Map",
30
+ "superTitle": "",
31
+ "territoriesAlwaysShow": false,
32
+ "geoLabelOverride": "",
33
+ "convertFipsCodes": true,
34
+ "annotationDropdownText": "Annotations",
35
+ "introText": "This map for demonstration purposes only"
36
+ },
37
+ "type": "map",
38
+ "color": "sequential-blue-2(MPX)",
39
+ "columns": {
40
+ "geo": {
41
+ "name": "City",
42
+ "label": "Location",
43
+ "tooltip": false,
44
+ "dataTable": true
45
+ },
46
+ "primary": {
47
+ "dataTable": true,
48
+ "tooltip": true,
49
+ "prefix": "",
50
+ "suffix": "",
51
+ "name": "Value",
52
+ "label": "",
53
+ "roundToPlace": 0
54
+ },
55
+ "navigate": {
56
+ "name": ""
57
+ },
58
+ "latitude": {
59
+ "name": "Latitude"
60
+ },
61
+ "longitude": {
62
+ "name": "Longitude"
63
+ }
64
+ },
65
+ "legend": {
66
+ "descriptions": {},
67
+ "specialClasses": [],
68
+ "unified": false,
69
+ "singleColumn": false,
70
+ "singleRow": true,
71
+ "dynamicDescription": false,
72
+ "type": "equalnumber",
73
+ "numberOfItems": 4,
74
+ "position": "bottom",
75
+ "title": "Number of Occurances",
76
+ "description": "Each city's number of occurrences as measured by the City Commission for Occurrences (CCO)",
77
+ "verticalSorted": false,
78
+ "showSpecialClassesLast": false
79
+ },
80
+ "filters": [],
81
+ "table": {
82
+ "wrapColumns": false,
83
+ "label": "Data Table",
84
+ "expanded": false,
85
+ "limitHeight": false,
86
+ "height": "",
87
+ "caption": "",
88
+ "showDownloadUrl": false,
89
+ "showDataTableLink": true,
90
+ "showFullGeoNameInCSV": false,
91
+ "forceDisplay": true,
92
+ "download": true,
93
+ "indexLabel": ""
94
+ },
95
+ "tooltips": {
96
+ "appearanceType": "hover",
97
+ "linkLabel": "Learn More",
98
+ "capitalizeLabels": true,
99
+ "opacity": 90
100
+ },
101
+ "visual": {
102
+ "minBubbleSize": 1,
103
+ "maxBubbleSize": 20,
104
+ "extraBubbleBorder": false,
105
+ "cityStyle": "circle",
106
+ "geoCodeCircleSize": "4",
107
+ "showBubbleZeros": false,
108
+ "cityStyleLabel": "",
109
+ "additionalCityStyles": []
110
+ },
111
+ "mapPosition": {
112
+ "coordinates": [
113
+ 0,
114
+ 30
115
+ ],
116
+ "zoom": 1
117
+ },
118
+ "map": {
119
+ "layers": [],
120
+ "patterns": []
121
+ },
122
+ "hexMap": {
123
+ "type": "",
124
+ "shapeGroups": [
125
+ {
126
+ "legendTitle": "",
127
+ "legendDescription": "",
128
+ "items": [
129
+ {
130
+ "key": "",
131
+ "shape": "Arrow Up",
132
+ "column": "",
133
+ "operator": "=",
134
+ "value": ""
135
+ }
136
+ ]
137
+ }
138
+ ]
139
+ },
140
+ "filterBehavior": "Filter Change",
141
+ "dataTable": {
142
+ "title": "Data Table",
143
+ "forceDisplay": true,
144
+ "limitHeight": true,
145
+ "height": "300"
146
+ },
147
+ "data": [
148
+ {
149
+ "City": "Albuquerque",
150
+ "Longitude": "-106.650421",
151
+ "Latitude": "35.084385",
152
+ "Value": 1
153
+ },
154
+ {
155
+ "City": "Anaheim",
156
+ "Longitude": "-117.914299",
157
+ "Latitude": "33.836594",
158
+ "Value": 2
159
+ },
160
+ {
161
+ "City": "Anchorage",
162
+ "Longitude": "-149.900284",
163
+ "Latitude": "61.218056",
164
+ "Value": 3
165
+ },
166
+ {
167
+ "City": "Arlington",
168
+ "Longitude": "-97.108063",
169
+ "Latitude": "32.735687",
170
+ "Value": 4
171
+ },
172
+ {
173
+ "City": "Atlanta",
174
+ "Longitude": "-84.387985",
175
+ "Latitude": "33.748997",
176
+ "Value": 5
177
+ },
178
+ {
179
+ "City": "Aurora",
180
+ "Longitude": "-93.717979",
181
+ "Latitude": "36.97089",
182
+ "Value": 6
183
+ },
184
+ {
185
+ "City": "Austin",
186
+ "Longitude": "-97.743057",
187
+ "Latitude": "30.267153",
188
+ "Value": 7
189
+ },
190
+ {
191
+ "City": "Bakersfield",
192
+ "Longitude": "-119.018715",
193
+ "Latitude": "35.373291",
194
+ "Value": 8
195
+ },
196
+ {
197
+ "City": "Baltimore",
198
+ "Longitude": "-76.61219",
199
+ "Latitude": "39.290386",
200
+ "Value": 9
201
+ },
202
+ {
203
+ "City": "Baton Rouge",
204
+ "Longitude": "-91.187149",
205
+ "Latitude": "30.451468",
206
+ "Value": 10
207
+ },
208
+ {
209
+ "City": "Boise",
210
+ "Longitude": "-116.202316",
211
+ "Latitude": "43.615021",
212
+ "Value": 11
213
+ },
214
+ {
215
+ "City": "Boston",
216
+ "Longitude": "-71.058884",
217
+ "Latitude": "42.360081",
218
+ "Value": 12
219
+ },
220
+ {
221
+ "City": "Buffalo",
222
+ "Longitude": "-78.878372",
223
+ "Latitude": "42.886448",
224
+ "Value": 13
225
+ },
226
+ {
227
+ "City": "Chandler",
228
+ "Longitude": "-111.841248",
229
+ "Latitude": "33.30616",
230
+ "Value": 14
231
+ },
232
+ {
233
+ "City": "Charlotte",
234
+ "Longitude": "-80.843124",
235
+ "Latitude": "35.227085",
236
+ "Value": 15
237
+ },
238
+ {
239
+ "City": "Chesapeake",
240
+ "Longitude": "-76.287491",
241
+ "Latitude": "36.768208",
242
+ "Value": 16
243
+ },
244
+ {
245
+ "City": "Chicago",
246
+ "Longitude": "-87.629799",
247
+ "Latitude": "41.878113",
248
+ "Value": 17
249
+ },
250
+ {
251
+ "City": "Chula Vista",
252
+ "Longitude": "-117.084198",
253
+ "Latitude": "32.640053",
254
+ "Value": 18
255
+ },
256
+ {
257
+ "City": "Cincinnati",
258
+ "Longitude": "-84.512016",
259
+ "Latitude": "39.103119",
260
+ "Value": 19
261
+ },
262
+ {
263
+ "City": "Cleveland",
264
+ "Longitude": "-81.694359",
265
+ "Latitude": "41.499321",
266
+ "Value": 20
267
+ },
268
+ {
269
+ "City": "Colorado Springs",
270
+ "Longitude": "-104.821365",
271
+ "Latitude": "38.833881",
272
+ "Value": 21
273
+ },
274
+ {
275
+ "City": "Columbus",
276
+ "Longitude": "-82.998795",
277
+ "Latitude": "39.961178",
278
+ "Value": 22
279
+ },
280
+ {
281
+ "City": "Corpus Christi",
282
+ "Longitude": "-97.396378",
283
+ "Latitude": "27.800583",
284
+ "Value": 23
285
+ },
286
+ {
287
+ "City": "Dallas",
288
+ "Longitude": "-96.796989",
289
+ "Latitude": "32.776665",
290
+ "Value": 24
291
+ },
292
+ {
293
+ "City": "Denver",
294
+ "Longitude": "-104.99025",
295
+ "Latitude": "39.739235",
296
+ "Value": 25
297
+ },
298
+ {
299
+ "City": "Detroit",
300
+ "Longitude": "-83.045753",
301
+ "Latitude": "42.331429",
302
+ "Value": 26
303
+ },
304
+ {
305
+ "City": "District of Columbia",
306
+ "Longitude": "-77.036873",
307
+ "Latitude": "38.907192",
308
+ "Value": 27
309
+ },
310
+ {
311
+ "City": "Durham",
312
+ "Longitude": "-78.898621",
313
+ "Latitude": "35.994034",
314
+ "Value": 28
315
+ },
316
+ {
317
+ "City": "El Paso",
318
+ "Longitude": "-106.485023",
319
+ "Latitude": "31.761877",
320
+ "Value": 29
321
+ },
322
+ {
323
+ "City": "Fort Wayne",
324
+ "Longitude": "-85.139351",
325
+ "Latitude": "41.079273",
326
+ "Value": 30
327
+ },
328
+ {
329
+ "City": "Ft Wayne",
330
+ "Longitude": "-85.139351",
331
+ "Latitude": "41.079273",
332
+ "Value": 31
333
+ },
334
+ {
335
+ "City": "Fort Worth",
336
+ "Longitude": "-97.330765",
337
+ "Latitude": "32.755489",
338
+ "Value": 32
339
+ },
340
+ {
341
+ "City": "Fremont",
342
+ "Longitude": "-121.988571",
343
+ "Latitude": "37.548271",
344
+ "Value": 33
345
+ },
346
+ {
347
+ "City": "Fresno",
348
+ "Longitude": "-119.787125",
349
+ "Latitude": "36.737797",
350
+ "Value": 34
351
+ },
352
+ {
353
+ "City": "Garland",
354
+ "Longitude": "-96.638885",
355
+ "Latitude": "32.912624",
356
+ "Value": 35
357
+ },
358
+ {
359
+ "City": "Gilbert",
360
+ "Longitude": "-111.789024",
361
+ "Latitude": "33.352825",
362
+ "Value": 36
363
+ },
364
+ {
365
+ "City": "Glendale",
366
+ "Longitude": "-118.255074",
367
+ "Latitude": "34.142509",
368
+ "Value": 37
369
+ },
370
+ {
371
+ "City": "Greensboro",
372
+ "Longitude": "-79.791977",
373
+ "Latitude": "36.072636",
374
+ "Value": 38
375
+ },
376
+ {
377
+ "City": "Henderson",
378
+ "Longitude": "-114.98172",
379
+ "Latitude": "36.039524",
380
+ "Value": 39
381
+ },
382
+ {
383
+ "City": "Hialeah",
384
+ "Longitude": "-80.278107",
385
+ "Latitude": "25.857595",
386
+ "Value": 40
387
+ },
388
+ {
389
+ "City": "Honolulu",
390
+ "Longitude": "-157.858337",
391
+ "Latitude": "21.306944",
392
+ "Value": 41
393
+ },
394
+ {
395
+ "City": "Houston",
396
+ "Longitude": "-95.358421",
397
+ "Latitude": "29.749907",
398
+ "Value": 42
399
+ },
400
+ {
401
+ "City": "Indianapolis",
402
+ "Longitude": "-86.158066",
403
+ "Latitude": "39.768402",
404
+ "Value": 43
405
+ },
406
+ {
407
+ "City": "Irvine",
408
+ "Longitude": "-117.826508",
409
+ "Latitude": "33.684566",
410
+ "Value": 44
411
+ },
412
+ {
413
+ "City": "Irving",
414
+ "Longitude": "-96.948891",
415
+ "Latitude": "32.814018",
416
+ "Value": 45
417
+ },
418
+ {
419
+ "City": "Jacksonville",
420
+ "Longitude": "-81.655647",
421
+ "Latitude": "30.332184",
422
+ "Value": 46
423
+ },
424
+ {
425
+ "City": "Jersey City",
426
+ "Longitude": "-74.077644",
427
+ "Latitude": "40.728157",
428
+ "Value": 47
429
+ },
430
+ {
431
+ "City": "Kansas City",
432
+ "Longitude": "-94.578568",
433
+ "Latitude": "39.099728",
434
+ "Value": 48
435
+ },
436
+ {
437
+ "City": "Laredo",
438
+ "Longitude": "-99.507553",
439
+ "Latitude": "27.503561",
440
+ "Value": 49
441
+ },
442
+ {
443
+ "City": "Las Vegas",
444
+ "Longitude": "-115.139832",
445
+ "Latitude": "36.169941",
446
+ "Value": 50
447
+ },
448
+ {
449
+ "City": "Lexington",
450
+ "Longitude": "-84.503716",
451
+ "Latitude": "38.040585",
452
+ "Value": 51
453
+ },
454
+ {
455
+ "City": "Lincoln",
456
+ "Longitude": "-95.262955",
457
+ "Latitude": "37.346134",
458
+ "Value": 52
459
+ },
460
+ {
461
+ "City": "Long Beach",
462
+ "Longitude": "-118.193741",
463
+ "Latitude": "33.77005",
464
+ "Value": 53
465
+ },
466
+ {
467
+ "City": "Los Angeles",
468
+ "Longitude": "-118.243683",
469
+ "Latitude": "34.052235",
470
+ "Value": 54
471
+ },
472
+ {
473
+ "City": "Los Angeles County",
474
+ "Longitude": "-118.229362",
475
+ "Latitude": "34.058762",
476
+ "Value": 55
477
+ },
478
+ {
479
+ "City": "Louisville",
480
+ "Longitude": "-85.758453",
481
+ "Latitude": "38.252666",
482
+ "Value": 56
483
+ },
484
+ {
485
+ "City": "Lubbock",
486
+ "Longitude": "-101.855164",
487
+ "Latitude": "33.577862",
488
+ "Value": 57
489
+ },
490
+ {
491
+ "City": "Madison",
492
+ "Longitude": "-89.40123",
493
+ "Latitude": "43.073051",
494
+ "Value": 58
495
+ },
496
+ {
497
+ "City": "Marion County, Indiana",
498
+ "Longitude": "-86.136543",
499
+ "Latitude": "39.781029",
500
+ "Value": 59
501
+ },
502
+ {
503
+ "City": "Memphis",
504
+ "Longitude": "-90.048981",
505
+ "Latitude": "35.149532",
506
+ "Value": 60
507
+ },
508
+ {
509
+ "City": "Mesa",
510
+ "Longitude": "-111.831474",
511
+ "Latitude": "33.415184",
512
+ "Value": 61
513
+ },
514
+ {
515
+ "City": "Miami",
516
+ "Longitude": "-80.191788",
517
+ "Latitude": "25.761681",
518
+ "Value": 62
519
+ },
520
+ {
521
+ "City": "Milwaukee",
522
+ "Longitude": "-87.906471",
523
+ "Latitude": "43.038902",
524
+ "Value": 63
525
+ },
526
+ {
527
+ "City": "Minneapolis",
528
+ "Longitude": "-93.265015",
529
+ "Latitude": "44.977753",
530
+ "Value": 64
531
+ },
532
+ {
533
+ "City": "Montgomery County, Maryland",
534
+ "Longitude": "-77.199406",
535
+ "Latitude": "39.153515",
536
+ "Value": 65
537
+ },
538
+ {
539
+ "City": "Nashville",
540
+ "Longitude": "-86.781601",
541
+ "Latitude": "36.162663",
542
+ "Value": 66
543
+ },
544
+ {
545
+ "City": "New Orleans",
546
+ "Longitude": "-90.071533",
547
+ "Latitude": "29.951065",
548
+ "Value": 67
549
+ },
550
+ {
551
+ "City": "New York City",
552
+ "Longitude": "-74.005974",
553
+ "Latitude": "40.712776",
554
+ "Value": 68
555
+ },
556
+ {
557
+ "City": "Newark",
558
+ "Longitude": "-95.582733",
559
+ "Latitude": "37.443188",
560
+ "Value": 69
561
+ },
562
+ {
563
+ "City": "Norfolk",
564
+ "Longitude": "-76.285873",
565
+ "Latitude": "36.850769",
566
+ "Value": 70
567
+ },
568
+ {
569
+ "City": "North Las Vegas",
570
+ "Longitude": "-115.114571",
571
+ "Latitude": "36.19585",
572
+ "Value": 71
573
+ },
574
+ {
575
+ "City": "Oakland",
576
+ "Longitude": "-122.271111",
577
+ "Latitude": "37.804363",
578
+ "Value": 72
579
+ },
580
+ {
581
+ "City": "Oklahoma City",
582
+ "Longitude": "-97.516426",
583
+ "Latitude": "35.46756",
584
+ "Value": 73
585
+ },
586
+ {
587
+ "City": "Omaha",
588
+ "Longitude": "-95.934502",
589
+ "Latitude": "41.256538",
590
+ "Value": 74
591
+ },
592
+ {
593
+ "City": "Orlando",
594
+ "Longitude": "-81.379234",
595
+ "Latitude": "28.538336",
596
+ "Value": 75
597
+ },
598
+ {
599
+ "City": "Philadelphia",
600
+ "Longitude": "-75.165222",
601
+ "Latitude": "39.952583",
602
+ "Value": 76
603
+ },
604
+ {
605
+ "City": "Phoenix",
606
+ "Longitude": "-112.074036",
607
+ "Latitude": "33.448376",
608
+ "Value": 77
609
+ },
610
+ {
611
+ "City": "Pittsburgh",
612
+ "Longitude": "-79.995888",
613
+ "Latitude": "40.440624",
614
+ "Value": 78
615
+ },
616
+ {
617
+ "City": "Plano",
618
+ "Longitude": "-96.698883",
619
+ "Latitude": "33.019844",
620
+ "Value": 79
621
+ },
622
+ {
623
+ "City": "Portland",
624
+ "Longitude": "-122.658722",
625
+ "Latitude": "45.51223",
626
+ "Value": 80
627
+ },
628
+ {
629
+ "City": "Raleigh",
630
+ "Longitude": "-78.638176",
631
+ "Latitude": "35.779591",
632
+ "Value": 81
633
+ },
634
+ {
635
+ "City": "Reno",
636
+ "Longitude": "-119.813805",
637
+ "Latitude": "39.529633",
638
+ "Value": 82
639
+ },
640
+ {
641
+ "City": "Richmond",
642
+ "Longitude": "-77.43605",
643
+ "Latitude": "37.540726",
644
+ "Value": 83
645
+ },
646
+ {
647
+ "City": "Riverside",
648
+ "Longitude": "-117.375496",
649
+ "Latitude": "33.980602",
650
+ "Value": 84
651
+ },
652
+ {
653
+ "City": "Sacramento",
654
+ "Longitude": "-121.4944",
655
+ "Latitude": "38.581573",
656
+ "Value": 85
657
+ },
658
+ {
659
+ "City": "Saint Paul",
660
+ "Longitude": "-93.089958",
661
+ "Latitude": "44.953705",
662
+ "Value": 86
663
+ },
664
+ {
665
+ "City": "San Antonio",
666
+ "Longitude": "-98.493629",
667
+ "Latitude": "29.424122",
668
+ "Value": 87
669
+ },
670
+ {
671
+ "City": "San Diego",
672
+ "Longitude": "-117.161087",
673
+ "Latitude": "32.715736",
674
+ "Value": 88
675
+ },
676
+ {
677
+ "City": "San Francisco",
678
+ "Longitude": "-122.419418",
679
+ "Latitude": "37.774929",
680
+ "Value": 89
681
+ },
682
+ {
683
+ "City": "San Jose",
684
+ "Longitude": "-121.88633",
685
+ "Latitude": "37.338207",
686
+ "Value": 90
687
+ },
688
+ {
689
+ "City": "Santa Ana",
690
+ "Longitude": "-117.867653",
691
+ "Latitude": "33.745472",
692
+ "Value": 91
693
+ },
694
+ {
695
+ "City": "Scottsdale",
696
+ "Longitude": "-111.926048",
697
+ "Latitude": "33.494171",
698
+ "Value": 92
699
+ },
700
+ {
701
+ "City": "Seattle",
702
+ "Longitude": "-122.332069",
703
+ "Latitude": "47.606209",
704
+ "Value": 93
705
+ },
706
+ {
707
+ "City": "Spokane",
708
+ "Longitude": "-117.426048",
709
+ "Latitude": "47.658779",
710
+ "Value": 94
711
+ },
712
+ {
713
+ "City": "St. Louis",
714
+ "Longitude": "-90.199402",
715
+ "Latitude": "38.627003",
716
+ "Value": 95
717
+ },
718
+ {
719
+ "City": "St. Petersburg",
720
+ "Longitude": "-82.640289",
721
+ "Latitude": "27.767601",
722
+ "Value": 96
723
+ },
724
+ {
725
+ "City": "Stockton",
726
+ "Longitude": "-121.290779",
727
+ "Latitude": "37.957703",
728
+ "Value": 97
729
+ },
730
+ {
731
+ "City": "Tampa",
732
+ "Longitude": "-82.457176",
733
+ "Latitude": "27.950575",
734
+ "Value": 98
735
+ },
736
+ {
737
+ "City": "Toledo",
738
+ "Longitude": "-83.537865",
739
+ "Latitude": "41.652805",
740
+ "Value": 99
741
+ },
742
+ {
743
+ "City": "Tucson",
744
+ "Longitude": "-110.974709",
745
+ "Latitude": "32.222607",
746
+ "Value": 100
747
+ },
748
+ {
749
+ "City": "Tuscon",
750
+ "Longitude": "-110.974709",
751
+ "Latitude": "32.222607",
752
+ "Value": 101
753
+ },
754
+ {
755
+ "City": "Tulsa",
756
+ "Longitude": "-95.992775",
757
+ "Latitude": "36.15398",
758
+ "Value": 102
759
+ },
760
+ {
761
+ "City": "Virginia Beach",
762
+ "Longitude": "-75.977982",
763
+ "Latitude": "36.852924",
764
+ "Value": 103
765
+ },
766
+ {
767
+ "City": "Wichita",
768
+ "Longitude": "-97.330055",
769
+ "Latitude": "37.687176",
770
+ "Value": 104
771
+ },
772
+ {
773
+ "City": "Winston Salem",
774
+ "Longitude": "-80.244217",
775
+ "Latitude": "36.099861",
776
+ "Value": 105
777
+ }
778
+ ],
779
+ "dataFileName": "US_Geocode_Data_Sample.csv",
780
+ "dataFileSourceType": "file",
781
+ "dataDescription": {
782
+ "horizontal": false,
783
+ "series": false
784
+ },
785
+ "validated": 4.23,
786
+ "version": "4.24.9"
787
+ }