Make Galactic Search Splines

Change-Id: Ifbc272d67ab9a0324872970f960ffa469102056d
diff --git a/frc971/control_loops/python/constants.py b/frc971/control_loops/python/constants.py
index af5d3ff..cb0de5b 100644
--- a/frc971/control_loops/python/constants.py
+++ b/frc971/control_loops/python/constants.py
@@ -109,6 +109,13 @@
 FIELD = FIELDS["2021 Galactic Search BRed"]
 
 
+def get_json_folder(field):
+    if field.year == 2020 or field.year == 2021:
+        return "y2020/actors/splines"
+    else:
+        return "frc971/control_loops/python/spline_jsons"
+
+
 def pxToM(p):
     return p * FIELD.width / SCREEN_SIZE