@cdc/chart 4.25.11 → 4.26.2

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 (181) hide show
  1. package/CLAUDE.local.md +79 -0
  2. package/dist/{cdcchart-dgT_1dIT.es.js → cdcchart-DQ00cQCm.es.js} +1 -20
  3. package/dist/cdcchart.js +51401 -50814
  4. package/examples/default.json +378 -0
  5. package/examples/feature/__data__/horizon-chart-data.json +373 -0
  6. package/examples/feature/annotations/index.json +3 -6
  7. package/examples/feature/horizon/horizon-chart.json +395 -0
  8. package/examples/feature/pie/planet-pie-example-config.json +48 -2
  9. package/examples/line-chart-states.json +1085 -0
  10. package/examples/private/123.json +694 -0
  11. package/examples/private/DEV-12100.json +1303 -0
  12. package/examples/private/anchor-issue.json +4094 -0
  13. package/examples/private/backwards-slider.json +10430 -0
  14. package/examples/private/cat-y.json +1235 -0
  15. package/examples/private/data-points.json +228 -0
  16. package/examples/private/georgia.csv +160 -0
  17. package/examples/private/height.json +3915 -0
  18. package/examples/private/links.json +569 -0
  19. package/examples/private/quadrant.txt +30 -0
  20. package/examples/private/test-forecast.json +5510 -0
  21. package/examples/private/timeline-data.json +1 -0
  22. package/examples/private/timeline.json +389 -0
  23. package/examples/private/warming-stripe-test.json +2578 -0
  24. package/examples/private/warming-stripes.json +4763 -0
  25. package/examples/radar-chart-simple.json +133 -0
  26. package/examples/radar-chart.json +148 -0
  27. package/examples/tech-adoption-with-links.json +560 -0
  28. package/index.html +1 -36
  29. package/package.json +59 -60
  30. package/src/CdcChartComponent.tsx +206 -89
  31. package/src/_stories/Chart.Anchors.stories.tsx +10 -0
  32. package/src/_stories/Chart.BoxPlot.stories.tsx +7 -0
  33. package/src/_stories/Chart.CI.stories.tsx +13 -0
  34. package/src/_stories/Chart.Combo.stories.tsx +17 -0
  35. package/src/_stories/Chart.CustomColors.stories.tsx +4 -0
  36. package/src/_stories/Chart.DynamicSeries.stories.tsx +19 -0
  37. package/src/_stories/Chart.Filters.stories.tsx +4 -0
  38. package/src/_stories/Chart.Forecast.stories.tsx +4 -0
  39. package/src/_stories/Chart.HTMLInDataTable.stories.tsx +22 -0
  40. package/src/_stories/Chart.Legend.Gradient.stories.tsx +28 -0
  41. package/src/_stories/Chart.Patterns.stories.tsx +4 -0
  42. package/src/_stories/Chart.PreserveDecimals.stories.tsx +25 -0
  43. package/src/_stories/Chart.Regions.Categorical.stories.tsx +161 -0
  44. package/src/_stories/Chart.Regions.DateScale.stories.tsx +216 -0
  45. package/src/_stories/Chart.Regions.DateTimeScale.stories.tsx +312 -0
  46. package/src/_stories/Chart.ScatterPlot.stories.tsx +4 -0
  47. package/src/_stories/Chart.SmallMultiples.stories.tsx +16 -0
  48. package/src/_stories/Chart.stories.tsx +45 -0
  49. package/src/_stories/Chart.tooltip.stories.tsx +7 -0
  50. package/src/_stories/ChartAnnotation.stories.tsx +10 -0
  51. package/src/_stories/ChartAxisLabels.stories.tsx +4 -0
  52. package/src/_stories/ChartAxisTitles.stories.tsx +10 -0
  53. package/src/_stories/ChartBar.Editor.stories.tsx +11 -6
  54. package/src/_stories/ChartBrush.Editor.stories.tsx +295 -0
  55. package/src/_stories/ChartBrush.Matrix.Continuous.stories.tsx +41 -0
  56. package/src/_stories/ChartBrush.Matrix.Date.stories.tsx +114 -0
  57. package/src/_stories/ChartBrush.Matrix.DateTime.stories.tsx +78 -0
  58. package/src/_stories/ChartBrush.stories.tsx +57 -0
  59. package/src/_stories/ChartEditor.Editor.stories.tsx +3 -5
  60. package/src/_stories/ChartEditor.stories.tsx +7 -0
  61. package/src/_stories/ChartLine.QuadrantAngles.stories.tsx +89 -0
  62. package/src/_stories/ChartLine.Suppression.stories.tsx +7 -0
  63. package/src/_stories/ChartLine.Symbols.stories.tsx +4 -0
  64. package/src/_stories/ChartPrefixSuffix.stories.tsx +46 -1
  65. package/src/_stories/TechAdoptionWithLinks.stories.tsx +34 -0
  66. package/src/_stories/_mock/brush_continuous.json +86 -0
  67. package/src/_stories/_mock/brush_date_large.json +176 -0
  68. package/src/_stories/_mock/brush_enabled.json +326 -0
  69. package/src/_stories/_mock/brush_mock.json +2 -69
  70. package/src/_stories/_mock/horizontal-bars-dynamic-y-axis.json +413 -0
  71. package/src/_stories/_mock/line_chart_angle_near_zero_fall.json +195 -0
  72. package/src/_stories/_mock/line_chart_angle_near_zero_rise.json +195 -0
  73. package/src/_stories/_mock/line_chart_angle_q1_steep_upward.json +195 -0
  74. package/src/_stories/_mock/line_chart_angle_q2_gentle_downward.json +195 -0
  75. package/src/_stories/_mock/line_chart_angle_q3_steep_downward.json +195 -0
  76. package/src/_stories/_mock/line_chart_angle_q4_gentle_upward.json +195 -0
  77. package/src/_stories/_mock/line_chart_quadrant_angles.json +264 -0
  78. package/src/components/Annotations/components/AnnotationDraggable.styles.css +11 -17
  79. package/src/components/Annotations/components/AnnotationDraggable.tsx +240 -116
  80. package/src/components/Annotations/components/AnnotationDropdown.styles.css +1 -2
  81. package/src/components/Annotations/components/AnnotationDropdown.tsx +8 -12
  82. package/src/components/Annotations/components/AnnotationList.styles.css +4 -10
  83. package/src/components/Annotations/components/AnnotationList.tsx +5 -4
  84. package/src/components/Annotations/components/findNearestDatum.ts +75 -85
  85. package/src/components/Annotations/helpers/getVisibleAnnotations.ts +38 -0
  86. package/src/components/AreaChart/components/AreaChart.Stacked.jsx +1 -2
  87. package/src/components/Axis/BottomAxis.tsx +270 -0
  88. package/src/components/Axis/Categorical.Axis.tsx +6 -7
  89. package/src/components/Axis/LeftAxis.tsx +404 -0
  90. package/src/components/Axis/LeftAxisGridlines.tsx +77 -0
  91. package/src/components/Axis/PairedBarAxis.tsx +186 -0
  92. package/src/components/Axis/README.md +94 -0
  93. package/src/components/Axis/RightAxis.tsx +108 -0
  94. package/src/components/Axis/axis.constants.ts +21 -0
  95. package/src/components/Axis/index.ts +7 -0
  96. package/src/components/BarChart/components/BarChart.Horizontal.tsx +178 -24
  97. package/src/components/BarChart/components/BarChart.StackedHorizontal.tsx +3 -1
  98. package/src/components/BarChart/components/BarChart.StackedVertical.tsx +1 -0
  99. package/src/components/BarChart/components/BarChart.Vertical.tsx +6 -8
  100. package/src/components/BarChart/components/BarChart.tsx +7 -1
  101. package/src/components/BarChart/components/context.tsx +1 -0
  102. package/src/components/BarChart/helpers/useBarChart.ts +14 -2
  103. package/src/components/Brush/BrushSelector.tsx +1390 -0
  104. package/src/components/Brush/MiniChartPreview.tsx +400 -0
  105. package/src/components/DeviationBar.jsx +9 -7
  106. package/src/components/EditorPanel/EditorPanel.tsx +2734 -2595
  107. package/src/components/EditorPanel/components/Panels/Panel.Annotate.tsx +60 -22
  108. package/src/components/EditorPanel/components/Panels/Panel.ForestPlotSettings.tsx +56 -34
  109. package/src/components/EditorPanel/components/Panels/Panel.General.tsx +137 -30
  110. package/src/components/EditorPanel/components/Panels/Panel.PatternSettings.tsx +2 -0
  111. package/src/components/EditorPanel/components/Panels/Panel.Radar.tsx +353 -0
  112. package/src/components/EditorPanel/components/Panels/Panel.Series.tsx +0 -1
  113. package/src/components/EditorPanel/components/Panels/Panel.SmallMultiples.tsx +30 -25
  114. package/src/components/EditorPanel/components/Panels/Panel.Visual.tsx +42 -28
  115. package/src/components/EditorPanel/components/Panels/index.tsx +2 -0
  116. package/src/components/EditorPanel/useEditorPermissions.ts +81 -39
  117. package/src/components/HorizonChart/HorizonChart.tsx +131 -0
  118. package/src/components/HorizonChart/components/HorizonBand.tsx +160 -0
  119. package/src/components/HorizonChart/helpers/calculateHorizonBands.ts +27 -0
  120. package/src/components/HorizonChart/helpers/getHorizonLayerColors.ts +40 -0
  121. package/src/components/HorizonChart/index.tsx +3 -0
  122. package/src/components/Legend/Legend.Component.tsx +52 -4
  123. package/src/components/Legend/Legend.tsx +4 -3
  124. package/src/components/Legend/LegendValueRange.tsx +77 -0
  125. package/src/components/Legend/helpers/createFormatLabels.tsx +164 -2
  126. package/src/components/Legend/helpers/generateValueRanges.ts +92 -0
  127. package/src/components/Legend/helpers/index.ts +10 -6
  128. package/src/components/LineChart/helpers/README.md +292 -0
  129. package/src/components/LineChart/helpers/labelPositioning.test.ts +245 -0
  130. package/src/components/LineChart/helpers/labelPositioning.ts +304 -0
  131. package/src/components/LineChart/index.tsx +44 -8
  132. package/src/components/LinearChart/README.md +109 -0
  133. package/src/components/LinearChart/VisualizationRenderer.tsx +267 -0
  134. package/src/components/LinearChart/linearChart.constants.ts +84 -0
  135. package/src/components/LinearChart/tests/LinearChart.test.tsx +201 -0
  136. package/src/components/LinearChart/tests/mockConfigContext.ts +129 -0
  137. package/src/components/LinearChart/utils/tickFormatting.ts +146 -0
  138. package/src/components/LinearChart.tsx +338 -1082
  139. package/src/components/PairedBarChart.jsx +20 -3
  140. package/src/components/PieChart/PieChart.tsx +1 -1
  141. package/src/components/RadarChart/RadarAxis.tsx +78 -0
  142. package/src/components/RadarChart/RadarChart.tsx +298 -0
  143. package/src/components/RadarChart/RadarGrid.tsx +64 -0
  144. package/src/components/RadarChart/RadarPolygon.tsx +91 -0
  145. package/src/components/RadarChart/helpers.ts +83 -0
  146. package/src/components/RadarChart/index.tsx +3 -0
  147. package/src/components/Regions/components/Regions.tsx +365 -122
  148. package/src/components/ScatterPlot/ScatterPlot.jsx +2 -2
  149. package/src/components/SmallMultiples/SmallMultipleTile.tsx +5 -1
  150. package/src/components/WarmingStripes/WarmingStripes.tsx +230 -0
  151. package/src/components/WarmingStripes/WarmingStripesGradientLegend.css +35 -0
  152. package/src/components/WarmingStripes/WarmingStripesGradientLegend.tsx +104 -0
  153. package/src/components/WarmingStripes/index.tsx +3 -0
  154. package/src/data/initial-state.js +17 -2
  155. package/src/helpers/calculateHorizontalBarCategoryLabelWidth.ts +57 -0
  156. package/src/helpers/getExcludedData.ts +4 -0
  157. package/src/helpers/getMinMax.ts +12 -7
  158. package/src/helpers/handleChartAriaLabels.ts +19 -19
  159. package/src/helpers/handleLineType.ts +22 -18
  160. package/src/helpers/sizeHelpers.ts +0 -20
  161. package/src/helpers/smallMultiplesHelpers.ts +1 -1
  162. package/src/hooks/useChartHoverAnalytics.tsx +10 -9
  163. package/src/hooks/useProgrammaticTooltip.ts +23 -2
  164. package/src/hooks/useScales.ts +18 -1
  165. package/src/hooks/useTooltip.tsx +34 -10
  166. package/src/scss/DataTable.scss +0 -4
  167. package/src/scss/main.scss +22 -3
  168. package/src/selectors/README.md +68 -0
  169. package/src/store/chart.reducer.ts +2 -0
  170. package/src/test/CdcChart.test.jsx +1 -1
  171. package/src/types/ChartConfig.ts +21 -0
  172. package/src/types/ChartContext.ts +1 -0
  173. package/src/types/Horizon.ts +64 -0
  174. package/src/types/Label.ts +1 -0
  175. package/src/utils/analyticsTracking.ts +19 -0
  176. package/LICENSE +0 -201
  177. package/src/components/Annotations/components/helpers/index.tsx +0 -46
  178. package/src/components/Brush/BrushChart.tsx +0 -128
  179. package/src/components/Brush/BrushController.tsx +0 -71
  180. package/src/components/Brush/types.tsx +0 -8
  181. package/src/components/BrushChart.tsx +0 -223
