-
Notifications
You must be signed in to change notification settings - Fork 0
/
ToxPi_creation_customized.py
1452 lines (1306 loc) · 60.2 KB
/
ToxPi_creation_customized.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# -*- coding: utf-8 -*-
import os
import arcpy
import sys
import json
import math
import numpy
import pandas as pd
import statistics
import re
def convertLength(radiusUnits):
if radiusUnits.upper() == "MILES":
return 4000 #1609.344
def maxvalue(fclass, field):
na = arcpy.da.FeatureClassToNumPyArray(fclass, field)
return numpy.max(na[field])
def bearings(tmpFeatures, uniqueID, a, scaler):
'''calculate the radius and bearings for each sector.'''
b=len(a)
with arcpy.da.UpdateCursor(tmpFeatures, [uniqueID, "ToxPi_Score", 'BEARING_a', 'BEARING_b', 'RADIUS_']) as cursor:
for i, row in enumerate(cursor):
id_ = row[0]
val = row[1]
# Increment angles only within each unique toxpi figure
if i == 0:
p_id = 0
if id_ != p_id:
p_v = 90
p_id = 0
# Calculate from and to bearing in Feature Class
if p_v == 90:
row[2] = 90
row[3] = 90 - a[0]
if row[3] < 0:
row[3] = row[3]+360
else:
row[2] = p_v
row[3] = p_v-a[i%b]
if row[3] < 0:
row[3] = row[3]+360
# Calculate radius (based on value)
if val > 0:
row[4] = val * scaler
else:
row[4] = 0
# Update row in Feature Class
cursor.updateRow(row)
# Previous x,y and bearing angle
p_id = id_
p_v += -a[i%b]
if p_v < 0:
p_v = p_v+360
del cursor, row
def generate_angles(ang1, ang2):
'''Generate angles for points closing of the sectors.'''
yield (ang1-90) * -1
true = True
while true:
if ang1 == -1:
ang1 = 359
yield (ang1-90) * -1
if ang1 == ang2:
break
ang1 += -1
def generate_anglesreverse(ang2, ang1):
yield (ang2-90) * -1
true = True
while true:
if ang1 == ang2:
break
if ang2 == 360:
ang2 = 0
yield (ang2-90) * -1
if ang1 == ang2:
break
ang2 += 1
def create_sector(pt, radius, ang1, ang2, innerradius, ring=False):
'''Return a point collection to create polygons from.'''
pointcoll = arcpy.Array()
if ring==False:
#x = pt.X + (innerradius*math.cos(math.radians(ang1)))
#y = pt.Y + (innerradius*math.sin(math.radians(ang1)))
#pointcoll.add(arcpy.Point(x,y),)
for index, i in enumerate(generate_angles(ang1, ang2)):
x = pt.X + (radius*math.cos(math.radians(i))) + (innerradius*math.cos(math.radians(i)))
y = pt.Y + (radius*math.sin(math.radians(i))) + (innerradius*math.sin(math.radians(i)))
pointcoll.add(arcpy.Point(x, y),)
for i in generate_anglesreverse(ang2, ang1):
x = pt.X + (innerradius*math.cos(math.radians(i)))
y = pt.Y + (innerradius*math.sin(math.radians(i)))
pointcoll.add(arcpy.Point(x, y),)
else:
for index, i in enumerate(generate_anglesreverse(ang2, ang1)):
x = pt.X + (innerradius*math.cos(math.radians(i))) + (radius*math.cos(math.radians(i)))
y = pt.Y + (innerradius*math.sin(math.radians(i))) + (radius*math.sin(math.radians(i)))
if index == 0:
firstx = x
firsty = y
pointcoll.add(arcpy.Point(x, y),)
pointcoll.add(arcpy.Point(firstx, firsty),)
return pointcoll
def ToxPiFeatures(inFeatures, outFeatures, uniqueID, uniqueidtype, inFields, inputRadius, radiusUnits, inputWeights, inFieldsrename, ranks = None, medians=None ,statemedians = None, stateranks=None, Large = False):
"""
Required arguments:
inFeatures -- Input point features containing the data to be displayed as a toxpi feature.
outFeatures -- The output toxpi feature class (polygon).
uniqueID -- A unique identifier for each toxpi drawing.
inFields -- List of fields used to create the categories to be displayed on the toxpi figures
"""
try:
# Check feature class has a projection.
sr = arcpy.Describe(inFeatures).SpatialReference
if not sr.type == 'Projected':
arcpy.AddMessage(sr.type)
arcpy.AddMessage('Feature dataset must have a projected coordinate system. Please alter the coordinate system and rerun.')
return
# Create a temp feature class
outTmp = "TempFeatures"
tmpFeatures = arcpy.management.CreateFeatureclass(os.path.dirname(inFeatures),
outTmp,
'POINT',
spatial_reference=sr)
# List of all input fields
numFlds = len(inFields)
allFlds = list(inFields)
allFlds.insert(0, uniqueID)
# Add fields required for output to temp feature class
arcpy.AddField_management(tmpFeatures, uniqueID, "TEXT")
arcpy.AddField_management(tmpFeatures, "ToxPi_Score", "DOUBLE")
arcpy.AddField_management(tmpFeatures, "SliceName", "TEXT")
arcpy.AddField_management(tmpFeatures, "CLASS_", "LONG")
arcpy.AddField_management(tmpFeatures, "Weight", "TEXT")
arcpy.AddField_management(tmpFeatures, "BEARING_a", "FLOAT")
arcpy.AddField_management(tmpFeatures, "BEARING_b", "FLOAT")
arcpy.AddField_management(tmpFeatures, "RADIUS_", "FLOAT")
# Insert pivoted data from input Feature Class.
if Large: # If drawing the state averages of data
arcpy.AddField_management(tmpFeatures, "Name", "TEXT")
arcpy.AddField_management(tmpFeatures, "Rank", "TEXT")
arcpy.AddField_management(tmpFeatures, "USAMedian", "DOUBLE")
with arcpy.da.SearchCursor(inFeatures, ['SHAPE@XY', "STATE_FIPS", "STATE_NAME"]) as scur:
for i, row in enumerate(scur): #for each input data point
count = 0
x1,y1 = row[0] #get coordinates for point
id_ = row[1] #get state FIPS for point
name = row[2] #get state name
for j, f in enumerate(inFields): #loop through slice fields
weight = str(round(inputWeights[count]*100/360, 3)) + "%" #get weight for slice as percentage
median = round(medians[j], 3) #get USAmedian for slice
statemedian = round(statemedians[j][id_], 3) #get statemedian for slice
staterank = stateranks[j][id_] #get the states rank in US for the slice
count = count + 1
with arcpy.da.InsertCursor(tmpFeatures, ('Shape@', "Name", uniqueID, "Toxpi_Score","SliceName","CLASS_", "Weight", "Rank", "USAMedian")) as poly_cursor:
poly_cursor.insertRow(([x1,y1],name,id_, statemedian,inFieldsrename[j],count,weight, staterank, median))
elif ranks != None: #If drawing the input data
arcpy.AddField_management(tmpFeatures, "Name", "TEXT")
arcpy.AddField_management(tmpFeatures, "Rank", "TEXT")
arcpy.AddField_management(tmpFeatures, "USAMedian", "DOUBLE")
arcpy.AddField_management(tmpFeatures, "StateMedian", "DOUBLE")
with arcpy.da.SearchCursor(inFeatures, ['SHAPE@XY', "Name", "STATE_FIPS"] + allFlds) as scur:
for i, row in enumerate(scur): #for each input data point
count = 0
x1,y1 = row[0] #get coordinates for point
name = row[1] #get name for point
state_id = row[2] #get state FIPS for point
id_ = row[3] #get county or census FIPS for point
for j, f in enumerate(inFields): #loop through slice fields
v = round(row[count+4], 3) #get toxpi score for slice
weight = str(inputWeights[count]*100/360) + "%" #get weight for slice as percentage
rank = ranks[j][id_] #get rank in the US for slice score
median = round(medians[j], 3) #get US median for slice
statemedian = round(statemedians[j][state_id], 3) #get state median for slice
count = count + 1
with arcpy.da.InsertCursor(tmpFeatures, ('Shape@', "Name", uniqueID,"ToxPi_Score","SliceName","CLASS_", "Weight","Rank","USAMedian", "StateMedian")) as poly_cursor:
poly_cursor.insertRow(([x1,y1],name,id_,v,inFieldsrename[j],count,weight,rank, median,statemedian))
else:
if uniqueID != "Name":
arcpy.AddField_management(tmpFeatures, "Name", "TEXT")
with arcpy.da.SearchCursor(inFeatures, ['SHAPE@XY', "Name"] + allFlds) as scur:
for i, row in enumerate(scur): #for each input data point
count = 0
x1,y1 = row[0] #get coordinates for point
name = row[1]
id_ = row[2] #get county or census FIPS for point
for j, f in enumerate(inFields): #loop through slice fields
v = round(row[count+3], 3) #get toxpi score for slice
weight = str(inputWeights[count]*100/360) + "%" #get weight for slice as percentage
count = count + 1
with arcpy.da.InsertCursor(tmpFeatures, ('Shape@', "Name", uniqueID,"ToxPi_Score","SliceName","CLASS_", "Weight")) as poly_cursor:
poly_cursor.insertRow(([x1,y1],name, id_,v,inFieldsrename[j],count,weight))
# Find the max values to scale the output features
if inputRadius == "" or inputRadius == 0:
inputRadius = 1
maxRadius = math.sqrt(1/math.pi)
convMax = float(maxRadius) * float(sr.metersPerUnit)
scaler = (float(inputRadius)*convertLength(radiusUnits))/float(convMax)
innerradius = scaler/30
# Create an empty Feature Class to store toxpi figures
outFolder = os.path.dirname(outFeatures)
outName = os.path.basename(outFeatures)
arcpy.env.workspace = outFolder
tox_polys = arcpy.management.CreateFeatureclass(outFolder,
outName,
'POLYGON',
tmpFeatures,
spatial_reference=sr)
# Get all attribute fields
search_fields = [f.name for f in arcpy.ListFields(tmpFeatures)]
# Get the locations in the list for bearings and radius
bearing_a_loc = search_fields.index("BEARING_a")+1
bearing_b_loc = search_fields.index("BEARING_b")+1
radius_loc = search_fields.index("RADIUS_")+1
# Calculate bearings and radii
bearings(tmpFeatures, uniqueID, inputWeights, float(scaler))
# Create toxpi figures, polygon sector at a time.
with arcpy.da.SearchCursor(tmpFeatures, ['SHAPE@XY'] + search_fields + ['OID@']) as scur:
for i, row in enumerate(scur):
# Get the fields that hold the bearings and radius information
x1, y1 = row[0]
b_a = row[bearing_a_loc]
b_b = row[bearing_b_loc]
radius = row[radius_loc]
# Create the toxpi slice polygons
with arcpy.da.InsertCursor(tox_polys, ['SHAPE@'] + search_fields[2:]) as poly_cursor:
l = len(search_fields) + 1
if (i+1)%numFlds == 0:
poly_cursor.insertRow([arcpy.Polygon(create_sector(arcpy.Point(x1, y1), 0, 360, 0, innerradius, ring=True), sr,),] + list(row[3:l]))
else:
if radius != 0:
poly_cursor.insertRow([arcpy.Polygon(create_sector(arcpy.Point(x1, y1), radius, int(b_a), int(b_b), innerradius), sr,),] + list(row[3:l]))
arcpy.Delete_management(tmpFeatures)
outName = os.path.basename(outFeatures) + "Rings"
Tox_Rings = arcpy.management.CreateFeatureclass(outFolder,
outName,
'POLYLINE',
spatial_reference=sr)
arcpy.AddField_management(Tox_Rings, uniqueID, "TEXT")
with arcpy.da.SearchCursor(inFeatures, ['SHAPE@XY', uniqueID, 'OID@']) as scur:
for i, row in enumerate(scur): #for each input data point
count = 0
x1,y1 = row[0] #get coordinates for point
id_ = row[1]
with arcpy.da.InsertCursor(Tox_Rings, ('Shape@', uniqueID)) as poly_cursor:
poly_cursor.insertRow([arcpy.Polyline(create_sector(arcpy.Point(x1, y1), scaler, 360, 0, innerradius, ring = True), sr,), id_])
except arcpy.ExecuteError:
print (arcpy.GetMessages(2))
sys.exit()
def adjustinput(infile, outfile):
#prep csv file for input into functions and get required parameters
#read in csv file, split the coordinates, and replace special characters from the header
df = pd.read_csv(infile)
df[['Latitude','Longitude']] = df.Source.str.split(",",expand = True,)
del df['Source']
#determine if required columns are present
if "Name" not in df.columns: #throw an error if names are not present
print("Error: Name column is not present in the input data. Please add column labeled Name with desired point names.")
sys.exit()
if "FIPS" in df.columns:
uniqueid = "FIPS"
df["FIPS"] = df["FIPS"].apply(str)
digits = len(df["FIPS"][1])
#determine if the data is at the county or census tract level
if digits <= 5 and digits > 2:
uniqueidtype = "FIPS"
elif digits > 5:
uniqueidtype = "Tract"
else:
uniqueidtype = "None"
else: #throw an error if FIPS are not present
#uniqueid = "Name"
#uniqueidtype = "None"
print("Error: FIPS column is not present in the input data. Please add a column labeled FIPS with the corresponding identifiers.")
sys.exit()
#add zeros to start of FIPS if they are not present
if uniqueidtype != "None":
for i in range(len(df["FIPS"])):
if uniqueidtype == "FIPS":
digits = len(df.at[i, uniqueid])
while digits < 5:
df.at[i, uniqueid] = "0" + df.at[i, uniqueid]
digits += 1
else: #if id is census tract FIPS
digits = len(df.at[i, uniqueid])
while digits < 11:
df.at[i, uniqueid] = "0" + df.at[i, uniqueid]
digits += 1
#add quotes around FIPS to force reading in as string
df.at[i, uniqueid] = "\"" + str(df.at[i, uniqueid]) + "\""
#get required symbology parameters and slices from column headers
colors = []
weights = []
infields = []
infieldsrevised = []
keywords = ["ToxPi Score", "HClust Group", "KMeans Group", "Name", "Longitude","Latitude","FIPS", "Tract"]
for name in df.columns:
weightstartpos = 0
weightendpos = 0
if name not in keywords:
for i, letter in enumerate(name):
if weightendpos != 0 and letter == 'x':
colors.append(name[i+1:-2])
if letter != "!":
continue
else:
if weightstartpos == 0:
weightstartpos = i
infields.append(name[:weightstartpos])
infieldsrevised.append(re.sub('\W+','_', name[:weightstartpos]))
if infieldsrevised[-1][0].isdigit():
infieldsrevised[-1] = "F" + infields[-1]
df.rename(columns = {name:name[:weightstartpos]}, inplace = True)
else:
weightendpos = i
weights.append(float(name[weightstartpos + 1: weightendpos]))
df.columns = [re.sub('\W+','_', header) for header in df.columns]
df.to_csv(outfile, index=False)
return weights, colors, infields, infieldsrevised, uniqueidtype, uniqueid
def GetSymbology(colors, infields, location):
if location == "foreground":
renderer = """{
"type" : "CIMUniqueValueRenderer",
"defaultLabel" : "<all other values>",
"defaultSymbol" : {
"type" : "CIMSymbolReference",
"symbol" : {
"type" : "CIMPolygonSymbol",
"symbolLayers" : [
{
"type" : "CIMSolidStroke",
"enable" : true,
"capStyle" : "Round",
"joinStyle" : "Round",
"lineStyle3D" : "Strip",
"miterLimit" : 10,
"width" : 0.10000000000000001,
"color" : {
"type" : "CIMRGBColor",
"values" : [
255,
255,
255,
100
]
}
},
{
"type" : "CIMSolidFill",
"enable" : true,
"color" : {
"type" : "CIMRGBColor",
"values" : [
130,
130,
130,
100
]
}
}
]
}
},
"defaultSymbolPatch" : "Default",
"fields" : [
"SliceName"
],
"groups" : [
{
"type" : "CIMUniqueValueGroup",
"classes" : [ """
for i in range(len(infields)):
skeleton = f"""
{{
"type" : "CIMUniqueValueClass",
"label" : "{infields[i]}",
"patch" : "Default",
"symbol" : {{
"type" : "CIMSymbolReference",
"symbol" : {{
"type" : "CIMPolygonSymbol",
"symbolLayers" : [
{{
"type" : "CIMSolidStroke",
"enable" : true,
"capStyle" : "Round",
"joinStyle" : "Round",
"lineStyle3D" : "Strip",
"miterLimit" : 1,
"width" : 0.5,
"color" : {{
"type" : "CIMRGBColor",
"values" : [
255,
255,
255,
100
]
}}
}},
{{
"type" : "CIMSolidFill",
"enable" : true,
"color" : {{
"type" : "CIMRGBColor",
"values" : [
{colors[i][0]},
{colors[i][1]},
{colors[i][2]},
100
]
}}
}}
]
}}
}},
"values" : [
{{
"type" : "CIMUniqueValue",
"fieldValues" : [
"{infields[i]}"
]
}}
],
"visible" : true
}},"""
renderer = renderer + skeleton
renderer = renderer[:-1]
rendererend = """
],
"heading" : "SliceName"
}
],
"useDefaultSymbol" : true,
"polygonSymbolColorTarget" : "Fill"
}"""
renderer = renderer + rendererend
elif location == "background":
renderer = """{
"type" : "CIMClassBreaksRenderer",
"barrierWeight" : "High",
"breaks" : [
{
"type" : "CIMClassBreak",
"label" : "1",
"patch" : "Default",
"symbol" : {
"type" : "CIMSymbolReference",
"symbol" : {
"type" : "CIMPolygonSymbol",
"symbolLayers" : [
{
"type" : "CIMSolidStroke",
"enable" : true,
"capStyle" : "Round",
"joinStyle" : "Round",
"lineStyle3D" : "Strip",
"miterLimit" : 10,
"width" : 0.5,
"color" : {
"type" : "CIMRGBColor",
"values" : [
130,
130,
130,
100
]
}
},
{
"type" : "CIMSolidFill",
"enable" : true,
"color" : {
"type" : "CIMRGBColor",
"values" : [
130,
130,
130,
0
]
}
}
]
}
},
"upperBound" : 1
}
],
"classBreakType" : "UnclassedColor",
"classificationMethod" : "DefinedInterval",
"colorRamp" : {
"type" : "CIMMultipartColorRamp",
"colorSpace" : {
"type" : "CIMICCColorSpace",
"url" : "Default RGB"
},
"colorRamps" : [
{
"type" : "CIMLinearContinuousColorRamp",
"colorSpace" : {
"type" : "CIMICCColorSpace",
"url" : "Default RGB"
},
"fromColor" : {
"type" : "CIMRGBColor",
"colorSpace" : {
"type" : "CIMICCColorSpace",
"url" : "Default RGB"
},
"values" : [
13,
38,
68,
100
]
},
"toColor" : {
"type" : "CIMRGBColor",
"colorSpace" : {
"type" : "CIMICCColorSpace",
"url" : "Default RGB"
},
"values" : [
56,
98,
122,
100
]
}
},
{
"type" : "CIMLinearContinuousColorRamp",
"colorSpace" : {
"type" : "CIMICCColorSpace",
"url" : "Default RGB"
},
"fromColor" : {
"type" : "CIMRGBColor",
"colorSpace" : {
"type" : "CIMICCColorSpace",
"url" : "Default RGB"
},
"values" : [
56,
98,
122,
100
]
},
"toColor" : {
"type" : "CIMRGBColor",
"colorSpace" : {
"type" : "CIMICCColorSpace",
"url" : "Default RGB"
},
"values" : [
98,
158,
176,
100
]
}
},
{
"type" : "CIMLinearContinuousColorRamp",
"colorSpace" : {
"type" : "CIMICCColorSpace",
"url" : "Default RGB"
},
"fromColor" : {
"type" : "CIMRGBColor",
"colorSpace" : {
"type" : "CIMICCColorSpace",
"url" : "Default RGB"
},
"values" : [
98,
158,
176,
100
]
},
"toColor" : {
"type" : "CIMRGBColor",
"colorSpace" : {
"type" : "CIMICCColorSpace",
"url" : "Default RGB"
},
"values" : [
177,
205,
194,
100
]
}
},
{
"type" : "CIMLinearContinuousColorRamp",
"colorSpace" : {
"type" : "CIMICCColorSpace",
"url" : "Default RGB"
},
"fromColor" : {
"type" : "CIMRGBColor",
"colorSpace" : {
"type" : "CIMICCColorSpace",
"url" : "Default RGB"
},
"values" : [
177,
205,
194,
100
]
},
"toColor" : {
"type" : "CIMRGBColor",
"colorSpace" : {
"type" : "CIMICCColorSpace",
"url" : "Default RGB"
},
"values" : [
255,
252,
212,
100
]
}
}
],
"weights" : [
0.25,
0.25,
0.25,
0.25
]
},
"field" : "ToxPi_Score",
"minimumBreak" : 0,
"numberFormat" : {
"type" : "CIMNumericFormat",
"alignmentOption" : "esriAlignRight",
"alignmentWidth" : 0,
"roundingOption" : "esriRoundNumberOfDecimals",
"roundingValue" : 2,
"useSeparator" : true
},
"showInAscendingOrder" : true,
"heading" : "ToxPi_Score",
"sampleSize" : 10000,
"useDefaultSymbol" : true,
"defaultSymbolPatch" : "Default",
"defaultSymbol" : {
"type" : "CIMSymbolReference",
"symbol" : {
"type" : "CIMPolygonSymbol",
"symbolLayers" : [
{
"type" : "CIMSolidStroke",
"enable" : true,
"capStyle" : "Round",
"joinStyle" : "Round",
"lineStyle3D" : "Strip",
"miterLimit" : 10,
"width" : 0.5,
"color" : {
"type" : "CIMRGBColor",
"values" : [
110,
110,
110,
100
]
}
},
{
"type" : "CIMSolidFill",
"enable" : true,
"color" : {
"type" : "CIMRGBColor",
"values" : [
130,
130,
130,
100
]
}
}
]
}
},
"minimumLabel" : "0",
"defaultLabel" : "<null>",
"polygonSymbolColorTarget" : "Fill",
"normalizationType" : "Nothing",
"useExclusionSymbol" : false,
"exclusionSymbolPatch" : "Default",
"visualVariables" : [
{
"type" : "CIMColorVisualVariable",
"expression" : "[ToxPi_Score]",
"minValue" : 0,
"maxValue" : 1,
"colorRamp" : {
"type" : "CIMMultipartColorRamp",
"colorSpace" : {
"type" : "CIMICCColorSpace",
"url" : "Default RGB"
},
"colorRamps" : [
{
"type" : "CIMLinearContinuousColorRamp",
"colorSpace" : {
"type" : "CIMICCColorSpace",
"url" : "Default RGB"
},
"fromColor" : {
"type" : "CIMRGBColor",
"colorSpace" : {
"type" : "CIMICCColorSpace",
"url" : "Default RGB"
},
"values" : [
13,
38,
68,
100
]
},
"toColor" : {
"type" : "CIMRGBColor",
"colorSpace" : {
"type" : "CIMICCColorSpace",
"url" : "Default RGB"
},
"values" : [
56,
98,
122,
100
]
}
},
{
"type" : "CIMLinearContinuousColorRamp",
"colorSpace" : {
"type" : "CIMICCColorSpace",
"url" : "Default RGB"
},
"fromColor" : {
"type" : "CIMRGBColor",
"colorSpace" : {
"type" : "CIMICCColorSpace",
"url" : "Default RGB"
},
"values" : [
56,
98,
122,
100
]
},
"toColor" : {
"type" : "CIMRGBColor",
"colorSpace" : {
"type" : "CIMICCColorSpace",
"url" : "Default RGB"
},
"values" : [
98,
158,
176,
100
]
}
},
{
"type" : "CIMLinearContinuousColorRamp",
"colorSpace" : {
"type" : "CIMICCColorSpace",
"url" : "Default RGB"
},
"fromColor" : {
"type" : "CIMRGBColor",
"colorSpace" : {
"type" : "CIMICCColorSpace",
"url" : "Default RGB"
},
"values" : [
98,
158,
176,
100
]
},
"toColor" : {
"type" : "CIMRGBColor",
"colorSpace" : {
"type" : "CIMICCColorSpace",
"url" : "Default RGB"
},
"values" : [
177,
205,
194,
100
]
}
},
{
"type" : "CIMLinearContinuousColorRamp",
"colorSpace" : {
"type" : "CIMICCColorSpace",
"url" : "Default RGB"
},
"fromColor" : {
"type" : "CIMRGBColor",
"colorSpace" : {
"type" : "CIMICCColorSpace",
"url" : "Default RGB"
},
"values" : [
177,
205,
194,
100
]
},
"toColor" : {
"type" : "CIMRGBColor",
"colorSpace" : {
"type" : "CIMICCColorSpace",
"url" : "Default RGB"
},
"values" : [
255,
252,
212,
100
]
}
}
],
"weights" : [
0.25,
0.25,
0.25,
0.25
]
},
"normalizationType" : "Nothing",
"polygonSymbolColorTarget" : "Fill"
}
]
}"""
return renderer
def GetPopupInfo(layer, position="", fields = "", data = "", infieldsrevised = ""):
if layer == "County":
name = '{Name}'
title = '"title" : "' + name + '",'
if position == "foreground":
if data == "minimal":
text = '"text" : "<div><p><span style=\\\"font-weight:bold;\\\">Slice Statistics</span></p><p><span>Name: ' + name + '</span></p><p><span>SliceName: {SliceName}</span></p><p><span>Weight: {Weight}</span></p><p><span>Score: {ToxPi_Score}</span></p>"'
else:
text = '"text" : "<div><p><span style=\\\"font-weight:bold;\\\">Slice Statistics</span></p><p><span>Name: ' + name + '</span></p><p><span>SliceName: {SliceName}</span></p><p><span>Weight: {Weight}</span></p><p><span>Score: {ToxPi_Score}</span></p><p><span>USAMedian: {USAMedian}</span></p><p><span>StateMedian: {StateMedian}</span></p><p><span>Rank(1 Lowest Risk): {Rank}</span></p></div>"'
else:
fieldtext = ""
count = 0
for i, name in enumerate(fields):
if count != len(fields)-1:
fieldtext = fieldtext + "<p><span>" + name + ": " + "{" + infieldsrevised[i][:31] + "}" + "</span></p>"
count += 1
text = '"text" : "<div><p><span style=\\\"font-weight:bold;\\\">Statistics</span></p><p><span>Name: {Name}</span></p><p><span>Overall Score: {ToxPi_Score}</span></p>' + fieldtext + '</div>"'
elif layer == "State":
if position =="foreground":
title = '"title" : "{Name} Median",'
text = '"text" : "<div><p><span style=\\\"font-weight:bold;\\\">Slice Statistics</span></p><p><span>Name: {Name} Median</span></p><p><span>SliceName: {SliceName}</span></p><p><span>Weight: {Weight}</span></p><p><span>Score: {ToxPi_Score}</span></p><p><span>Rank(1 Lowest Risk): {Rank}</span></p><p><span>USAMedian: {USAMedian}</span></p></div>"'
else:
title = '"title" : "{State_Name} Median",'
fieldtext = ""
count = 0
for i, name in enumerate(fields):
if count != len(fields)-1:
fieldtext = fieldtext + "<p><span>" + name + ": " + "{" + infieldsrevised[i][:31] + "}" + "</span></p>"
count += 1
text = '"text" : "<div><p><span style=\\\"font-weight:bold;\\\">Statistics</span></p><p><span>Name: {STATE_Name} Median</span></p><p><span>Overall Score: {ToxPi_Score}</span></p>' + fieldtext + '</div>"'
popupstring = '''{
"type" : "CIMPopupInfo",
''' + title + '''
"mediaInfos" : [
{
"type" : "CIMTextMediaInfo",
"row" : 1,
"column" : 1,
"refreshRateUnit" : "esriTimeUnitsSeconds",
''' + text
if position == "foreground":
popupstring = popupstring + '''
},
{
"type" : "CIMBarChartMediaInfo",
"row" :3,
"column" : 1,
"refreshRateUnit" : "esriTimeUnitsSeconds",
"fields" : [
"ToxPi_Score",
"USAMedian",
"StateMedian"
],
"caption" : "Comparison of Medians",
"title" : "{SliceName}"'''
popupstring = popupstring + '''
}
]
}
'''
return popupstring
def ToxPiCreation(inputdata, outpath): # ToxPi_Model
#get pathname for reading and writing files
outpathtmp = os.path.dirname(outpath)
if not os.path.exists(outpathtmp):
os.makedirs(outpathtmp)
#adjust input file for required parameters and get required information
outfilecsv = outpathtmp + "\ToxPiResultsAdjusted.csv"
inweights, colors, infields, infieldsrevised, uniqueidtype, uniqueid = adjustinput(inputdata, outfilecsv)
#adjust weights to fit a circle (360 deg)
total = 0
for i in range(len(inweights)):
total = total + inweights[i]
for i in range(len(inweights)):
inweights[i] = inweights[i]*360/total
#append info for adding a center dot with overall score
inweights.append(360)
colors.append("FFFFFF")
infields.append("ToxPi Score")
infieldsrevised.append("ToxPi_Score")
# start geopreocessing prep
# To allow overwriting outputs change overwriteOutput option to True.
arcpy.env.overwriteOutput = True
#import toolboxes for use
arcpy.ImportToolbox(r"c:\program files\arcgis\pro\Resources\ArcToolbox\toolboxes\Conversion Tools.tbx")
arcpy.ImportToolbox(r"c:\program files\arcgis\pro\Resources\ArcToolbox\toolboxes\Data Management Tools.tbx")
#make geodatabase if it doesn't already exist
geopath = outpathtmp + "\ToxPiAuto.gdb"
if not os.path.exists(geopath):
arcpy.CreateFileGDB_management(str(outpathtmp), "ToxPiAuto.gdb")
#Convert coordinates to projected instead of geographic and output to a feature layer
tmpfileremapped = geopath + "\pointfeatureremapped"
arcpy.ConvertCoordinateNotation_management(in_table=outfilecsv, out_featureclass=tmpfileremapped, x_field="Longitude", y_field="Latitude", input_coordinate_format="DD_2", output_coordinate_format="DD_2", spatial_reference="PROJCS['WGS_1984_Web_Mercator_Auxiliary_Sphere',GEOGCS['GCS_WGS_1984',DATUM['D_WGS_1984',SPHEROID['WGS_1984',6378137.0,298.257223563]],PRIMEM['Greenwich',0.0],UNIT['Degree',0.0174532925199433]],PROJECTION['Mercator_Auxiliary_Sphere'],PARAMETER['False_Easting',0.0],PARAMETER['False_Northing',0.0],PARAMETER['Central_Meridian',0.0],PARAMETER['Standard_Parallel_1',0.0],PARAMETER['Auxiliary_Sphere_Type',0.0],UNIT['Meter',1.0]];-20037700 -30241100 10000;-100000 10000;-100000 10000;0.001;0.001;0.001;IsHighPrecision", in_coor_system="GEOGCS['GCS_WGS_1984',DATUM['D_WGS_1984',SPHEROID['WGS_1984',6378137.0,298.257223563]],PRIMEM['Greenwich',0.0],UNIT['Degree',0.0174532925199433]]", id_field="", exclude_invalid_records="INCLUDE_INVALID")