@cdc/map 4.26.3 → 4.26.5

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 (105) hide show
  1. package/CONFIG.md +268 -0
  2. package/README.md +74 -24
  3. package/dist/cdcmap-CY9IcPSi.es.js +6 -0
  4. package/dist/cdcmap-DlpiY3fQ.es.js +4 -0
  5. package/dist/cdcmap.js +29168 -27482
  6. package/examples/{testing-layer-2.json → __data__/testing-layer-2.json} +1 -1
  7. package/examples/{testing-layer.json → __data__/testing-layer.json} +1 -1
  8. package/examples/county-hsa-toggle.json +51993 -0
  9. package/examples/custom-map-layers.json +2 -2
  10. package/examples/default-county.json +6 -3
  11. package/examples/minimal-example.json +73 -0
  12. package/examples/private/annotation-bug.json +2 -2
  13. package/examples/private/css-issue.json +314 -0
  14. package/examples/private/region-breaking.json +1639 -0
  15. package/examples/private/test1.json +27247 -0
  16. package/package.json +4 -4
  17. package/src/CdcMapComponent.tsx +107 -14
  18. package/src/_stories/CdcMap.AltText.stories.tsx +122 -0
  19. package/src/_stories/CdcMap.Editor.ColumnsSectionTests.stories.tsx +600 -0
  20. package/src/_stories/CdcMap.Editor.DataTableSectionTests.stories.tsx +404 -0
  21. package/src/_stories/CdcMap.Editor.FiltersSectionTests.stories.tsx +229 -0
  22. package/src/_stories/CdcMap.Editor.GeneralSectionTests.stories.tsx +262 -0
  23. package/src/_stories/CdcMap.Editor.LegendSectionTests.stories.tsx +541 -0
  24. package/src/_stories/CdcMap.Editor.MultiCountryWorldMapTests.stories.tsx +359 -0
  25. package/src/_stories/CdcMap.Editor.PatternSettingsSectionTests.stories.tsx +516 -0
  26. package/src/_stories/CdcMap.Editor.SmallMultiplesSectionTests.stories.tsx +165 -0
  27. package/src/_stories/CdcMap.Editor.TextAnnotationsSectionTests.stories.tsx +145 -0
  28. package/src/_stories/CdcMap.Editor.TypeSectionTests.stories.tsx +312 -0
  29. package/src/_stories/CdcMap.Editor.VisualSectionTests.stories.tsx +359 -0
  30. package/src/_stories/CdcMap.Editor.ZoomControlsTests.stories.tsx +88 -0
  31. package/src/_stories/CdcMap.FocusVisibility.stories.tsx +87 -0
  32. package/src/_stories/CdcMap.HiddenMount.stories.tsx +69 -0
  33. package/src/_stories/CdcMap.ResetBehavior.stories.tsx +32 -0
  34. package/src/_stories/CdcMap.Zoom.stories.tsx +111 -0
  35. package/src/_stories/{CdcMap.stories.tsx → CdcMap.smoke.stories.tsx} +60 -0
  36. package/src/_stories/_mock/alt_text_metadata.json +65 -0
  37. package/src/_stories/_mock/legends/legend-tests.json +3 -3
  38. package/src/_stories/_mock/world-bubble-reset.json +138 -0
  39. package/src/_stories/_mock/world-data-zoom-filters.json +166 -0
  40. package/src/components/Annotation/AnnotationList.tsx +1 -1
  41. package/src/components/BubbleList.tsx +13 -0
  42. package/src/components/EditorPanel/components/EditorPanel.tsx +637 -382
  43. package/src/components/EditorPanel/components/HexShapeSettings.tsx +1 -1
  44. package/src/components/EditorPanel/components/Panels/Panel.Annotate.tsx +112 -117
  45. package/src/components/EditorPanel/components/Panels/Panel.PatternSettings.tsx +26 -13
  46. package/src/components/EditorPanel/components/editorPanel.styles.css +22 -2
  47. package/src/components/FilterControls.tsx +21 -0
  48. package/src/components/Legend/components/Legend.tsx +3 -3
  49. package/src/components/Legend/components/LegendItem.Hex.tsx +4 -2
  50. package/src/components/SmallMultiples/SmallMultiples.tsx +2 -2
  51. package/src/components/SmallMultiples/SynchronizedTooltip.tsx +1 -1
  52. package/src/components/UsaMap/components/UsaMap.County.tsx +309 -108
  53. package/src/components/UsaMap/components/UsaMap.Region.tsx +5 -2
  54. package/src/components/UsaMap/components/UsaMap.SingleState.tsx +33 -10
  55. package/src/components/UsaMap/components/UsaMap.State.tsx +10 -3
  56. package/src/components/UsaMap/data/cb_2019_us_county_20m.json +75817 -1
  57. package/src/components/UsaMap/data/hsa_fips_mapping.json +3144 -0
  58. package/src/components/WorldMap/WorldMap.tsx +37 -4
  59. package/src/components/WorldMap/data/world-topo.json +1 -1
  60. package/src/components/ZoomableGroup.tsx +23 -3
  61. package/src/components/filterControls.styles.css +6 -0
  62. package/src/data/initial-state.js +3 -0
  63. package/src/data/supported-counties.json +1 -1
  64. package/src/helpers/countyTerritories.ts +38 -0
  65. package/src/helpers/dataTableHelpers.ts +35 -6
  66. package/src/helpers/generateRuntimeFilters.ts +2 -1
  67. package/src/helpers/handleMapAriaLabels.ts +45 -30
  68. package/src/helpers/shouldAutoResetSingleStateZoom.ts +22 -0
  69. package/src/helpers/tests/countyTerritories.test.ts +87 -0
  70. package/src/helpers/tests/handleMapAriaLabels.test.ts +71 -0
  71. package/src/helpers/tests/shouldAutoResetSingleStateZoom.test.ts +71 -0
  72. package/src/hooks/useApplyTooltipsToGeo.tsx +7 -4
  73. package/src/hooks/useGeoClickHandler.ts +13 -1
  74. package/src/hooks/useMapLayers.tsx +1 -1
  75. package/src/hooks/useStateZoom.tsx +39 -20
  76. package/src/hooks/useTooltip.test.tsx +2 -16
  77. package/src/hooks/useTooltip.ts +18 -7
  78. package/src/index.jsx +5 -2
  79. package/src/scss/main.scss +6 -21
  80. package/src/scss/map.scss +20 -0
  81. package/src/store/map.actions.ts +5 -2
  82. package/src/store/map.reducer.ts +12 -3
  83. package/src/test/CdcMap.test.jsx +24 -0
  84. package/src/types/MapConfig.ts +11 -0
  85. package/src/types/MapContext.ts +6 -1
  86. package/topojson-updater/README.txt +1 -1
  87. package/dist/cdcmap-vr9HZwRt.es.js +0 -6
  88. package/examples/__data__/city-state-data.json +0 -668
  89. package/examples/city-state.json +0 -434
  90. package/examples/default-world-data.json +0 -1450
  91. package/examples/new-cities.json +0 -656
  92. package/src/_stories/CdcMap.Editor.stories.tsx +0 -3648
  93. package/topojson-updater/package-lock.json +0 -223
  94. /package/src/_stories/{CdcMap.ColumnWrap.stories.tsx → CdcMap.ColumnWrap.smoke.stories.tsx} +0 -0
  95. /package/src/_stories/{CdcMap.Defaults.stories.tsx → CdcMap.Defaults.smoke.stories.tsx} +0 -0
  96. /package/src/_stories/{CdcMap.DistrictOfColumbia.stories.tsx → CdcMap.DistrictOfColumbia.smoke.stories.tsx} +0 -0
  97. /package/src/_stories/{CdcMap.Filters.stories.tsx → CdcMap.Filters.smoke.stories.tsx} +0 -0
  98. /package/src/_stories/{CdcMap.Legend.Gradient.stories.tsx → CdcMap.Legend.Gradient.smoke.stories.tsx} +0 -0
  99. /package/src/_stories/{CdcMap.Legend.stories.tsx → CdcMap.Legend.smoke.stories.tsx} +0 -0
  100. /package/src/_stories/{CdcMap.Patterns.stories.tsx → CdcMap.Patterns.smoke.stories.tsx} +0 -0
  101. /package/src/_stories/{CdcMap.SmallMultiples.stories.tsx → CdcMap.SmallMultiples.smoke.stories.tsx} +0 -0
  102. /package/src/_stories/{CdcMap.Table.stories.tsx → CdcMap.Table.smoke.stories.tsx} +0 -0
  103. /package/src/_stories/{CdcMap.ZeroColor.stories.tsx → CdcMap.ZeroColor.smoke.stories.tsx} +0 -0
  104. /package/src/_stories/{GoogleMap.stories.tsx → GoogleMap.smoke.stories.tsx} +0 -0
  105. /package/src/_stories/{UsaMap.NoData.stories.tsx → UsaMap.NoData.smoke.stories.tsx} +0 -0
