meteortools.ukmondb
Functions to access data in the UKMON database.
getECSVs get the ECSV file or files for a given date-time
getLiveImages functions to get a list of livestream images or fireball imaqegs
trajectoryKML get a KML file for a UKMON trajectory, suitable for use in google maps
trajPickle get a WMPL pickle object for a trajectory
apiExampleCode various examples of how to use the APIs
1# Copyright (C) 2018-2023 Mark McIntyre 2# flake8: noqa 3""" 4Functions to access data in the UKMON database. 5 6getECSVs get the ECSV file or files for a given date-time 7getLiveImages functions to get a list of livestream images or fireball imaqegs 8trajectoryKML get a KML file for a UKMON trajectory, suitable for use in google maps 9trajPickle get a WMPL pickle object for a trajectory 10apiExampleCode various examples of how to use the APIs 11""" 12 13from .ECSVhandler import getECSVs 14from .getMatches import getMatchesForDate, getDetailsOfMatch, getDetailOfMatchList 15from .getLiveImages import getLiveJpgs, getFBfiles, createTxtFile, getLiveimageList 16from .trajectoryKML import trajectoryKML 17from .trajPickle import getTrajPickle 18from .getDetections import getDetections