diff options
author | Keith Packard <keithp@keithp.com> | 2016-03-26 15:57:21 -0700 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2016-03-26 16:07:20 -0700 |
commit | 4f8a325949ed3cece4b646c808ad68677b16d1b6 (patch) | |
tree | c7b1f88af2856bdcce987967ced424e4fd2f6d8f /altoslib/AltosLib.java | |
parent | 2fc47e7052a08de464f08d890e222afd7dec75d8 (diff) |
altoslib: use env var LAUNCH_SITES to override default URL
This makes it easier to debug new launch site data before uploading.
Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'altoslib/AltosLib.java')
-rw-r--r-- | altoslib/AltosLib.java | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/altoslib/AltosLib.java b/altoslib/AltosLib.java index 575cfc1a..33a9ab91 100644 --- a/altoslib/AltosLib.java +++ b/altoslib/AltosLib.java @@ -198,6 +198,7 @@ public class AltosLib { }; public static final String launch_sites_url = "http://www.altusmetrum.org/AltOS/launch-sites.txt"; + public static final String launch_sites_env = "LAUNCH_SITES"; // public static final String launch_sites_url = "file:///home/keithp/misc/text/altusmetrum/AltOS/launch-sites.txt"; public static final int ao_telemetry_standard_len = 32; |