@@ -0,0 +1,1639 @@
1
+ {
2
+ "annotations": [],
3
+ "general": {
4
+ "navigationTarget": "_self",
5
+ "noDataMessage": "No State Selected",
6
+ "annotationDropdownText": "Annotations",
7
+ "geoBorderColor": "darkGray",
8
+ "headerColor": "theme-blue",
9
+ "title": "",
10
+ "showTitle": true,
11
+ "titleStyle": "small",
12
+ "showSidebar": "hidden",
13
+ "showDownloadMediaButton": false,
14
+ "displayAsHex": false,
15
+ "displayStateLabels": true,
16
+ "territoriesAlwaysShow": false,
17
+ "language": "en",
18
+ "geoType": "us",
19
+ "geoLabelOverride": "",
20
+ "hasRegions": false,
21
+ "fullBorder": false,
22
+ "type": "data",
23
+ "convertFipsCodes": true,
24
+ "palette": {
25
+ "isReversed": false,
26
+ "name": "sequential_blue",
27
+ "version": "1.0",
28
+ "backups": [
29
+ {
30
+ "name": "__​undefined__",
31
+ "version": "1.0",
32
+ "isReversed": "__​undefined__"
33
+ },
34
+ {
35
+ "name": "sequential_blue",
36
+ "version": "1.0",
37
+ "isReversed": false
38
+ }
39
+ ]
40
+ },
41
+ "allowMapZoom": true,
42
+ "hideGeoColumnInTooltip": false,
43
+ "hidePrimaryColumnInTooltip": false,
44
+ "hideUnselectedStates": true,
45
+ "statesPicked": [],
46
+ "expandDataTable": false
47
+ },
48
+ "type": "map",
49
+ "columns": {
50
+ "geo": {
51
+ "name": "Location",
52
+ "label": "Location",
53
+ "tooltip": false,
54
+ "dataTable": true,
55
+ "displayColumn": ""
56
+ },
57
+ "primary": {
58
+ "dataTable": true,
59
+ "tooltip": true,
60
+ "prefix": "",
61
+ "suffix": "",
62
+ "name": "Region",
63
+ "label": "Region",
64
+ "roundToPlace": 0
65
+ },
66
+ "navigate": {
67
+ "name": ""
68
+ },
69
+ "latitude": {
70
+ "name": ""
71
+ },
72
+ "longitude": {
73
+ "name": ""
74
+ }
75
+ },
76
+ "legend": {
77
+ "descriptions": {},
78
+ "specialClasses": [],
79
+ "unified": false,
80
+ "singleColumn": false,
81
+ "singleRow": false,
82
+ "verticalSorted": false,
83
+ "showSpecialClassesLast": false,
84
+ "dynamicDescription": false,
85
+ "type": "category",
86
+ "numberOfItems": 5,
87
+ "position": "top",
88
+ "title": "",
89
+ "style": "gradient",
90
+ "subStyle": "linear blocks",
91
+ "tickRotation": "",
92
+ "singleColumnLegend": false,
93
+ "hideBorder": true,
94
+ "groupBy": ""
95
+ },
96
+ "filters": [],
97
+ "table": {
98
+ "wrapColumns": false,
99
+ "label": "Data Table",
100
+ "expanded": false,
101
+ "limitHeight": false,
102
+ "height": "",
103
+ "caption": "",
104
+ "showDownloadUrl": false,
105
+ "showDataTableLink": true,
106
+ "showDownloadLinkBelow": true,
107
+ "showFullGeoNameInCSV": false,
108
+ "forceDisplay": true,
109
+ "download": true,
110
+ "indexLabel": "",
111
+ "cellMinWidth": "0",
112
+ "collapsible": true
113
+ },
114
+ "tooltips": {
115
+ "appearanceType": "hover",
116
+ "linkLabel": "Learn More",
117
+ "opacity": 90
118
+ },
119
+ "runtime": {
120
+ "editorErrorMessage": []
121
+ },
122
+ "visual": {
123
+ "border": false,
124
+ "borderColorTheme": false,
125
+ "accent": false,
126
+ "background": false,
127
+ "hideBackgroundColor": false,
128
+ "tp5Treatment": false,
129
+ "tp5Background": false,
130
+ "minBubbleSize": 1,
131
+ "maxBubbleSize": 20,
132
+ "extraBubbleBorder": false,
133
+ "cityStyle": "circle",
134
+ "cityStyleLabel": "",
135
+ "showBubbleZeros": false,
136
+ "additionalCityStyles": [],
137
+ "geoCodeCircleSize": 8
138
+ },
139
+ "mapPosition": {
140
+ "coordinates": [
141
+ 0,
142
+ 30
143
+ ],
144
+ "zoom": 1
145
+ },
146
+ "map": {
147
+ "layers": [],
148
+ "patterns": []
149
+ },
150
+ "hexMap": {
151
+ "type": "",
152
+ "shapeGroups": [
153
+ {
154
+ "legendTitle": "",
155
+ "legendDescription": "",
156
+ "items": [
157
+ {
158
+ "key": "",
159
+ "shape": "Arrow Up",
160
+ "column": "",
161
+ "operator": "=",
162
+ "value": ""
163
+ }
164
+ ]
165
+ }
166
+ ]
167
+ },
168
+ "filterBehavior": "Filter Change",
169
+ "filterIntro": "",
170
+ "smallMultiples": {
171
+ "mode": "",
172
+ "tileColumn": "",
173
+ "tilesPerRowDesktop": 2,
174
+ "tilesPerRowMobile": 1,
175
+ "tileOrderType": "asc",
176
+ "tileOrder": [],
177
+ "tileTitles": {},
178
+ "synchronizedTooltips": true
179
+ },
180
+ "markupVariables": [],
181
+ "enableMarkupVariables": false,
182
+ "errors": [],
183
+ "currentViewport": "lg",
184
+ "id": 19,
185
+ "category": "Maps",
186
+ "label": "United States (State- or County-Level)",
187
+ "subType": "us",
188
+ "icon": {
189
+ "type": {},
190
+ "key": null,
191
+ "ref": null,
192
+ "props": {},
193
+ "_owner": null
194
+ },
195
+ "content": "Present a U.S. choropleth map at state or county level.",
196
+ "position": "right",
197
+ "activeVizButtonID": 19,
198
+ "dataMetadata": {},
199
+ "dataFileName": "./DATA for CRAIG.csv",
200
+ "dataFileSourceType": "file",
201
+ "dataDescription": {
202
+ "horizontal": false,
203
+ "series": false
204
+ },
205
+ "version": "4.26.3",
206
+ "migrations": {
207
+ "addColorMigration": true
208
+ },
209
+ "locale": "en-US",
210
+ "data": [
211
+ {
212
+ "Location": "AL",
213
+ "Region": "Southeast",
214
+ "Training Leads": "",
215
+ "Latitude": "",
216
+ "Longitude": "",
217
+ "URL": "/advanced-molecular-detection/php/investments/alabama.html"
218
+ },
219
+ {
220
+ "Location": "AK",
221
+ "Region": "West",
222
+ "Training Leads": "",
223
+ "Latitude": "",
224
+ "Longitude": "",
225
+ "URL": "/advanced-molecular-detection/php/investments/alaska.html"
226
+ },
227
+ {
228
+ "Location": "AS",
229
+ "Region": "West",
230
+ "Training Leads": "",
231
+ "Latitude": "",
232
+ "Longitude": "",
233
+ "URL": "/advanced-molecular-detection/php/investments/american-samoa.html"
234
+ },
235
+ {
236
+ "Location": "AZ",
237
+ "Region": "Mountain",
238
+ "Training Leads": "",
239
+ "Latitude": "",
240
+ "Longitude": "",
241
+ "URL": "/advanced-molecular-detection/php/investments/arizona.html"
242
+ },
243
+ {
244
+ "Location": "AR",
245
+ "Region": "Central",
246
+ "Training Leads": "",
247
+ "Latitude": "",
248
+ "Longitude": "",
249
+ "URL": "/advanced-molecular-detection/php/investments/arkansas.html"
250
+ },
251
+ {
252
+ "Location": "CA",
253
+ "Region": "West",
254
+ "Training Leads": "",
255
+ "Latitude": "",
256
+ "Longitude": "",
257
+ "URL": "/advanced-molecular-detection/php/investments/california.html"
258
+ },
259
+ {
260
+ "Location": "CO",
261
+ "Region": "Mountain",
262
+ "Training Leads": "",
263
+ "Latitude": "",
264
+ "Longitude": "",
265
+ "URL": "/advanced-molecular-detection/php/investments/colorado.html"
266
+ },
267
+ {
268
+ "Location": "CT",
269
+ "Region": "Northeast",
270
+ "Training Leads": "",
271
+ "Latitude": "",
272
+ "Longitude": "",
273
+ "URL": "/advanced-molecular-detection/php/investments/connecticut.html"
274
+ },
275
+ {
276
+ "Location": "DE",
277
+ "Region": "Mid-Atlantic",
278
+ "Training Leads": "",
279
+ "Latitude": "",
280
+ "Longitude": "",
281
+ "URL": "/advanced-molecular-detection/php/investments/delaware.html"
282
+ },
283
+ {
284
+ "Location": "FL",
285
+ "Region": "Southeast",
286
+ "Training Leads": "",
287
+ "Latitude": "",
288
+ "Longitude": "",
289
+ "URL": "/advanced-molecular-detection/php/investments/florida.html"
290
+ },
291
+ {
292
+ "Location": "GA",
293
+ "Region": "Southeast",
294
+ "Training Leads": "",
295
+ "Latitude": "",
296
+ "Longitude": "",
297
+ "URL": "/advanced-molecular-detection/php/investments/georgia.html"
298
+ },
299
+ {
300
+ "Location": "GU",
301
+ "Region": "West",
302
+ "Training Leads": "",
303
+ "Latitude": "",
304
+ "Longitude": "",
305
+ "URL": "/advanced-molecular-detection/php/investments/guam.html"
306
+ },
307
+ {
308
+ "Location": "HI",
309
+ "Region": "West",
310
+ "Training Leads": "",
311
+ "Latitude": "",
312
+ "Longitude": "",
313
+ "URL": "/advanced-molecular-detection/php/investments/hawaii.html"
314
+ },
315
+ {
316
+ "Location": "ID",
317
+ "Region": "Mountain",
318
+ "Training Leads": "",
319
+ "Latitude": "",
320
+ "Longitude": "",
321
+ "URL": "/advanced-molecular-detection/php/investments/idaho.html"
322
+ },
323
+ {
324
+ "Location": "IL",
325
+ "Region": "Midwest",
326
+ "Training Leads": "",
327
+ "Latitude": "",
328
+ "Longitude": "",
329
+ "URL": "/advanced-molecular-detection/php/investments/illinois.html"
330
+ },
331
+ {
332
+ "Location": "IN",
333
+ "Region": "Midwest",
334
+ "Training Leads": "",
335
+ "Latitude": "",
336
+ "Longitude": "",
337
+ "URL": "/advanced-molecular-detection/php/investments/indiana.html"
338
+ },
339
+ {
340
+ "Location": "IA",
341
+ "Region": "Central",
342
+ "Training Leads": "",
343
+ "Latitude": "",
344
+ "Longitude": "",
345
+ "URL": "/advanced-molecular-detection/php/investments/iowa.html"
346
+ },
347
+ {
348
+ "Location": "KS",
349
+ "Region": "Central",
350
+ "Training Leads": "",
351
+ "Latitude": "",
352
+ "Longitude": "",
353
+ "URL": "/advanced-molecular-detection/php/investments/kansas.html"
354
+ },
355
+ {
356
+ "Location": "KY",
357
+ "Region": "Midwest",
358
+ "Training Leads": "",
359
+ "Latitude": "",
360
+ "Longitude": "",
361
+ "URL": "/advanced-molecular-detection/php/investments/kentucky.html"
362
+ },
363
+ {
364
+ "Location": "LA",
365
+ "Region": "Southeast",
366
+ "Training Leads": "",
367
+ "Latitude": "",
368
+ "Longitude": "",
369
+ "URL": "/advanced-molecular-detection/php/investments/louisiana.html"
370
+ },
371
+ {
372
+ "Location": "ME",
373
+ "Region": "Northeast",
374
+ "Training Leads": "",
375
+ "Latitude": "",
376
+ "Longitude": "",
377
+ "URL": "/advanced-molecular-detection/php/investments/maine.html"
378
+ },
379
+ {
380
+ "Location": "MH",
381
+ "Region": "West",
382
+ "Training Leads": "",
383
+ "Latitude": "",
384
+ "Longitude": "",
385
+ "URL": "/advanced-molecular-detection/php/investments/marshall-islands.html"
386
+ },
387
+ {
388
+ "Location": "MD",
389
+ "Region": "Mid-Atlantic",
390
+ "Training Leads": "",
391
+ "Latitude": "",
392
+ "Longitude": "",
393
+ "URL": "/advanced-molecular-detection/php/investments/maryland.html"
394
+ },
395
+ {
396
+ "Location": "MA",
397
+ "Region": "Northeast",
398
+ "Training Leads": "",
399
+ "Latitude": "",
400
+ "Longitude": "",
401
+ "URL": "/advanced-molecular-detection/php/investments/massachusetts.html"
402
+ },
403
+ {
404
+ "Location": "MI",
405
+ "Region": "Midwest",
406
+ "Training Leads": "",
407
+ "Latitude": "",
408
+ "Longitude": "",
409
+ "URL": "/advanced-molecular-detection/php/investments/michigan.html"
410
+ },
411
+ {
412
+ "Location": "FM",
413
+ "Region": "West",
414
+ "Training Leads": "",
415
+ "Latitude": "",
416
+ "Longitude": "",
417
+ "URL": "/advanced-molecular-detection/php/investments/micronesia.html"
418
+ },
419
+ {
420
+ "Location": "MN",
421
+ "Region": "Central",
422
+ "Training Leads": "",
423
+ "Latitude": "",
424
+ "Longitude": "",
425
+ "URL": "/advanced-molecular-detection/php/investments/minnesota.html"
426
+ },
427
+ {
428
+ "Location": "MS",
429
+ "Region": "Southeast",
430
+ "Training Leads": "",
431
+ "Latitude": "",
432
+ "Longitude": "",
433
+ "URL": "/advanced-molecular-detection/php/investments/mississippi.html"
434
+ },
435
+ {
436
+ "Location": "MO",
437
+ "Region": "Central",
438
+ "Training Leads": "",
439
+ "Latitude": "",
440
+ "Longitude": "",
441
+ "URL": "/advanced-molecular-detection/php/investments/missouri.html"
442
+ },
443
+ {
444
+ "Location": "MT",
445
+ "Region": "Mountain",
446
+ "Training Leads": "",
447
+ "Latitude": "",
448
+ "Longitude": "",
449
+ "URL": "/advanced-molecular-detection/php/investments/montana.html"
450
+ },
451
+ {
452
+ "Location": "NE",
453
+ "Region": "Central",
454
+ "Training Leads": "",
455
+ "Latitude": "",
456
+ "Longitude": "",
457
+ "URL": "/advanced-molecular-detection/php/investments/nebraska.html"
458
+ },
459
+ {
460
+ "Location": "NV",
461
+ "Region": "West",
462
+ "Training Leads": "",
463
+ "Latitude": "",
464
+ "Longitude": "",
465
+ "URL": "/advanced-molecular-detection/php/investments/nevada.html"
466
+ },
467
+ {
468
+ "Location": "NH",
469
+ "Region": "Northeast",
470
+ "Training Leads": "",
471
+ "Latitude": "",
472
+ "Longitude": "",
473
+ "URL": "/advanced-molecular-detection/php/investments/new-hampshire.html"
474
+ },
475
+ {
476
+ "Location": "NJ",
477
+ "Region": "Northeast",
478
+ "Training Leads": "",
479
+ "Latitude": "",
480
+ "Longitude": "",
481
+ "URL": "/advanced-molecular-detection/php/investments/new-jersey.html"
482
+ },
483
+ {
484
+ "Location": "NM",
485
+ "Region": "Mountain",
486
+ "Training Leads": "",
487
+ "Latitude": "",
488
+ "Longitude": "",
489
+ "URL": "/advanced-molecular-detection/php/investments/new-mexico.html"
490
+ },
491
+ {
492
+ "Location": "NY",
493
+ "Region": "Northeast",
494
+ "Training Leads": "",
495
+ "Latitude": "",
496
+ "Longitude": "",
497
+ "URL": "/advanced-molecular-detection/php/investments/new-york.html"
498
+ },
499
+ {
500
+ "Location": "NC",
501
+ "Region": "Mid-Atlantic",
502
+ "Training Leads": "",
503
+ "Latitude": "",
504
+ "Longitude": "",
505
+ "URL": "/advanced-molecular-detection/php/investments/north-carolina.html"
506
+ },
507
+ {
508
+ "Location": "ND",
509
+ "Region": "Central",
510
+ "Training Leads": "",
511
+ "Latitude": "",
512
+ "Longitude": "",
513
+ "URL": "/advanced-molecular-detection/php/investments/north-dakota.html"
514
+ },
515
+ {
516
+ "Location": "MP",
517
+ "Region": "West",
518
+ "Training Leads": "",
519
+ "Latitude": "",
520
+ "Longitude": "",
521
+ "URL": "/advanced-molecular-detection/php/investments/northern-marianas.html"
522
+ },
523
+ {
524
+ "Location": "OH",
525
+ "Region": "Midwest",
526
+ "Training Leads": "",
527
+ "Latitude": "",
528
+ "Longitude": "",
529
+ "URL": "/advanced-molecular-detection/php/investments/ohio.html"
530
+ },
531
+ {
532
+ "Location": "OK",
533
+ "Region": "Central",
534
+ "Training Leads": "",
535
+ "Latitude": "",
536
+ "Longitude": "",
537
+ "URL": "/advanced-molecular-detection/php/investments/oklahoma.html"
538
+ },
539
+ {
540
+ "Location": "OR",
541
+ "Region": "West",
542
+ "Training Leads": "",
543
+ "Latitude": "",
544
+ "Longitude": "",
545
+ "URL": "/advanced-molecular-detection/php/investments/oregon.html"
546
+ },
547
+ {
548
+ "Location": "PW",
549
+ "Region": "West",
550
+ "Training Leads": "",
551
+ "Latitude": "",
552
+ "Longitude": "",
553
+ "URL": "/advanced-molecular-detection/php/investments/palau.html"
554
+ },
555
+ {
556
+ "Location": "PA",
557
+ "Region": "Mid-Atlantic",
558
+ "Training Leads": "",
559
+ "Latitude": "",
560
+ "Longitude": "",
561
+ "URL": "/advanced-molecular-detection/php/investments/pennsylvania.html"
562
+ },
563
+ {
564
+ "Location": "PR",
565
+ "Region": "Southeast",
566
+ "Training Leads": "",
567
+ "Latitude": "",
568
+ "Longitude": "",
569
+ "URL": "/advanced-molecular-detection/php/investments/puerto-rico.html"
570
+ },
571
+ {
572
+ "Location": "RI",
573
+ "Region": "Northeast",
574
+ "Training Leads": "",
575
+ "Latitude": "",
576
+ "Longitude": "",
577
+ "URL": "/advanced-molecular-detection/php/investments/rhode-island.html"
578
+ },
579
+ {
580
+ "Location": "SC",
581
+ "Region": "Mid-Atlantic",
582
+ "Training Leads": "",
583
+ "Latitude": "",
584
+ "Longitude": "",
585
+ "URL": "/advanced-molecular-detection/php/investments/south-carolina.html"
586
+ },
587
+ {
588
+ "Location": "SD",
589
+ "Region": "Central",
590
+ "Training Leads": "",
591
+ "Latitude": "",
592
+ "Longitude": "",
593
+ "URL": "/advanced-molecular-detection/php/investments/south-dakota.html"
594
+ },
595
+ {
596
+ "Location": "TN",
597
+ "Region": "Southeast",
598
+ "Training Leads": "",
599
+ "Latitude": "",
600
+ "Longitude": "",
601
+ "URL": "/advanced-molecular-detection/php/investments/tennessee.html"
602
+ },
603
+ {
604
+ "Location": "TX",
605
+ "Region": "Mountain",
606
+ "Training Leads": "",
607
+ "Latitude": "",
608
+ "Longitude": "",
609
+ "URL": "/advanced-molecular-detection/php/investments/texas.html"
610
+ },
611
+ {
612
+ "Location": "UT",
613
+ "Region": "Mountain",
614
+ "Training Leads": "",
615
+ "Latitude": "",
616
+ "Longitude": "",
617
+ "URL": "/advanced-molecular-detection/php/investments/utah.html"
618
+ },
619
+ {
620
+ "Location": "VT",
621
+ "Region": "Northeast",
622
+ "Training Leads": "",
623
+ "Latitude": "",
624
+ "Longitude": "",
625
+ "URL": "/advanced-molecular-detection/php/investments/vermont.html"
626
+ },
627
+ {
628
+ "Location": "VI",
629
+ "Region": "Southeast",
630
+ "Training Leads": "",
631
+ "Latitude": "",
632
+ "Longitude": "",
633
+ "URL": "/advanced-molecular-detection/php/investments/virgin-islands.html"
634
+ },
635
+ {
636
+ "Location": "VA",
637
+ "Region": "Mid-Atlantic",
638
+ "Training Leads": "",
639
+ "Latitude": "",
640
+ "Longitude": "",
641
+ "URL": "/advanced-molecular-detection/php/investments/virginia.html"
642
+ },
643
+ {
644
+ "Location": "WA",
645
+ "Region": "West",
646
+ "Training Leads": "",
647
+ "Latitude": "",
648
+ "Longitude": "",
649
+ "URL": "/advanced-molecular-detection/php/investments/washington.html"
650
+ },
651
+ {
652
+ "Location": "WV",
653
+ "Region": "Mid-Atlantic",
654
+ "Training Leads": "",
655
+ "Latitude": "",
656
+ "Longitude": "",
657
+ "URL": "/advanced-molecular-detection/php/investments/west-virginia.html"
658
+ },
659
+ {
660
+ "Location": "WI",
661
+ "Region": "Midwest",
662
+ "Training Leads": "",
663
+ "Latitude": "",
664
+ "Longitude": "",
665
+ "URL": "/advanced-molecular-detection/php/investments/wisconsin.html"
666
+ },
667
+ {
668
+ "Location": "WY",
669
+ "Region": "Mountain",
670
+ "Training Leads": "",
671
+ "Latitude": "",
672
+ "Longitude": "",
673
+ "URL": "/advanced-molecular-detection/php/investments/wyoming.html"
674
+ },
675
+ {
676
+ "Location": "CO",
677
+ "Region": "Mountain",
678
+ "Training Leads": "",
679
+ "Latitude": "",
680
+ "Longitude": "",
681
+ "URL": ""
682
+ },
683
+ {
684
+ "Location": "GA",
685
+ "Region": "Southeast",
686
+ "Training Leads": "",
687
+ "Latitude": "",
688
+ "Longitude": "",
689
+ "URL": ""
690
+ },
691
+ {
692
+ "Location": "FL",
693
+ "Region": "Southeast",
694
+ "Training Leads": "",
695
+ "Latitude": "",
696
+ "Longitude": "",
697
+ "URL": ""
698
+ },
699
+ {
700
+ "Location": "MA",
701
+ "Region": "Northeast",
702
+ "Training Leads": "",
703
+ "Latitude": "",
704
+ "Longitude": "",
705
+ "URL": ""
706
+ },
707
+ {
708
+ "Location": "MI",
709
+ "Region": "Midwest",
710
+ "Training Leads": "",
711
+ "Latitude": "",
712
+ "Longitude": "",
713
+ "URL": ""
714
+ },
715
+ {
716
+ "Location": "MN",
717
+ "Region": "Central",
718
+ "Training Leads": "",
719
+ "Latitude": "",
720
+ "Longitude": "",
721
+ "URL": ""
722
+ },
723
+ {
724
+ "Location": "VA",
725
+ "Region": "Mid-Atlantic",
726
+ "Training Leads": "",
727
+ "Latitude": "",
728
+ "Longitude": "",
729
+ "URL": ""
730
+ },
731
+ {
732
+ "Location": "WA",
733
+ "Region": "West",
734
+ "Training Leads": "",
735
+ "Latitude": "",
736
+ "Longitude": "",
737
+ "URL": ""
738
+ },
739
+ {
740
+ "Location": "UT",
741
+ "Region": "Mountain",
742
+ "Training Leads": "",
743
+ "Latitude": "",
744
+ "Longitude": "",
745
+ "URL": ""
746
+ },
747
+ {
748
+ "Location": "MA",
749
+ "Region": "Northeast",
750
+ "Training Leads": "",
751
+ "Latitude": "",
752
+ "Longitude": "",
753
+ "URL": ""
754
+ },
755
+ {
756
+ "Location": "MI",
757
+ "Region": "Midwest",
758
+ "Training Leads": "",
759
+ "Latitude": "",
760
+ "Longitude": "",
761
+ "URL": ""
762
+ },
763
+ {
764
+ "Location": "MN",
765
+ "Region": "Central",
766
+ "Training Leads": "",
767
+ "Latitude": "",
768
+ "Longitude": "",
769
+ "URL": ""
770
+ },
771
+ {
772
+ "Location": "UT",
773
+ "Region": "Mountain",
774
+ "Training Leads": "",
775
+ "Latitude": "",
776
+ "Longitude": "",
777
+ "URL": ""
778
+ },
779
+ {
780
+ "Location": "VA",
781
+ "Region": "Mid-Atlantic",
782
+ "Training Leads": "",
783
+ "Latitude": "",
784
+ "Longitude": "",
785
+ "URL": ""
786
+ },
787
+ {
788
+ "Location": "WI",
789
+ "Region": "Midwest",
790
+ "Training Leads": "",
791
+ "Latitude": "",
792
+ "Longitude": "",
793
+ "URL": ""
794
+ },
795
+ {
796
+ "Location": "NV",
797
+ "Region": "West",
798
+ "Training Leads": "",
799
+ "Latitude": "",
800
+ "Longitude": "",
801
+ "URL": ""
802
+ },
803
+ {
804
+ "Location": "WA",
805
+ "Region": "West",
806
+ "Training Leads": "",
807
+ "Latitude": "",
808
+ "Longitude": "",
809
+ "URL": ""
810
+ },
811
+ {
812
+ "Location": "FL",
813
+ "Region": "Southeast",
814
+ "Training Leads": "",
815
+ "Latitude": "",
816
+ "Longitude": "",
817
+ "URL": ""
818
+ },
819
+ {
820
+ "Location": "Atlanta",
821
+ "Region": "Location provides regional support",
822
+ "Training Leads": "AMD Training Lead",
823
+ "Latitude": "",
824
+ "Longitude": "",
825
+ "URL": ""
826
+ },
827
+ {
828
+ "Location": "Jacksonville",
829
+ "Region": "Location provides regional support",
830
+ "Training Leads": "AMD Training Lead and Bioinformatics Regional Resource (BRR)",
831
+ "Latitude": "30.32597",
832
+ "Longitude": "-81.656761",
833
+ "URL": ""
834
+ },
835
+ {
836
+ "Location": "Denver",
837
+ "Region": "Location provides regional support",
838
+ "Training Leads": "AMD Training Lead and Bioinformatics Regional Resource (BRR)",
839
+ "Latitude": "",
840
+ "Longitude": "",
841
+ "URL": ""
842
+ },
843
+ {
844
+ "Location": "Olympia",
845
+ "Region": "Location provides regional support",
846
+ "Training Leads": "AMD Training Lead and Bioinformatics Regional Resource (BRR)",
847
+ "Latitude": "47.037872",
848
+ "Longitude": "-122.900696",
849
+ "URL": ""
850
+ },
851
+ {
852
+ "Location": "Saint Paul",
853
+ "Region": "Location provides regional support",
854
+ "Training Leads": "AMD Training Lead and Bioinformatics Regional Resource (BRR)",
855
+ "Latitude": "",
856
+ "Longitude": "",
857
+ "URL": ""
858
+ },
859
+ {
860
+ "Location": "Lansing",
861
+ "Region": "Location provides regional support",
862
+ "Training Leads": "AMD Training Lead and Bioinformatics Regional Resource (BRR)",
863
+ "Latitude": "42.732536",
864
+ "Longitude": "-84.555534",
865
+ "URL": ""
866
+ },
867
+ {
868
+ "Location": "Taylorville",
869
+ "Region": "Location provides regional support",
870
+ "Training Leads": "AMD Training Lead and Bioinformatics Regional Resource (BRR)",
871
+ "Latitude": "40.653061",
872
+ "Longitude": "-111.955139",
873
+ "URL": ""
874
+ },
875
+ {
876
+ "Location": "Richmond, VA",
877
+ "Region": "Location provides regional support",
878
+ "Training Leads": "AMD Training Lead and Bioinformatics Regional Resource (BRR)",
879
+ "Latitude": "37.54068",
880
+ "Longitude": "-77.43367",
881
+ "URL": ""
882
+ },
883
+ {
884
+ "Location": "Raleigh",
885
+ "Region": "Location provides regional support",
886
+ "Training Leads": "AMD Training Lead",
887
+ "Latitude": "",
888
+ "Longitude": "",
889
+ "URL": ""
890
+ },
891
+ {
892
+ "Location": "Jamaica Plains",
893
+ "Region": "Location provides regional support",
894
+ "Training Leads": "AMD Training Lead and Bioinformatics Regional Resource (BRR)",
895
+ "Latitude": "",
896
+ "Longitude": "",
897
+ "URL": ""
898
+ },
899
+ {
900
+ "Location": "Madison",
901
+ "Region": "Location provides regional support",
902
+ "Training Leads": "AMD Training Lead and Bioinformatics Regional Resource (BRR)",
903
+ "Latitude": "",
904
+ "Longitude": "",
905
+ "URL": ""
906
+ },
907
+ {
908
+ "Location": "Albany",
909
+ "Region": "Location provides regional support",
910
+ "Training Leads": "Bioinformatics Regional Resource (BRR)",
911
+ "Latitude": "42.65155",
912
+ "Longitude": "-73.75521",
913
+ "URL": ""
914
+ },
915
+ {
916
+ "Location": "Reno",
917
+ "Region": "Location provides regional support",
918
+ "Training Leads": "Bioinformatics Regional Resource (BRR)",
919
+ "Latitude": "",
920
+ "Longitude": "",
921
+ "URL": ""
922
+ }
923
+ ],
924
+ "formattedData": [
925
+ {
926
+ "Location": "AL",
927
+ "Region": "Southeast",
928
+ "Training Leads": "",
929
+ "Latitude": "",
930
+ "Longitude": "",
931
+ "URL": "/advanced-molecular-detection/php/investments/alabama.html"
932
+ },
933
+ {
934
+ "Location": "AK",
935
+ "Region": "West",
936
+ "Training Leads": "",
937
+ "Latitude": "",
938
+ "Longitude": "",
939
+ "URL": "/advanced-molecular-detection/php/investments/alaska.html"
940
+ },
941
+ {
942
+ "Location": "AS",
943
+ "Region": "West",
944
+ "Training Leads": "",
945
+ "Latitude": "",
946
+ "Longitude": "",
947
+ "URL": "/advanced-molecular-detection/php/investments/american-samoa.html"
948
+ },
949
+ {
950
+ "Location": "AZ",
951
+ "Region": "Mountain",
952
+ "Training Leads": "",
953
+ "Latitude": "",
954
+ "Longitude": "",
955
+ "URL": "/advanced-molecular-detection/php/investments/arizona.html"
956
+ },
957
+ {
958
+ "Location": "AR",
959
+ "Region": "Central",
960
+ "Training Leads": "",
961
+ "Latitude": "",
962
+ "Longitude": "",
963
+ "URL": "/advanced-molecular-detection/php/investments/arkansas.html"
964
+ },
965
+ {
966
+ "Location": "CA",
967
+ "Region": "West",
968
+ "Training Leads": "",
969
+ "Latitude": "",
970
+ "Longitude": "",
971
+ "URL": "/advanced-molecular-detection/php/investments/california.html"
972
+ },
973
+ {
974
+ "Location": "CO",
975
+ "Region": "Mountain",
976
+ "Training Leads": "",
977
+ "Latitude": "",
978
+ "Longitude": "",
979
+ "URL": "/advanced-molecular-detection/php/investments/colorado.html"
980
+ },
981
+ {
982
+ "Location": "CT",
983
+ "Region": "Northeast",
984
+ "Training Leads": "",
985
+ "Latitude": "",
986
+ "Longitude": "",
987
+ "URL": "/advanced-molecular-detection/php/investments/connecticut.html"
988
+ },
989
+ {
990
+ "Location": "DE",
991
+ "Region": "Mid-Atlantic",
992
+ "Training Leads": "",
993
+ "Latitude": "",
994
+ "Longitude": "",
995
+ "URL": "/advanced-molecular-detection/php/investments/delaware.html"
996
+ },
997
+ {
998
+ "Location": "FL",
999
+ "Region": "Southeast",
1000
+ "Training Leads": "",
1001
+ "Latitude": "",
1002
+ "Longitude": "",
1003
+ "URL": "/advanced-molecular-detection/php/investments/florida.html"
1004
+ },
1005
+ {
1006
+ "Location": "GA",
1007
+ "Region": "Southeast",
1008
+ "Training Leads": "",
1009
+ "Latitude": "",
1010
+ "Longitude": "",
1011
+ "URL": "/advanced-molecular-detection/php/investments/georgia.html"
1012
+ },
1013
+ {
1014
+ "Location": "GU",
1015
+ "Region": "West",
1016
+ "Training Leads": "",
1017
+ "Latitude": "",
1018
+ "Longitude": "",
1019
+ "URL": "/advanced-molecular-detection/php/investments/guam.html"
1020
+ },
1021
+ {
1022
+ "Location": "HI",
1023
+ "Region": "West",
1024
+ "Training Leads": "",
1025
+ "Latitude": "",
1026
+ "Longitude": "",
1027
+ "URL": "/advanced-molecular-detection/php/investments/hawaii.html"
1028
+ },
1029
+ {
1030
+ "Location": "ID",
1031
+ "Region": "Mountain",
1032
+ "Training Leads": "",
1033
+ "Latitude": "",
1034
+ "Longitude": "",
1035
+ "URL": "/advanced-molecular-detection/php/investments/idaho.html"
1036
+ },
1037
+ {
1038
+ "Location": "IL",
1039
+ "Region": "Midwest",
1040
+ "Training Leads": "",
1041
+ "Latitude": "",
1042
+ "Longitude": "",
1043
+ "URL": "/advanced-molecular-detection/php/investments/illinois.html"
1044
+ },
1045
+ {
1046
+ "Location": "IN",
1047
+ "Region": "Midwest",
1048
+ "Training Leads": "",
1049
+ "Latitude": "",
1050
+ "Longitude": "",
1051
+ "URL": "/advanced-molecular-detection/php/investments/indiana.html"
1052
+ },
1053
+ {
1054
+ "Location": "IA",
1055
+ "Region": "Central",
1056
+ "Training Leads": "",
1057
+ "Latitude": "",
1058
+ "Longitude": "",
1059
+ "URL": "/advanced-molecular-detection/php/investments/iowa.html"
1060
+ },
1061
+ {
1062
+ "Location": "KS",
1063
+ "Region": "Central",
1064
+ "Training Leads": "",
1065
+ "Latitude": "",
1066
+ "Longitude": "",
1067
+ "URL": "/advanced-molecular-detection/php/investments/kansas.html"
1068
+ },
1069
+ {
1070
+ "Location": "KY",
1071
+ "Region": "Midwest",
1072
+ "Training Leads": "",
1073
+ "Latitude": "",
1074
+ "Longitude": "",
1075
+ "URL": "/advanced-molecular-detection/php/investments/kentucky.html"
1076
+ },
1077
+ {
1078
+ "Location": "LA",
1079
+ "Region": "Southeast",
1080
+ "Training Leads": "",
1081
+ "Latitude": "",
1082
+ "Longitude": "",
1083
+ "URL": "/advanced-molecular-detection/php/investments/louisiana.html"
1084
+ },
1085
+ {
1086
+ "Location": "ME",
1087
+ "Region": "Northeast",
1088
+ "Training Leads": "",
1089
+ "Latitude": "",
1090
+ "Longitude": "",
1091
+ "URL": "/advanced-molecular-detection/php/investments/maine.html"
1092
+ },
1093
+ {
1094
+ "Location": "MH",
1095
+ "Region": "West",
1096
+ "Training Leads": "",
1097
+ "Latitude": "",
1098
+ "Longitude": "",
1099
+ "URL": "/advanced-molecular-detection/php/investments/marshall-islands.html"
1100
+ },
1101
+ {
1102
+ "Location": "MD",
1103
+ "Region": "Mid-Atlantic",
1104
+ "Training Leads": "",
1105
+ "Latitude": "",
1106
+ "Longitude": "",
1107
+ "URL": "/advanced-molecular-detection/php/investments/maryland.html"
1108
+ },
1109
+ {
1110
+ "Location": "MA",
1111
+ "Region": "Northeast",
1112
+ "Training Leads": "",
1113
+ "Latitude": "",
1114
+ "Longitude": "",
1115
+ "URL": "/advanced-molecular-detection/php/investments/massachusetts.html"
1116
+ },
1117
+ {
1118
+ "Location": "MI",
1119
+ "Region": "Midwest",
1120
+ "Training Leads": "",
1121
+ "Latitude": "",
1122
+ "Longitude": "",
1123
+ "URL": "/advanced-molecular-detection/php/investments/michigan.html"
1124
+ },
1125
+ {
1126
+ "Location": "FM",
1127
+ "Region": "West",
1128
+ "Training Leads": "",
1129
+ "Latitude": "",
1130
+ "Longitude": "",
1131
+ "URL": "/advanced-molecular-detection/php/investments/micronesia.html"
1132
+ },
1133
+ {
1134
+ "Location": "MN",
1135
+ "Region": "Central",
1136
+ "Training Leads": "",
1137
+ "Latitude": "",
1138
+ "Longitude": "",
1139
+ "URL": "/advanced-molecular-detection/php/investments/minnesota.html"
1140
+ },
1141
+ {
1142
+ "Location": "MS",
1143
+ "Region": "Southeast",
1144
+ "Training Leads": "",
1145
+ "Latitude": "",
1146
+ "Longitude": "",
1147
+ "URL": "/advanced-molecular-detection/php/investments/mississippi.html"
1148
+ },
1149
+ {
1150
+ "Location": "MO",
1151
+ "Region": "Central",
1152
+ "Training Leads": "",
1153
+ "Latitude": "",
1154
+ "Longitude": "",
1155
+ "URL": "/advanced-molecular-detection/php/investments/missouri.html"
1156
+ },
1157
+ {
1158
+ "Location": "MT",
1159
+ "Region": "Mountain",
1160
+ "Training Leads": "",
1161
+ "Latitude": "",
1162
+ "Longitude": "",
1163
+ "URL": "/advanced-molecular-detection/php/investments/montana.html"
1164
+ },
1165
+ {
1166
+ "Location": "NE",
1167
+ "Region": "Central",
1168
+ "Training Leads": "",
1169
+ "Latitude": "",
1170
+ "Longitude": "",
1171
+ "URL": "/advanced-molecular-detection/php/investments/nebraska.html"
1172
+ },
1173
+ {
1174
+ "Location": "NV",
1175
+ "Region": "West",
1176
+ "Training Leads": "",
1177
+ "Latitude": "",
1178
+ "Longitude": "",
1179
+ "URL": "/advanced-molecular-detection/php/investments/nevada.html"
1180
+ },
1181
+ {
1182
+ "Location": "NH",
1183
+ "Region": "Northeast",
1184
+ "Training Leads": "",
1185
+ "Latitude": "",
1186
+ "Longitude": "",
1187
+ "URL": "/advanced-molecular-detection/php/investments/new-hampshire.html"
1188
+ },
1189
+ {
1190
+ "Location": "NJ",
1191
+ "Region": "Northeast",
1192
+ "Training Leads": "",
1193
+ "Latitude": "",
1194
+ "Longitude": "",
1195
+ "URL": "/advanced-molecular-detection/php/investments/new-jersey.html"
1196
+ },
1197
+ {
1198
+ "Location": "NM",
1199
+ "Region": "Mountain",
1200
+ "Training Leads": "",
1201
+ "Latitude": "",
1202
+ "Longitude": "",
1203
+ "URL": "/advanced-molecular-detection/php/investments/new-mexico.html"
1204
+ },
1205
+ {
1206
+ "Location": "NY",
1207
+ "Region": "Northeast",
1208
+ "Training Leads": "",
1209
+ "Latitude": "",
1210
+ "Longitude": "",
1211
+ "URL": "/advanced-molecular-detection/php/investments/new-york.html"
1212
+ },
1213
+ {
1214
+ "Location": "NC",
1215
+ "Region": "Mid-Atlantic",
1216
+ "Training Leads": "",
1217
+ "Latitude": "",
1218
+ "Longitude": "",
1219
+ "URL": "/advanced-molecular-detection/php/investments/north-carolina.html"
1220
+ },
1221
+ {
1222
+ "Location": "ND",
1223
+ "Region": "Central",
1224
+ "Training Leads": "",
1225
+ "Latitude": "",
1226
+ "Longitude": "",
1227
+ "URL": "/advanced-molecular-detection/php/investments/north-dakota.html"
1228
+ },
1229
+ {
1230
+ "Location": "MP",
1231
+ "Region": "West",
1232
+ "Training Leads": "",
1233
+ "Latitude": "",
1234
+ "Longitude": "",
1235
+ "URL": "/advanced-molecular-detection/php/investments/northern-marianas.html"
1236
+ },
1237
+ {
1238
+ "Location": "OH",
1239
+ "Region": "Midwest",
1240
+ "Training Leads": "",
1241
+ "Latitude": "",
1242
+ "Longitude": "",
1243
+ "URL": "/advanced-molecular-detection/php/investments/ohio.html"
1244
+ },
1245
+ {
1246
+ "Location": "OK",
1247
+ "Region": "Central",
1248
+ "Training Leads": "",
1249
+ "Latitude": "",
1250
+ "Longitude": "",
1251
+ "URL": "/advanced-molecular-detection/php/investments/oklahoma.html"
1252
+ },
1253
+ {
1254
+ "Location": "OR",
1255
+ "Region": "West",
1256
+ "Training Leads": "",
1257
+ "Latitude": "",
1258
+ "Longitude": "",
1259
+ "URL": "/advanced-molecular-detection/php/investments/oregon.html"
1260
+ },
1261
+ {
1262
+ "Location": "PW",
1263
+ "Region": "West",
1264
+ "Training Leads": "",
1265
+ "Latitude": "",
1266
+ "Longitude": "",
1267
+ "URL": "/advanced-molecular-detection/php/investments/palau.html"
1268
+ },
1269
+ {
1270
+ "Location": "PA",
1271
+ "Region": "Mid-Atlantic",
1272
+ "Training Leads": "",
1273
+ "Latitude": "",
1274
+ "Longitude": "",
1275
+ "URL": "/advanced-molecular-detection/php/investments/pennsylvania.html"
1276
+ },
1277
+ {
1278
+ "Location": "PR",
1279
+ "Region": "Southeast",
1280
+ "Training Leads": "",
1281
+ "Latitude": "",
1282
+ "Longitude": "",
1283
+ "URL": "/advanced-molecular-detection/php/investments/puerto-rico.html"
1284
+ },
1285
+ {
1286
+ "Location": "RI",
1287
+ "Region": "Northeast",
1288
+ "Training Leads": "",
1289
+ "Latitude": "",
1290
+ "Longitude": "",
1291
+ "URL": "/advanced-molecular-detection/php/investments/rhode-island.html"
1292
+ },
1293
+ {
1294
+ "Location": "SC",
1295
+ "Region": "Mid-Atlantic",
1296
+ "Training Leads": "",
1297
+ "Latitude": "",
1298
+ "Longitude": "",
1299
+ "URL": "/advanced-molecular-detection/php/investments/south-carolina.html"
1300
+ },
1301
+ {
1302
+ "Location": "SD",
1303
+ "Region": "Central",
1304
+ "Training Leads": "",
1305
+ "Latitude": "",
1306
+ "Longitude": "",
1307
+ "URL": "/advanced-molecular-detection/php/investments/south-dakota.html"
1308
+ },
1309
+ {
1310
+ "Location": "TN",
1311
+ "Region": "Southeast",
1312
+ "Training Leads": "",
1313
+ "Latitude": "",
1314
+ "Longitude": "",
1315
+ "URL": "/advanced-molecular-detection/php/investments/tennessee.html"
1316
+ },
1317
+ {
1318
+ "Location": "TX",
1319
+ "Region": "Mountain",
1320
+ "Training Leads": "",
1321
+ "Latitude": "",
1322
+ "Longitude": "",
1323
+ "URL": "/advanced-molecular-detection/php/investments/texas.html"
1324
+ },
1325
+ {
1326
+ "Location": "UT",
1327
+ "Region": "Mountain",
1328
+ "Training Leads": "",
1329
+ "Latitude": "",
1330
+ "Longitude": "",
1331
+ "URL": "/advanced-molecular-detection/php/investments/utah.html"
1332
+ },
1333
+ {
1334
+ "Location": "VT",
1335
+ "Region": "Northeast",
1336
+ "Training Leads": "",
1337
+ "Latitude": "",
1338
+ "Longitude": "",
1339
+ "URL": "/advanced-molecular-detection/php/investments/vermont.html"
1340
+ },
1341
+ {
1342
+ "Location": "VI",
1343
+ "Region": "Southeast",
1344
+ "Training Leads": "",
1345
+ "Latitude": "",
1346
+ "Longitude": "",
1347
+ "URL": "/advanced-molecular-detection/php/investments/virgin-islands.html"
1348
+ },
1349
+ {
1350
+ "Location": "VA",
1351
+ "Region": "Mid-Atlantic",
1352
+ "Training Leads": "",
1353
+ "Latitude": "",
1354
+ "Longitude": "",
1355
+ "URL": "/advanced-molecular-detection/php/investments/virginia.html"
1356
+ },
1357
+ {
1358
+ "Location": "WA",
1359
+ "Region": "West",
1360
+ "Training Leads": "",
1361
+ "Latitude": "",
1362
+ "Longitude": "",
1363
+ "URL": "/advanced-molecular-detection/php/investments/washington.html"
1364
+ },
1365
+ {
1366
+ "Location": "WV",
1367
+ "Region": "Mid-Atlantic",
1368
+ "Training Leads": "",
1369
+ "Latitude": "",
1370
+ "Longitude": "",
1371
+ "URL": "/advanced-molecular-detection/php/investments/west-virginia.html"
1372
+ },
1373
+ {
1374
+ "Location": "WI",
1375
+ "Region": "Midwest",
1376
+ "Training Leads": "",
1377
+ "Latitude": "",
1378
+ "Longitude": "",
1379
+ "URL": "/advanced-molecular-detection/php/investments/wisconsin.html"
1380
+ },
1381
+ {
1382
+ "Location": "WY",
1383
+ "Region": "Mountain",
1384
+ "Training Leads": "",
1385
+ "Latitude": "",
1386
+ "Longitude": "",
1387
+ "URL": "/advanced-molecular-detection/php/investments/wyoming.html"
1388
+ },
1389
+ {
1390
+ "Location": "CO",
1391
+ "Region": "Mountain",
1392
+ "Training Leads": "",
1393
+ "Latitude": "",
1394
+ "Longitude": "",
1395
+ "URL": ""
1396
+ },
1397
+ {
1398
+ "Location": "GA",
1399
+ "Region": "Southeast",
1400
+ "Training Leads": "",
1401
+ "Latitude": "",
1402
+ "Longitude": "",
1403
+ "URL": ""
1404
+ },
1405
+ {
1406
+ "Location": "FL",
1407
+ "Region": "Southeast",
1408
+ "Training Leads": "",
1409
+ "Latitude": "",
1410
+ "Longitude": "",
1411
+ "URL": ""
1412
+ },
1413
+ {
1414
+ "Location": "MA",
1415
+ "Region": "Northeast",
1416
+ "Training Leads": "",
1417
+ "Latitude": "",
1418
+ "Longitude": "",
1419
+ "URL": ""
1420
+ },
1421
+ {
1422
+ "Location": "MI",
1423
+ "Region": "Midwest",
1424
+ "Training Leads": "",
1425
+ "Latitude": "",
1426
+ "Longitude": "",
1427
+ "URL": ""
1428
+ },
1429
+ {
1430
+ "Location": "MN",
1431
+ "Region": "Central",
1432
+ "Training Leads": "",
1433
+ "Latitude": "",
1434
+ "Longitude": "",
1435
+ "URL": ""
1436
+ },
1437
+ {
1438
+ "Location": "VA",
1439
+ "Region": "Mid-Atlantic",
1440
+ "Training Leads": "",
1441
+ "Latitude": "",
1442
+ "Longitude": "",
1443
+ "URL": ""
1444
+ },
1445
+ {
1446
+ "Location": "WA",
1447
+ "Region": "West",
1448
+ "Training Leads": "",
1449
+ "Latitude": "",
1450
+ "Longitude": "",
1451
+ "URL": ""
1452
+ },
1453
+ {
1454
+ "Location": "UT",
1455
+ "Region": "Mountain",
1456
+ "Training Leads": "",
1457
+ "Latitude": "",
1458
+ "Longitude": "",
1459
+ "URL": ""
1460
+ },
1461
+ {
1462
+ "Location": "MA",
1463
+ "Region": "Northeast",
1464
+ "Training Leads": "",
1465
+ "Latitude": "",
1466
+ "Longitude": "",
1467
+ "URL": ""
1468
+ },
1469
+ {
1470
+ "Location": "MI",
1471
+ "Region": "Midwest",
1472
+ "Training Leads": "",
1473
+ "Latitude": "",
1474
+ "Longitude": "",
1475
+ "URL": ""
1476
+ },
1477
+ {
1478
+ "Location": "MN",
1479
+ "Region": "Central",
1480
+ "Training Leads": "",
1481
+ "Latitude": "",
1482
+ "Longitude": "",
1483
+ "URL": ""
1484
+ },
1485
+ {
1486
+ "Location": "UT",
1487
+ "Region": "Mountain",
1488
+ "Training Leads": "",
1489
+ "Latitude": "",
1490
+ "Longitude": "",
1491
+ "URL": ""
1492
+ },
1493
+ {
1494
+ "Location": "VA",
1495
+ "Region": "Mid-Atlantic",
1496
+ "Training Leads": "",
1497
+ "Latitude": "",
1498
+ "Longitude": "",
1499
+ "URL": ""
1500
+ },
1501
+ {
1502
+ "Location": "WI",
1503
+ "Region": "Midwest",
1504
+ "Training Leads": "",
1505
+ "Latitude": "",
1506
+ "Longitude": "",
1507
+ "URL": ""
1508
+ },
1509
+ {
1510
+ "Location": "NV",
1511
+ "Region": "West",
1512
+ "Training Leads": "",
1513
+ "Latitude": "",
1514
+ "Longitude": "",
1515
+ "URL": ""
1516
+ },
1517
+ {
1518
+ "Location": "WA",
1519
+ "Region": "West",
1520
+ "Training Leads": "",
1521
+ "Latitude": "",
1522
+ "Longitude": "",
1523
+ "URL": ""
1524
+ },
1525
+ {
1526
+ "Location": "FL",
1527
+ "Region": "Southeast",
1528
+ "Training Leads": "",
1529
+ "Latitude": "",
1530
+ "Longitude": "",
1531
+ "URL": ""
1532
+ },
1533
+ {
1534
+ "Location": "Atlanta",
1535
+ "Region": "Location provides regional support",
1536
+ "Training Leads": "AMD Training Lead",
1537
+ "Latitude": "",
1538
+ "Longitude": "",
1539
+ "URL": ""
1540
+ },
1541
+ {
1542
+ "Location": "Jacksonville",
1543
+ "Region": "Location provides regional support",
1544
+ "Training Leads": "AMD Training Lead and Bioinformatics Regional Resource (BRR)",
1545
+ "Latitude": "30.32597",
1546
+ "Longitude": "-81.656761",
1547
+ "URL": ""
1548
+ },
1549
+ {
1550
+ "Location": "Denver",
1551
+ "Region": "Location provides regional support",
1552
+ "Training Leads": "AMD Training Lead and Bioinformatics Regional Resource (BRR)",
1553
+ "Latitude": "",
1554
+ "Longitude": "",
1555
+ "URL": ""
1556
+ },
1557
+ {
1558
+ "Location": "Olympia",
1559
+ "Region": "Location provides regional support",
1560
+ "Training Leads": "AMD Training Lead and Bioinformatics Regional Resource (BRR)",
1561
+ "Latitude": "47.037872",
1562
+ "Longitude": "-122.900696",
1563
+ "URL": ""
1564
+ },
1565
+ {
1566
+ "Location": "Saint Paul",
1567
+ "Region": "Location provides regional support",
1568
+ "Training Leads": "AMD Training Lead and Bioinformatics Regional Resource (BRR)",
1569
+ "Latitude": "",
1570
+ "Longitude": "",
1571
+ "URL": ""
1572
+ },
1573
+ {
1574
+ "Location": "Lansing",
1575
+ "Region": "Location provides regional support",
1576
+ "Training Leads": "AMD Training Lead and Bioinformatics Regional Resource (BRR)",
1577
+ "Latitude": "42.732536",
1578
+ "Longitude": "-84.555534",
1579
+ "URL": ""
1580
+ },
1581
+ {
1582
+ "Location": "Taylorville",
1583
+ "Region": "Location provides regional support",
1584
+ "Training Leads": "AMD Training Lead and Bioinformatics Regional Resource (BRR)",
1585
+ "Latitude": "40.653061",
1586
+ "Longitude": "-111.955139",
1587
+ "URL": ""
1588
+ },
1589
+ {
1590
+ "Location": "Richmond, VA",
1591
+ "Region": "Location provides regional support",
1592
+ "Training Leads": "AMD Training Lead and Bioinformatics Regional Resource (BRR)",
1593
+ "Latitude": "37.54068",
1594
+ "Longitude": "-77.43367",
1595
+ "URL": ""
1596
+ },
1597
+ {
1598
+ "Location": "Raleigh",
1599
+ "Region": "Location provides regional support",
1600
+ "Training Leads": "AMD Training Lead",
1601
+ "Latitude": "",
1602
+ "Longitude": "",
1603
+ "URL": ""
1604
+ },
1605
+ {
1606
+ "Location": "Jamaica Plains",
1607
+ "Region": "Location provides regional support",
1608
+ "Training Leads": "AMD Training Lead and Bioinformatics Regional Resource (BRR)",
1609
+ "Latitude": "",
1610
+ "Longitude": "",
1611
+ "URL": ""
1612
+ },
1613
+ {
1614
+ "Location": "Madison",
1615
+ "Region": "Location provides regional support",
1616
+ "Training Leads": "AMD Training Lead and Bioinformatics Regional Resource (BRR)",
1617
+ "Latitude": "",
1618
+ "Longitude": "",
1619
+ "URL": ""
1620
+ },
1621
+ {
1622
+ "Location": "Albany",
1623
+ "Region": "Location provides regional support",
1624
+ "Training Leads": "Bioinformatics Regional Resource (BRR)",
1625
+ "Latitude": "42.65155",
1626
+ "Longitude": "-73.75521",
1627
+ "URL": ""
1628
+ },
1629
+ {
1630
+ "Location": "Reno",
1631
+ "Region": "Location provides regional support",
1632
+ "Training Leads": "Bioinformatics Regional Resource (BRR)",
1633
+ "Latitude": "",
1634
+ "Longitude": "",
1635
+ "URL": ""
1636
+ }
1637
+ ],
1638
+ "datasets": {}
1639
+ }