@@ -0,0 +1,228 @@
1
+
2
+ 90°
3
+
4
+
5
+ 179°
6
+
7
+
8
+ 10
9
+
10
+ 0
11
+
12
+
13
+ 90°
14
+
15
+
16
+ 100
17
+
18
+ 90
19
+
20
+
21
+ 179°
22
+
23
+
24
+ 80
25
+
26
+ 90
27
+
28
+
29
+ 180°
30
+
31
+
32
+ 269°
33
+
34
+
35
+ 10
36
+
37
+ 0
38
+
39
+
40
+ 1°–89°
41
+
42
+ 90
43
+
44
+ 100
45
+
46
+
47
+ 90
48
+
49
+ 80
50
+
51
+
52
+ 269°–360°
53
+
54
+
55
+ 269°–360°
56
+
57
+
58
+ 90
59
+
60
+ 80
61
+
62
+ 90
63
+
64
+
65
+ 269°
66
+
67
+
68
+ 92°
69
+
70
+
71
+ 90
72
+
73
+ 90
74
+
75
+ 90
76
+
77
+
78
+ 1°–179°
79
+
80
+
81
+ 90
82
+
83
+ 80
84
+
85
+ 80
86
+
87
+
88
+ 0°–180°
89
+
90
+
91
+ 90
92
+
93
+ 100
94
+
95
+ 80
96
+
97
+
98
+ 269°
99
+
100
+
101
+ 92°
102
+
103
+
104
+ 0
105
+
106
+ 0
107
+
108
+ 0
109
+
110
+
111
+ 135°
112
+
113
+
114
+ 0
115
+
116
+ 0
117
+
118
+ 20
119
+
120
+
121
+ 68°
122
+
123
+
124
+ 0
125
+
126
+ 20
127
+
128
+ 0
129
+
130
+
131
+ 68°
132
+
133
+ If point is 20 pixels or less above x-axis (i.e., it's a low value and close to 0) position label 0.5rem / 9px above and 0.25rem / 4.5px to the left of point: 91°–179°
134
+
135
+ First data point
136
+
137
+ Position label 0.5rem / 9px above point when segment is in Quadrant 3 (angle created is 180°–269°)
138
+
139
+ If the point isn't near the x-axis, position label 0.5rem / 9px below point when segment is in Quadrant 2 (angle created is: 91°–179°)
140
+
141
+ Last data point
142
+
143
+ Position label 0.5rem / 9px above point when final segment is in Quadrant 4 (and angle created is 269°–360°)
144
+
145
+
146
+
147
+ This also works for when last data point is near x-axis (i.e. it's a low value that's close to 0)
148
+
149
+ If the point isn't near the x-axis and final segment is in Quadrant 1 (angle created is: 1°–89°), position label 0.5rem / 9px below point
150
+
151
+ If the point is 20 pixels or less above x-axis (i.e., it's a low value and close to 0) and angle created is 0°–89° then position label 0.5rem / 9px above and 0.25rem / 4.5px to the right of point
152
+
153
+
154
+ 0
155
+
156
+ 10
157
+
158
+
159
+ 0°–89°
160
+
161
+
162
+ Quadrant 3
163
+
164
+ Quadrant 4
165
+
166
+
167
+ Quadrant 2
168
+
169
+ Quadrant 1
170
+
171
+
172
+ would NOT have segments like this
173
+
174
+
175
+ Quadrant 3
176
+
177
+ Quadrant 4
178
+
179
+
180
+ Quadrant 2
181
+
182
+ Quadrant 1
183
+
184
+
185
+ ending segments on right half
186
+
187
+
188
+ starting segments on left half
189
+
190
+
191
+ When looking at segments, think of them as being arranged in a grid with quadrants
192
+
193
+
194
+
195
+ Starting segment (denoted in purple) should always be in Quadrants 1 or 2
196
+
197
+
198
+
199
+ Ending segment (denoted in pink) should always be in Quadrants 3 and 4
200
+
201
+
202
+ Middle data point
203
+
204
+
205
+ Want labels to not overlap with points/lines like so:
206
+
207
+ If the point isn't near the x-axis, position label 0.5rem / 9px below it when starting segment is in Quadrant 1 and ending segment is in Quadrant 2 and the angle created is 1°–179°
208
+
209
+
210
+
211
+ Position label 0.5rem / 9px above point when starting segment is in Quadrant 4 and ending segment is in Quadrant 3 and the angle created is 0°–180°
212
+
213
+
214
+ Mapping of possible starting and ending segments
215
+
216
+ Position the label 0.5rem / 9px above and 0.5rem / 9px to the left of the point if starting segment is in Quadrant 4 and ending segment is in Quadrant 2 and the angle created is 92°–269°
217
+
218
+ If the point is 20 pixels or less above x-axis (i.e., it's a low value and close to 0) and starting sement is in Quadrant 1 and ending segment is in Quadrant 2 then calculate the angle between the 2 segments:
219
+
220
+
221
+
222
+ If it's 135°–180° then position the label 0.5rem / 9px above the point
223
+
224
+
225
+ If it's less than135°, calculate the angle created by the ending segment, if it's 68° or more then position the label 0.5rem / 9px above and 0.5rem / 9px to the right of the point
226
+ Otherwise, position the label 0.5rem / 9px above and 0.5rem / 9px to the left of the point
227
+ Position the label 0.5rem / 9px above and 0.5rem / 9px to the right of the point if starting segment is in Quadrant 1 and ending segment is in Quadrant 3 and the angle created is 92°–269°
228
+
@@ -0,0 +1,160 @@
1
+ Location,County,State,Population,OFFICE_NAME,,Medical Examiner Type,UPDATED_mdi_ACCREDITED
2
+ 13001,Appling County,GA,18517,Appling County Coroner,,Coroner,No
3
+ 13003,Atkinson County,GA,8351,Atkinson County Coroner,,Coroner,No
4
+ 13005,Bacon County,GA,11140,Bacon County Coroner,,Coroner,No
5
+ 13007,Baker County,GA,2750,Baker County Office Of The Coroner,,Coroner,No
6
+ 13009,Baldwin County,GA,43423,Baldwin County Coroner,,Coroner,No
7
+ 13011,Banks County,GA,19863,Banks County Coroner,,Coroner,No
8
+ 13013,Barrow County,GA,93011,Barrow County Coroner,,Coroner,No
9
+ 13015,Bartow County,GA,114977,Bartow County Coroner,,Coroner,No
10
+ 13017,Ben Hill County,GA,17150,Ben Hill County Coroner's Office,,Coroner,No
11
+ 13019,Berrien County,GA,18587,,,Coroner,No
12
+ 13021,Bibb County,GA,156676,,,Coroner,No
13
+ 13023,Bleckley County,GA,12455,Bleckley County Coroner,,Coroner,No
14
+ 13025,Brantley County,GA,18417,Brantley County Coroner,,Coroner,No
15
+ 13027,Brooks County,GA,16275,Brooks County Coroner,,Coroner,No
16
+ 13029,Bryan County,GA,49876,Bryan County Coroner,,Coroner,No
17
+ 13031,Bulloch County,GA,84332,Bulloch County Coroner's Office,,Coroner,No
18
+ 13033,Burke County,GA,24431,Burke County Coroner,,Coroner,No
19
+ 13035,Butts County,GA,26875,Butts County Coroner,,Coroner,No
20
+ 13037,Calhoun County,GA,5462,Calhoun County Coroner,,Coroner,No
21
+ 13039,Camden County,GA,57991,,,Coroner,No
22
+ 13043,Candler County,GA,11106,,,Coroner,No
23
+ 13045,Carroll County,GA,127293,Carroll County Coroner,,Coroner,No
24
+ 13047,Catoosa County,GA,68935,Catoosa County Coroner,,Coroner,No
25
+ 13049,Charlton County,GA,12928,,,Coroner,No
26
+ 13051,Chatham County,GA,304757,Chatham County Coroner,,Coroner,No
27
+ 13053,Chattahoochee County,GA,8588,Chattahoochee County Coroner,,Coroner,No
28
+ 13055,Chattooga County,GA,25176,Chattooga County Coroner's Office,,Coroner,No
29
+ 13057,Cherokee County,GA,287243,Cherokee County Coroner's Office,,Coroner,No
30
+ 13059,Clarke County,GA,130338,Clarke County Coroner's Office,,Coroner,No
31
+ 13061,Clay County,GA,2869,Clay County Coroner,,Coroner,No
32
+ 13063,Clayton County,GA,299380,,,Medical Examiner,No
33
+ 13065,Clinch County,GA,6808,Clinch County Coroner,,Coroner,No
34
+ 13067,Cobb County,GA,781208,Cobb County Medical Examiner's Office,,Medical Examiner,NAME
35
+ 13069,Coffee County,GA,43464,,,Coroner,No
36
+ 13071,Colquitt County,GA,46515,Colquitt County Coroner,,Coroner,No
37
+ 13073,Columbia County,GA,165470,Columbia County Coroner,,Coroner,No
38
+ 13075,Cook County,GA,17760,Cook County Coroner's Office,,Coroner,No
39
+ 13077,Coweta County,GA,156269,Coweta County Coroner's Office,,Coroner,No
40
+ 13079,Crawford County,GA,12335,Crawford County Coroner's Office,,Coroner,No
41
+ 13081,Crisp County,GA,19668,Crisp County Coroner,,Coroner,No
42
+ 13083,Dade County,GA,16188,Dade County Coroner's Office,,Coroner,No
43
+ 13085,Dawson County,GA,31720,Dawson County Coroner,,Coroner,No
44
+ 13087,Decatur County,GA,29124,Decatur County Coroner,,Coroner,No
45
+ 13089,DeKalb County,GA,768047,Dekalb County Medical Examiner's Office,,Medical Examiner,NAME
46
+ 13091,Dodge County,GA,19799,Dodge County Coroner's Office,,Coroner,No
47
+ 13093,Dooly County,GA,11056,Dooly County Coroner,,Coroner,No
48
+ 13095,Dougherty County,GA,82635,Dougherty County Coroner's Office,,Coroner,No
49
+ 13097,Douglas County,GA,149401,Douglas County Coroner,,Coroner,No
50
+ 13099,Early County,GA,10570,Early County Coroner,,Coroner,No
51
+ 13101,Echols County,GA,3739,Echols County Coroner's Office,,Coroner,No
52
+ 13103,Effingham County,GA,71549,Effingham County Coroner's Office,,Coroner,No
53
+ 13105,Elbert County,GA,20003,Elbert County Coroner,,Coroner,No
54
+ 13107,Emanuel County,GA,23146,Emanuel County Coroner's Office,,Coroner,No
55
+ 13109,Evans County,GA,10753,Evans County Coroner,,Coroner,No
56
+ 13111,Fannin County,GA,25916,Fannin County Coroner's Office,,Coroner,No
57
+ 13113,Fayette County,GA,123698,Fayette County Coroner,,Coroner,No
58
+ 13115,Floyd County,GA,100407,Floyd County Coroner's Office,,Coroner,No
59
+ 13117,Forsyth County,GA,274535,Forsyth County Coroner,,Coroner,No
60
+ 13119,Franklin County,GA,24815,Franklin County Coroner's Office,,Coroner,No
61
+ 13121,Fulton County,GA,1083971,Fulton County Medical Examiner's Office,,Medical Examiner,NAME
62
+ 13123,Gilmer County,GA,32868,Gilmer County Coroner,,Coroner,No
63
+ 13125,Glascock County,GA,2943,,,Coroner,No
64
+ 13127,Glynn County,GA,86229,Glynn County Coroner And Medical Examiner,,Coroner,No
65
+ 13129,Gordon County,GA,59844,Gordon County Coroner's Office,,Coroner,No
66
+ 13131,Grady County,GA,26130,Grady County Coroner,,Coroner,No
67
+ 13133,Greene County,GA,20733,Greene County Coroner,,Coroner,No
68
+ 13135,Gwinnett County,GA,991602,Gwinnett County Medical Examiner's Office,,Medical Examiner,No
69
+ 13137,Habersham County,GA,48851,,,Coroner,No
70
+ 13139,Hall County,GA,218248,Hall County Coroner,,Coroner,No
71
+ 13141,Hancock County,GA,8730,,,Coroner,No
72
+ 13143,Haralson County,GA,32040,Haralson County Coroner's Office,,Coroner,No
73
+ 13145,Harris County,GA,36700,Harris County Coroner,,Coroner,No
74
+ 13147,Hart County,GA,27557,Hart County Coroner's Office,,Coroner,No
75
+ 13149,Heard County,GA,12052,Heard County Coroner's Office,,Coroner,No
76
+ 13151,Henry County,GA,254934,Henry County Coroner,,Coroner,No
77
+ 13153,Houston County,GA,171955,Houston County Coroner,,Coroner,No
78
+ 13155,Irwin County,GA,9123,Irwin County Coroner's Office,,Coroner,No
79
+ 13157,Jackson County,GA,88723,,,Coroner,No
80
+ 13159,Jasper County,GA,16496,Jasper County Coroner's Office,,Coroner,No
81
+ 13161,Jeff Davis County,GA,14927,Jeff Davis County Coroner's Office,,Coroner,No
82
+ 13163,Jefferson County,GA,15211,Jefferson County Coroner's Office,,Coroner,No
83
+ 13165,Jenkins County,GA,8628,,,Coroner,No
84
+ 13167,Johnson County,GA,9328,,,Coroner,No
85
+ 13169,Jones County,GA,29000,Jones County Coroner,,Coroner,No
86
+ 13171,Lamar County,GA,20420,,,Coroner,No
87
+ 13173,Lanier County,GA,10452,,,Coroner,No
88
+ 13175,Laurens County,GA,49932,Laurens County Coroner,,Coroner,No
89
+ 13177,Lee County,GA,33928,Lee County Coroner,,Coroner,No
90
+ 13179,Liberty County,GA,68235,Liberty County Coroner,,Coroner,No
91
+ 13181,Lincoln County,GA,7898,Lincoln County Coroner's Office,,Coroner,No
92
+ 13183,Long County,GA,19651,,,Coroner,No
93
+ 13185,Lowndes County,GA,120800,Lowndes County Coroner,,Coroner,No
94
+ 13187,Lumpkin County,GA,35268,Lumpkin County Coroner,,Coroner,No
95
+ 13189,McDuffie County,GA,21860,Mcduffie County Coroner,,Coroner,No
96
+ 13191,McIntosh County,GA,11532,Mcintosh County Coroner's Office,,Coroner,No
97
+ 13193,Macon County,GA,11838,Macon County Coroner's Office,,Coroner,No
98
+ 13195,Madison County,GA,32255,Madison County Coroner,,Coroner,No
99
+ 13197,Marion County,GA,7485,Marion County Coroner,,Coroner,No
100
+ 13199,Meriwether County,GA,20964,Meriwether County Coroner's Office,,Coroner,No
101
+ 13201,Miller County,GA,5790,Miller County Coroner,,Coroner,No
102
+ 13205,Mitchell County,GA,20778,Mitchell County Coroner's Office,,Coroner,No
103
+ 13207,Monroe County,GA,30616,,,Coroner,No
104
+ 13209,Montgomery County,GA,8767,Montgomery County Coroner,,Coroner,No
105
+ 13211,Morgan County,GA,21537,Morgan County Coroner,,Coroner,No
106
+ 13213,Murray County,GA,41072,Murray County Coroner's Office,,Coroner,No
107
+ 13215,Muscogee County,GA,201959,Muscogee County Coroner's Office,,Coroner,No
108
+ 13217,Newton County,GA,120529,,,Coroner,No
109
+ 13219,Oconee County,GA,44256,Oconee County Coroner,,Coroner,IACME
110
+ 13221,Oglethorpe County,GA,15788,Oglethorpe County Coroner,,Coroner,No
111
+ 13223,Paulding County,GA,183535,Paulding County Coroner's Office,,Coroner,No
112
+ 13225,Peach County,GA,28807,Peach County Coroner,,Coroner,No
113
+ 13227,Pickens County,GA,35975,Pickens County Coroner's Office,,Coroner,No
114
+ 13229,Pierce County,GA,20443,Pierce County Coroner,,Coroner,No
115
+ 13231,Pike County,GA,20422,Pike County Coroner,,Coroner,No
116
+ 13233,Polk County,GA,44363,Polk County Coroner's Office,,Coroner,No
117
+ 13235,Pulaski County,GA,10114,Pulaski County Coroner,,Coroner,No
118
+ 13237,Putnam County,GA,23183,Putnam County Coroner's Office,,Coroner,No
119
+ 13239,Quitman County,GA,2278,Quitman County Coroner,,Coroner,No
120
+ 13241,Rabun County,GA,17525,Rabun County Coroner,,Coroner,No
121
+ 13243,Randolph County,GA,6113,Randolph County Coroner,,Coroner,No
122
+ 13245,Richmond County,GA,205646,Richmond County Coroner,,Coroner,No
123
+ 13247,Rockdale County,GA,96263,Rockdale County Coroner,,Coroner,No
124
+ 13249,Schley County,GA,4534,Schley County Coroner's Office,,Coroner,No
125
+ 13251,Screven County,GA,14204,,,Coroner,No
126
+ 13253,Seminole County,GA,9080,Seminole County Coroner's Office,,Coroner,No
127
+ 13255,Spalding County,GA,69992,Spalding County Coroner,,Coroner,No
128
+ 13257,Stephens County,GA,27255,Stephens County Coroner,,Coroner,No
129
+ 13259,Stewart County,GA,4697,,,Coroner,No
130
+ 13261,Sumter County,GA,28942,Sumter County Coroner,,Coroner,No
131
+ 13263,Talbot County,GA,5715,Talbot County Coroner,,Coroner,No
132
+ 13265,Taliaferro County,GA,1601,Taliaferro County Coroner,,Coroner,No
133
+ 13267,Tattnall County,GA,24328,Tattnall County Coroner,,Coroner,No
134
+ 13269,Taylor County,GA,7793,Taylor County Coroner,,Coroner,No
135
+ 13271,Telfair County,GA,10969,Telfair County Coroner,,Coroner,No
136
+ 13273,Terrell County,GA,8704,Terrell County Coroner,,Coroner,No
137
+ 13275,Thomas County,GA,45666,Thomas County Coroner,,Coroner,No
138
+ 13277,Tift County,GA,41620,Tift County Coroner,,Coroner,No
139
+ 13279,Toombs County,GA,27198,Toombs County Coroner,,Coroner,No
140
+ 13281,Towns County,GA,13007,Towns County Coroner,,Coroner,No
141
+ 13283,Treutlen County,GA,6351,Treutlen County Coroner,,Coroner,No
142
+ 13285,Troup County,GA,70957,Troup County Coroner,,Coroner,No
143
+ 13287,Turner County,GA,8926,Turner County Coroner,,Coroner,No
144
+ 13289,Twiggs County,GA,7706,Twiggs County Coroner,,Coroner,No
145
+ 13291,Union County,GA,27115,Union County Coroner,,Coroner,No
146
+ 13293,Upson County,GA,28265,Upson County Coroner's Office,,Coroner,No
147
+ 13295,Walker County,GA,69410,,,Coroner,No
148
+ 13297,Walton County,GA,106778,,,Coroner,No
149
+ 13299,Ware County,GA,36263,Ware County Coroner,,Coroner,No
150
+ 13301,Warren County,GA,5108,Warren County Coroner,,Coroner,No
151
+ 13303,Washington County,GA,19891,Washington County Coroner's Office,,Coroner,No
152
+ 13305,Wayne County,GA,31449,Wayne County Coroner,,Coroner,No
153
+ 13307,Webster County,GA,2367,Webster County Coroner,,Coroner,No
154
+ 13309,Wheeler County,GA,7097,Wheeler County Coroner,,Coroner,No
155
+ 13311,White County,GA,29056,White County Coroner,,Coroner,No
156
+ 13313,Whitfield County,GA,104147,Whitfield County Coroner's Office,,Coroner,No
157
+ 13315,Wilcox County,GA,8801,Wilcox County Coroner's Office,,Coroner,No
158
+ 13317,Wilkes County,GA,9552,Wilkes County Coroner,,Coroner,No
159
+ 13319,Wilkinson County,GA,8747,Wilkinson County Coroner's Office,,Coroner,No
160
+ 13321,Worth County,GA,20271,Worth County Coroner,,Coroner,No