Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

README improvements for first time users #65

Open
wants to merge 2 commits into
base: develop-weekly
Choose a base branch
from

Conversation

aclel
Copy link

@aclel aclel commented Feb 28, 2024

I went through the README from scratch on a Windows machine to check if the order of the instructions made sense. This PR is proposing to reorder parts of the README so that everything that a first time user needs to get ginan running is in one spot.

  • Getting started with Docker has been moved to the top. The AppImage is simple to use, but it does not have any example data so it's not easy for a user to run ginan for the first time.
  • mkdir ginan-data has been added in the docker instructions so that a user does not encounter an error that ${host_data_folder} does not exist
  • The downloads with getData.sh and getProducts.sh have been moved up to the Getting Started section from the Build section
  • Ready! section has been moved to Getting Started
  • Python tools instructions has been moved to the Getting Started section instead of Installation from source section
  • Mongodb has been disabled in all examples, because it's unlikely that a first time user will have mongodb running, and it's just another option that they're going to have to find and turn off

The steps required to get ginan running the first time were out of
order. These changes move the data downloads to the getting started
section, remove some old instructions and introduce some more detailed
instructions for docker.
Simplifies the first time user experience so that they do not need to
find these settings if they do not have mongodb running.
@@ -185,7 +185,7 @@ estimation_parameters:

mongo: # Mongo is a database used to store results and intermediate values for later analysis and inter-process communication

enable: primary # Enable and connect to mongo database {none,primary,secondary,both}
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Mongo is required for running Ginan in real-time so this will need to stay as is

@@ -43,7 +43,7 @@ processing_options:
process: true

mongo:
enable: primary
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

SNR recording goes into the Mongo database, so this will need to stay as is

@@ -473,7 +473,7 @@ estimation_parameters:


mongo:
enable: primary
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I haven't run this example, but may need mongo to do precise orbit determination (I'll let others comment on this)

@@ -181,7 +181,7 @@ estimation_parameters:


mongo:
enable: primary
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Same as the pod example below, not sure if Mongo is needed on this. If not, happy to not have mongo enabled

You can quickly download a ready-to-run Ginan environment using docker by running:

mkdir ginan-data
docker run -it -v ginan-data:/data gnssanalysis/ginan:v3.0.0 bash
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This works locally for me when I have sudo out the front. An additional line on that below would be good to inform users that may have trouble getting it started


```bash
cd inputData/data
./getData.sh
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

These scripts will download into the /ginan directory, which is not mapped to the local machine (and therefore will disappear once the terminal is closed).

This may be ok for the inputs if that's what we want, but the output directory also points at locations within /ginan.
Just a note to the user in the README would be fine at this point, but we may want to change this a bit so that outputs go to the ginan-data directory that you've created.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants