Explore JWQL database tables through the web browser
This page allows users to interactively explore the JWQL database tables. The main function of this tool is to
visually inspect data through the JWQL Web Application. Simply select a table from the dropdown menu to begin,
if further investigation of the table is needed, you can click the "Download Data" button to obtain the displayed
table as a CSV file.
The database table naming convention follows:
Importing A Table Using Python's Pandas Library
After downloading JWQLDB data, it is simple to import this data in a python session using pandas. Visit the pandas documentation for more information.
import pandas as pd # import pandas
# Open CSV file with pandas
nircam_bias_stats = pd.read_csv('/path/to/downloads/nircam_bias_stats.csv')
print(nircam_bias_stats.columns) # to see column names.
print(nircam_bias_stats['expstart']) # to print exposure start times.