master
cv server 2020-01-02 19:13:58 -07:00
parent a57b66f5cb
commit db31f81c00
5 changed files with 14 additions and 14 deletions

View File

@ -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`.

2
wut
View File

@ -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/

View File

@ -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"

View File

@ -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"

View File

@ -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...