From db31f81c00e900615dfb36bd08eccad44888bf6a Mon Sep 17 00:00:00 2001 From: cv server Date: Thu, 2 Jan 2020 19:13:58 -0700 Subject: [PATCH] rename --- README.md | 6 +++--- wut | 2 +- wut-get-obs => wut-obs | 6 +++--- wut-get-waterfall => wut-water | 6 +++--- wut-get-waterfall-range => wut-water-range | 8 ++++---- 5 files changed, 14 insertions(+), 14 deletions(-) rename wut-get-obs => wut-obs (84%) rename wut-get-waterfall => wut-water (89%) rename wut-get-waterfall-range => wut-water-range (89%) diff --git a/README.md b/README.md index 695e73a..4465862 100644 --- a/README.md +++ b/README.md @@ -28,9 +28,9 @@ Learning/Testing, results are inaccurate. The following scripts are in the repo: * `wut` --- Feed it an observation ID and it returns if it is a "good", "bad", or "failed" observation. -* `wut-get-obs` --- Download the JSON for an observation ID. -* `wut-get-waterfall` --- Download waterfall for an observation ID to `download/[ID]`. -* `wut-get-waterfall-range` --- Download waterfalls for a range of observation IDs to `download/[ID]`. +* `wut-obs` --- Download the JSON for an observation ID. +* `wut-water` --- Download waterfall for an observation ID to `download/[ID]`. +* `wut-water-range` --- Download waterfalls for a range of observation IDs to `download/[ID]`. * `wut-ml` --- Main machine learning Python script using Tensorflow and Keras. * `wut-review-staging` --- Review all images in `data/staging`. diff --git a/wut b/wut index 2faebf7..ebcf583 100755 --- a/wut +++ b/wut @@ -14,7 +14,7 @@ OBSID="$1" rm -rf data/test mkdir -p data/test/unvetted -./wut-get-waterfall $OBSID +./wut-water $OBSID cp -p download/$OBSID/waterfall_$OBSID_*.png data/test/unvetted/ diff --git a/wut-get-obs b/wut-obs similarity index 84% rename from wut-get-obs rename to wut-obs index a4f6f97..a33e82b 100755 --- a/wut-get-obs +++ b/wut-obs @@ -1,9 +1,9 @@ #!/bin/bash -# wut-get-obs +# wut-obs # Usage: -# wut-get-obs [Observation ID] [Observation ID] [Observation ID] ... +# wut-obs [Observation ID] [Observation ID] [Observation ID] ... # Example: -# wut-get-obs 1446272 1456893 +# wut-obs 1446272 1456893 # Download Observation: JSON. Not waterfall, audio, or data files. APIURL="https://network.satnogs.org/api" diff --git a/wut-get-waterfall b/wut-water similarity index 89% rename from wut-get-waterfall rename to wut-water index 917c655..52f9b68 100755 --- a/wut-get-waterfall +++ b/wut-water @@ -1,9 +1,9 @@ #!/bin/bash -# wut-get-waterfall +# wut-water # Usage: -# wut-get-waterfall [Observation ID] [Observation ID] [Observation ID] ... +# wut-water [Observation ID] [Observation ID] [Observation ID] ... # Example: -# wut-get-obs 1446272 1456893 +# wut-water 1446272 1456893 # Download Observation: JSON and waterfall. Not audio or data files. APIURL="https://network.satnogs.org/api" diff --git a/wut-get-waterfall-range b/wut-water-range similarity index 89% rename from wut-get-waterfall-range rename to wut-water-range index 90f5a15..95cafd6 100755 --- a/wut-get-waterfall-range +++ b/wut-water-range @@ -1,9 +1,9 @@ #!/bin/bash -# wut-get-waterfall-range +# wut-water-range # Usage: -# wut-get-waterfall-range [Observation ID Minumum] [Observation ID Maximum] +# wut-water-range [Observation ID Minumum] [Observation ID Maximum] # Example: -# wut-get-waterfall-range 1292461 1470525 +# wut-water-range 1292461 1470525 # Download Observation: JSON and waterfall. Not audio or data files. # This will download the observation on the command line and every one before it. # @@ -14,7 +14,7 @@ # a higher observation ID. # # So to get mostly all of the observations in December, 2019, run: -# wut-get-waterfall-range 1292461 1470525 +# wut-water-range 1292461 1470525 # # XXX Should check input is sane...