-
Notifications
You must be signed in to change notification settings - Fork 7
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
chore: add QuickStart section #171
Merged
Merged
Changes from 1 commit
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
33637d0
adding a quickstart first draft
uriii3 93bb285
adding a quickstart first draft
uriii3 25378eb
doc: update the quick overwiew file
renaudjester 5e5a164
typos and standarizing
uriii3 0c15f74
Python
uriii3 f92210d
more Python
uriii3 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -30,11 +30,11 @@ | |
"cell_type": "markdown", | ||
"metadata": {}, | ||
"source": [ | ||
"The main functions (which we will explain later in more detail) are:\n", | ||
"- Login: for authentication\n", | ||
"- Describe: to get metadata from the Data Store\n", | ||
"- Get: to download the native data\n", | ||
"- Subset: to download specific (spatiotemporal) regions of interest\n", | ||
"The main functions are:\n", | ||
"- **Login**: for authentication\n", | ||
"- **Describe**: to get metadata from the Data Store\n", | ||
"- **Get**: to download the native data\n", | ||
"- **Subset**: to download specific (spatiotemporal) regions of interest\n", | ||
"\n", | ||
"These four commands are available from the terminal (command line interface) and/or from a Python API (from scripts to notebooks!)\n" | ||
] | ||
|
@@ -50,11 +50,6 @@ | |
"There are different ways to use the Copernicus Marine toolbox, using the **`pip`** command, **`mamba | conda`**, the docker image or the binaries. You can see more information in the [installation page](installation-page) of the documentation." | ||
] | ||
}, | ||
{ | ||
"cell_type": "markdown", | ||
"metadata": {}, | ||
"source": [] | ||
}, | ||
{ | ||
"cell_type": "markdown", | ||
"metadata": {}, | ||
|
@@ -435,7 +430,7 @@ | |
"\n", | ||
"For more information, see the [page about subset](subset-page) of the documentation. You can also check the dedicated pages for the [command line interface](cli-subset) or the {func}`python interface <copernicusmarine.subset>`.\n", | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. the difference in the 'output' or how the two functions are presented might be a little weird, but for me it works. Just to keep it in mind. |
||
"\n", | ||
"The subset is a powerful tool that allow you to benefit from the power the Copernicus Marine services. Indeed, not only do you have access to the whole catalogue but you also can pinpoint the data that interest you thanks to the two services: \"arco-geo-series\" and \"arco-time-series\". They are respectively optimised for retieving maps (short time spam, wide area) and time series (long time span, small area). " | ||
"The subset is a powerful tool that allows you to benefit from the power the Copernicus Marine services. Indeed, not only do you have access to the whole catalogue but you also can pinpoint the data that interest you thanks to the two services: \"arco-geo-series\" and \"arco-time-series\". They are respectively optimised for retieving maps (short time spam, wide area) and time series (long time span, small area). " | ||
] | ||
}, | ||
{ | ||
|
@@ -1792,7 +1787,7 @@ | |
"cell_type": "markdown", | ||
"metadata": {}, | ||
"source": [ | ||
"Now if you have download this data, but you want to check if you data is up to data you can use the `sync` option. " | ||
"Now if you have downloaded this data, but you want to check if your data is up to date you can use the `sync` option. " | ||
] | ||
}, | ||
{ | ||
|
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think python needs to always be with capital P 🤔
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
If it's not the case in the rest of the documentation we need to change this
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Mmh python maybe yes, but I looked at how
python interface
was written in the code and it was the only instance with capital letter. I tried to keep the code consistent.But if it is better expressed with capital letters I can change the whole code too (doesn't have that many instances).