Skip to content

Commit b965bb3

Browse files
committed
update vetted status to status
1 parent 5d68295 commit b965bb3

File tree

3 files changed

+2
-3
lines changed

3 files changed

+2
-3
lines changed

README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,6 @@ Actual features :
9292
* transmitter mode
9393
* transmitter uuid
9494
* transmitter type
95-
* vetted status
9695
* vetted user
9796
* satnogs db
9897
* norad id

bin/glouton

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ if __name__ == "__main__":
4040
parser.add_argument('--gsid', '-g', dest='ground_station_id',
4141
help='the ground station id')
4242
parser.add_argument('--status', '-t', dest='status',
43-
help='the Observation status (good, bad, unknown, failed')
43+
help='the Observation status (good, bad, unknown, failed, future)')
4444
parser.add_argument('--sdate', '-s', dest='start_date', required='--last' not in sys.argv,
4545
help='start date (ex: 2018-01-20T00:51:54)')
4646
parser.add_argument('--edate', '-e', dest='end_date', required='--last' not in sys.argv,

glouton/repositories/observation/observationsRepo.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ def __url_param_builder(self, start_date, end_date):
5757
'ground_station': self.__cmd.ground_station_id,
5858
'start': start_date.isoformat(),
5959
'end': end_date.isoformat(),
60-
'vetted_status': self.__cmd.observation_status,
60+
'status': self.__cmd.observation_status,
6161
'vetted_user': self.__cmd.user,
6262
'transmitter_uuid': self.__cmd.transmitter_uuid,
6363
'transmitter_mode': self.__cmd.transmitter_mode,

0 commit comments

Comments
 (0)