diff --git a/date_downloader.html b/date_downloader.html deleted file mode 100644 index b104ae3..0000000 --- a/date_downloader.html +++ /dev/null @@ -1,51 +0,0 @@ - - - Soil Moisture Date Downloader - - - - - - - - -

Soil Moisture Date Downloader

- - -
-
- -
-
- -
-
-
-
- -
-
-
-
- - -
- - - -
- -
-
-
-
-
- - - diff --git a/date_downloader.js b/date_downloader.js deleted file mode 100644 index cda1fff..0000000 --- a/date_downloader.js +++ /dev/null @@ -1,132 +0,0 @@ - -var min_date = new Date(2015, 9-1, 1); //September 1, 2015 -var max_date = "+0d"; //Today (zero days from today) -var depths = new Array(5, 25, 60); - -$(document).ready(function() { - - // create checkboxes for the depths - for(var i = 0; i < depths.length; i++) { - var container = $("#pick_depths"); - var n = depths[i].toString() + 'cm'; - var v = depths[i]; - $('', { type: 'checkbox', id: n, value: v, checked: 'checked' }).appendTo(container); - $('