Skip to content

Development of Standardized EPRV Data Format and Translator Tools

License

Notifications You must be signed in to change notification settings

EPRV-RCN/RVData

Repository files navigation

Documentation Status

EPRV_DataStandard

Development of a community endorsed, standardized EPRV data format at the 1D extracted spectra level, and a set of translator tools

https://eprv-data-standard.readthedocs.io/en/latest/

Objective

  1. Establish a community recommendation for standardized RV data and telemetry formats based upon input from participating (E)PRV instrument teams and partners from the observatories and data archives that will host the data for each instrument

  2. Develop prototype ‘translator’ tools that will re-write data from the native spectrograph outputs into this community standard format, and act as a template for other instruments to do the same.

Current Data Standard Links

Note: These continue to be in development for the time being, but the links below capture the current data format as recommended by this group

Data Format Overview: Google Slides Here

Level 2 Header Keywords: Google Doc Here

Repository structure and how to interact with it

Branch Structure

  • main - Release branch from which tagged releases are generated.
  • develop - Development branch where updates are aggregated between releases
  • feature_branch_name - Feature branches should be forked off of develop, and should be named with a human readable intuitive name. Delete feature branches once merged into develop and work in them is complete.

Developers

We recommend that developers use the following workflow:

First, setup your working environment:

  1. Create a fork of the repository into your github account by clicking the Fork icon on the right top corner of the main github EPRV-RCN/RVdata repo page.

  2. Clone your fork to your local computer: git clone [email protected]:YourGithubID/RVdata.git

  3. Setup a new remote named upstream that points to the project level repository: git remote add upstream [email protected]:EPRV-RCN/RVdata.git

To add a new feature or bugfix to the repository:

  1. Create a feature branch off of develop for your new work. Bugfix branches should prefix with bugfix.
git checkout -b feature_branch_name
  1. Make your changes, commit them with a useful commit message, and push to your fork.
git commit -m "Description of committed changes"
git push origin feature_branch_name
  1. Setup a pull request from your feature branch into the project level develop branch. Use the Pull requests menu item on the top bar of github.com. Be sure that the pull request points into the EPRV-RCN/RVdata develop branch. This will trigger a review request. Two reviews from the core development team are required before merging.

  2. Iterate with reviewers as needed, using the pull request to capture discussion comments. Once the reviewers approve the pull request, the original author is responsible for merging. If you encounter a merge conflict, ask for help. Do not proceed!