import pandas as pd
fields = pd.DataFrame(columns=['ra_deg', 'dec_deg'])
fields.loc['47Tuc'] = [ 6.02, -72.08] # 47 Tuc Globular Cluster
fields.loc['LELF_SV_38_7'] = [ 37.86, 6.98] # Low Ecliptic Latitude Field
fields.loc['Fornax'] = [ 40.00, -34.45] # Fornax Dwarf Spheroidal Galaxy
fields.loc['ECDFS'] = [ 53.13, -28.10] # Extended Chandra Deep Field South
fields.loc['EDFS'] = [ 59.10, -48.73] # Euclid Deep Field South
fields.loc['LGLF_SV_95_-25'] = [ 95.00, -25.00] # Low Galactic Latitude Field
fields.loc['Seagull_Nebula'] = [106.23, -10.51] # Seagull Nebula
fields.index.name = 'field'
fields.to_csv('LSSTComCam_fields.csv')