Paper Data Links

Information about data used in papers.

Home

Contributing

Contributing to Paper Data Links

We welcome contributions to Paper Data Links! Here are some guidelines to help you get started.

Expected Structure

Contributed materials should follow the expected directory structure and file requirements:

Example structure:

papers/2023/ApJ/2023ApJ...943...70S/  
│  
├── INSTRUMENT_DETAILS.md  
├── download_script.py  
├── README.md 

Pull Request Actions

We categorize the actions one can take with a new PR as follows:

Guidelines for Acceptance

Instrument Details

Download Script

  1. Required Parameters:
    • Time Ranges: Must be correctly specified.
    • Instruments: Must be correctly specified.
  2. Optional Parameters:
    • Physical Observables, Wavelengths, Cadences:
      • It’s acceptable if these are omitted.
      • It’s NOT acceptable if they are supplied but incorrect.
  3. Handling Broad Time Ranges:
    • If the script does not reliably run due to broad time ranges, include a comment in the code explaining why results are unlikely to be returned.
    • Example comment:
       # WARNING: BROAD TIME RANGE
       # This query may not return results due to fetching too many files.
       # Consider using a shorter time range (e.g., a day or a week) to see results from providers.
      
  4. Review Papers:
    • Generally, ignore scripts for review papers unless they produce a correct script without extensive errors.
  5. Observation Gaps:
    • Count as correct if the gaps are not mentioned.
    • Need not be accounted for, but nice to have.

README.md

The README.md file should contain YAML front matter with the following required keys:

---
layout: paper
title: [Paper Title]
bibcode: [NASA/ADS Bibcode]
authors:
  - [Author 1]
  - [Author 2]
  # ... more authors
vso_source_keys:
  [Source Key 1]: [Source Name 1]
  [Source Key 2]: [Source Name 2]
  # ... more sources
vso_instrument_keys:
  [Instrument Key 1]: [Instrument Name 1]
  [Instrument Key 2]: [Instrument Name 2]
  # ... more instrumentsA
year: [Year of Publication]
journal_abbrev: [Journal Abbreviation, (bibstem)]
---

All of these keys are required. Ensure that the information is accurate and matches the paper and the data sources used. Also, carefully note that the file MUST start and end with ---.

Available VSO sources can be found here.
Available VSO instruments can be found here.