Skip to content

Commit

Permalink
more fixes to column starting positions
Browse files Browse the repository at this point in the history
  • Loading branch information
kmaitreys authored Sep 25, 2024
1 parent f705aab commit f022923
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions astroquery/linelists/cdms/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -220,14 +220,14 @@ def _parse_result(self, response, *, verbose=False):
text = soup.find('pre').text

starts = {'FREQ': 0,
'ERR': 14,
'LGINT': 25,
'DR': 36,
'ELO': 38,
'ERR': 13,
'LGINT': 24,
'DR': 35,
'ELO': 37,
'GUP': 47,
'MOLWT': 50,
'TAG': 54,
'QNFMT': 58,
'TAG': 53,
'QNFMT': 57,
'Ju': 61,
'Ku': 63,
'vu': 65,
Expand All @@ -240,7 +240,7 @@ def _parse_result(self, response, *, verbose=False):
'F1l': 79,
'F2l': 81,
'F3l': 83,
'name': 89}
'name': 85}

result = ascii.read(text, header_start=None, data_start=0,
comment=r'THIS|^\s{12,14}\d{4,6}.*',
Expand Down

0 comments on commit f022923

Please sign in to comment.