Fix small inconsistencies in RainMachine vegetation and sprinkler types (#52313)

This commit is contained in:
Aaron Bach 2021-06-29 12:57:28 -05:00 committed by GitHub
parent b43d0877e7
commit 935f4d16a9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -84,7 +84,7 @@ SLOPE_TYPE_MAP = {
SPRINKLER_TYPE_MAP = { SPRINKLER_TYPE_MAP = {
0: "Not Set", 0: "Not Set",
1: "Popup Spray", 1: "Popup Spray",
2: "Rotors", 2: "Rotors Low Rate",
3: "Surface Drip", 3: "Surface Drip",
4: "Bubblers Drip", 4: "Bubblers Drip",
5: "Rotors High Rate", 5: "Rotors High Rate",
@ -101,9 +101,10 @@ VEGETATION_MAP = {
4: "Flowers", 4: "Flowers",
5: "Vegetables", 5: "Vegetables",
6: "Citrus", 6: "Citrus",
7: "Trees and Bushes", 7: "Bushes",
9: "Drought Tolerant Plants", 9: "Drought Tolerant Plants",
10: "Warm Season Grass", 10: "Warm Season Grass",
11: "Trees",
99: "Other", 99: "Other",
} }