Skip to content

Commit 5f14ba9

Browse files
committed
adding choices.example.py
1 parent fe1db19 commit 5f14ba9

File tree

1 file changed

+67
-0
lines changed

1 file changed

+67
-0
lines changed

choices.example.py

Lines changed: 67 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,67 @@
1+
CHOICES = {
2+
'alerts': [
3+
("1", "Needs Watering"),
4+
("2", "Needs Pruning"),
5+
("3", "Should be Removed"),
6+
("4", "Pest Or Disease Present"),
7+
("5", "Guard Should Be Removed"),
8+
("6", "Stakes And Ties Should Be Removed"),
9+
("7", "Construction Work In The Area"),
10+
("8", "Touching Wires"),
11+
("9", "Blocking Signs or Traffic Signals"),
12+
("10", "Improperly Pruned or Topped")
13+
],
14+
'actions': [
15+
],
16+
'projects': [
17+
],
18+
'sidewalks': [
19+
("1", "Minor or No Damage"),
20+
("2", "Raised More Than 3/4 Inch")
21+
],
22+
'powerlines': [
23+
("1", "Yes"),
24+
("2", "No"),
25+
("3", "Unknown")
26+
],
27+
'conditions': [
28+
("1", "Dead"),
29+
("2", "Critical"),
30+
("3", "Poor"),
31+
("4", "Fair"),
32+
("5", "Good"),
33+
("6", "Very Good"),
34+
("7", "Excellent")
35+
],
36+
'canopy_conditions': [
37+
("1", "Full - No Gaps"),
38+
("2", "Small Gaps (up to 25% missing)"),
39+
("3", "Moderate Gaps (up to 50% missing)"),
40+
("4", "Large Gaps (up to 75% missing)"),
41+
("5", "Little or None (up to 100% missing)")
42+
],
43+
'plot_types': [
44+
("1", "Well/Pit"),
45+
("2", "Median/Island"),
46+
("3", "Tree Lawn"),
47+
("4", "Park"),
48+
("5", "Planter"),
49+
("6", "Other"),
50+
("7", "Yard"),
51+
("8", "Natural Area")
52+
],
53+
'plot_stewardship': [
54+
("1","Watering"),
55+
("2","Pruning"),
56+
("3","Mulching, Adding Compost or Amending Soil"),
57+
("4","Removing Debris or Trash")
58+
],
59+
'tree_stewardship': [
60+
("1","Enlarging the Planting Area"),
61+
("2","Adding a Guard"),
62+
("3","Removing a Guard"),
63+
("4","Herbaceous Planting")
64+
]
65+
}
66+
67+

0 commit comments

Comments
 (0)