From 2e751d8548021917a26669f155633344ca831ccb Mon Sep 17 00:00:00 2001 From: Winston Olson-Duvall Date: Sun, 30 Jan 2022 10:44:21 -0800 Subject: [PATCH] Update readme --- README.md | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 7e6df51..a2f9986 100644 --- a/README.md +++ b/README.md @@ -2,27 +2,29 @@ ## Description -The emit-sds-l1a repository contains scripts for executing the various EMIT L0 PGEs. These PGEs include the following functions: +Welcome to the emit-sds-l1a repository. This repository contains scripts for executing the various EMIT L0 PGEs. These PGEs include the following functions: * Stripping HOSC headers from input HOSC files and outputting CCSDS files * Getting the start and stop times of CCSDS files +To understand how this repository is linked to the rest of the emit-sds repositories, please see the [repository guide](https://github.com/emit-sds/emit-main/wiki/Repository-Guide). + ## Installation Instructions Clone the repository: -```bash +``` git clone https://github.jpl.nasa.gov/emit-sds/emit-sds-l0.git ``` Run pip install: -```bash +``` cd emit-sds-l0 pip install -e . ``` Clone the L0 EDP repository: -```bash +``` git clone https://github.jpl.nasa.gov/emit/emit-l0edp.git ``` Build cargo -```bash +``` cd emit-l0edp cargo build --release ``` @@ -35,7 +37,7 @@ This repository is based on Python 3.x. See `emit-sds-l0/setup.py` for specific ### Stripping HOSC Headers -```bash +``` ./run_l0.sh ``` Where: @@ -47,6 +49,6 @@ Where: ### Getting CCSDS Start and Stop Times -```bash +``` python get_ccsds_start_stop_times.py ```