Skip to content

Commit 41ec912

Browse files
authored
Merge pull request #208 from julianpistorius/fix-typos
Fix typos
2 parents 2efbe2b + 26a4f3a commit 41ec912

18 files changed

Lines changed: 35 additions & 35 deletions

.github/ISSUE_TEMPLATE/default_template.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
*Fill out this issue by completing the items below. Not every item may be relevent to you, so feel free to make changes*
1+
*Fill out this issue by completing the items below. Not every item may be relevant to you, so feel free to make changes*
22

33
#### The tutorial or vignette name
44
Name:

index.Rmd

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -12,24 +12,24 @@ documentclass: book
1212

1313
This book is intended to quickly introduce users to TERRA REF data through a series of tutorials. TERRA REF has many types of data, and most can be accessed in multiple ways. Although this makes it more complicated to learn (and teach!), the objective is to provide users with the flexibility to access data in the most useful way.
1414

15-
The first section walks the user through the steps of downloading and combining three different types of data: plot level phenotypes, meteorological data, and images. Subesquent sections provide more detailed examples that show how to access a larger variety of data and meta-data.
15+
The first section walks the user through the steps of downloading and combining three different types of data: plot level phenotypes, meteorological data, and images. Subsequent sections provide more detailed examples that show how to access a larger variety of data and meta-data.
1616

1717
For those who are eager to see what is on deck, there are additional tutorials under development in the [tutorials repository](https://github.com/terraref/tutorials) on GitHub. These can be found in the traits, sensors, and genomics subfolders. Users are encouraged to revise and contribute new content.
1818

1919
## Pre-requisites
2020

2121
While we assume that readers will have some familiarity with the nature of the problem - remote sensing of crop plants - for the most part, these tutorials assume that the user will bring their own scientific questions and a sense of curiosity and are eager to learn.
2222

23-
These tutorials are aimed at users who are familiar with or willing to learn programming languages including R (particularly for accessing plot level trait data) and Python (primarily for accessing environmental data and sensor data). In addition, there are examples of using SQL for more sophisticated database queries as well as the bash terminal.
23+
These tutorials are aimed at users who are familiar with or willing to learn programming languages including R (particularly for accessing plot level trait data) and Python (primarily for accessing environmental data and sensor data). In addition, there are examples of using SQL for more sophisticated database queries, as well as the Bash terminal.
2424

25-
Some of the lessons only require a web browser; others will assume familarity with programming at the command line in (typically only one of) Python, R, and / or SQL. You should be willing to find help (see finding help, below).
25+
Some of the lessons only require a web browser; others will assume familiarity with programming at the command line in (typically only one of) Python, R, and / or SQL. You should be willing to find help (see finding help, below).
2626

2727
### Technical Requirements
2828

2929
At a minimum, you should have:
3030

3131
* An internet connection
32-
* Web Browser
32+
* Web browser
3333
* Access to the data that you are using
3434
+ The tutorials will state which databases you will need access to
3535
* Software:
@@ -39,12 +39,12 @@ At a minimum, you should have:
3939

4040
The first few chapters in the 'vignettes' section use publicly available sample data sets.
4141
Subsequent sections are also written to use publicly available data sets, but some of the examples require data that requires users to sign up.
42-
To sign up, you will need to 1) fill out the TERRA REF Beta user questionaire ([terraref.org/beta](https://terraref.org/beta)) and 2) request access to specific databases.
42+
To sign up, you will need to 1) fill out the TERRA REF Beta user questionnaire ([terraref.org/beta](https://terraref.org/beta)) and 2) request access to specific databases.
4343

44-
<!-- Not sure where this goes, either in documentation or perhaps in an appendix. But I don't think this belongs in the introduction. Perhaps after the vignettes chaper
44+
<!-- Not sure where this goes, either in documentation or perhaps in an appendix. But I don't think this belongs in the introduction. Perhaps after the vignettes chapter
4545
-->
4646

47-
## Ways of Acessing Data
47+
## Ways of Accessing Data
4848

4949
* Web Interfaces
5050
+ [Clowder](https://docs.terraref.org/user-manual/how-to-access-data/using-clowder-sensor-and-genoomics-data) (sensor and genomic data)

metadata/metadata_tutorial_addition.Rmd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ URL to a public published google sheet (you will need to provide this url in the
2727

2828
# How to Run this Rmd
2929

30-
Knitting this markdown file will not upload any data to the test database. Being able to knit this file means that you will not encounter any errors when uploading your metadata. All experiments, sites, treatments, cutlivars, and citations can be uploaded successfully.
30+
Knitting this markdown file will not upload any data to the test database. Being able to knit this file means that you will not encounter any errors when uploading your metadata. All experiments, sites, treatments, cultivars, and citations can be uploaded successfully.
3131

3232
To actually commit additions to the test database, you will need to make an edit to this markdown file.
3333

metadata/test_database_tutorial.Rmd

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ The purpose of this tutorial is to demonstrate how to set up a local instance of
1111

1212
You will want to set up this test database when preparing to upload data to the master database.
1313

14-
You should make sure that your data can be succesfully uploaded to the test database before trying to upload to master.
14+
You should make sure that your data can be successfully uploaded to the test database before trying to upload to master.
1515

1616
# Requirements:
1717

@@ -41,7 +41,7 @@ After initial set up, you will only need to run step 4 to restart the database.
4141

4242
## Step 1: Clone bety repository
4343

44-
In a directory of your chioce, clone the bety repository from github and cd to the bety folder:
44+
In a directory of your choice, clone the bety repository from github and cd to the bety folder:
4545

4646
```sh
4747
git clone https://github.com/PecanProject/bety.git
@@ -107,7 +107,7 @@ Open a new tab in the terminal and connect to the test database using:
107107
```sh
108108
psql -h localhost -p 5433 -U bety
109109
```
110-
You should see the following prompt if you have succesfully logged into the test database:
110+
You should see the following prompt if you have successfully logged into the test database:
111111
```sh
112112
psql (11.2, server 9.5.16)
113113
Type "help" for help.

sensors/01-meteorological-data.Rmd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ The data represent 5 minute summaries aggregated from 1/s observations.
147147
### Download data using the command line
148148

149149
Data can be downloaded from Clowder using the command line program Curl. If the
150-
following is typed into the commmand line, it will download the datapoints data
150+
following is typed into the command line, it will download the datapoints data
151151
that we're interested in as a file which we have chosen to call `spectra.json`.
152152

153153
```{sh eval=FALSE}

sensors/06-list-datasets-by-plot.Rmd

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -28,10 +28,10 @@ The *key* is a unique access key for the Clowder API.
2828

2929
## Getting the sensor list
3030

31-
The first thing to get is the sensor name. This can be retreived using the
31+
The first thing to get is the sensor name. This can be retrieved using the
3232
`get_sensor_list` function. This function returns the full record which may
3333
be useful in some cases but primarily includes sensor names that include
34-
a plot id number. The utility function `unique_sensor_names` accpets the
34+
a plot id number. The utility function `unique_sensor_names` accepts the
3535
sensor list and provides a list of names suitable for use in the
3636
`get_file_listing` function.
3737

@@ -96,7 +96,7 @@ of requests against the API it's possible to determine the files of interest and
9696

9797
Each of the API URL's have the same beginning (https://terraref.ncsa.illinois.edu/clowder/api),
9898
followed by the data needed for a specific request. As we step through the process you will be able
99-
to see how then end of the URL changes depending upon the reuqest.
99+
to see how then end of the URL changes depending upon the request.
100100

101101
Below is what the API looks like as a URL. Try pasting it into your browser.
102102

@@ -156,7 +156,7 @@ STREAM_ID=11586
156156
curl -o datasets.json -X GET "https://terraref.ncsa.illinois.edu/clowder/api/geostreams/datapoints?stream_id=${STREAM_ID}"
157157
```
158158

159-
After the call succeeds, a file named *datasets.json* is created containing the returned JSON onject. As part of the
159+
After the call succeeds, a file named *datasets.json* is created containing the returned JSON object. As part of the
160160
JSON object there are one or more `properties` fields containing *source_dataset* parameters.
161161

162162
```{javascript eval=FALSE}
@@ -211,7 +211,7 @@ of the files in the dataset with their IDs, and other data if available:
211211

212212
### Retrieving the files
213213

214-
Given that a large number of files may be contained in a dataset, it may be desireable to automate the process of pulling down files
214+
Given that a large number of files may be contained in a dataset, it may be desirable to automate the process of pulling down files
215215
to the local system.
216216

217217
For each file to be retrieved, the unique file ID is needed on the URL.

sensors/09-vnir-radiometer.Rmd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ output: html_document
1010

1111
An Ocean Optics STS Spectrometer measures downwelling solar spectral radiance every 5s on top of the Gantry.
1212

13-
Lets look at the output from this sensor over the course of the day (and then we will see how to acces the data):
13+
Lets look at the output from this sensor over the course of the day (and then we will see how to access the data):
1414

1515
```{r one-downwelling-spectra}
1616
library(tidyverse)

traits/00-BETYdb-getting-started.Rmd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# (PART\*) Secton 2: Traits {-}
1+
# (PART\*) Section 2: Traits {-}
22

33
# Getting Started with BETYdb
44

traits/06-agronomic-metadata.Rmd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Querying Agronomic Meta-data
22

3-
In previous tutorials you have learned how to query trait data using a variety of different methods, including the web interface, an API, and the R traits package. Here you will continute to use the R traits package, and learn how to access meta-data from other tables in the database.
3+
In previous tutorials you have learned how to query trait data using a variety of different methods, including the web interface, an API, and the R traits package. Here you will continue to use the R traits package, and learn how to access meta-data from other tables in the database.
44

55
While the basic search query that we have used in previous sections provides the key information that you may need for an analysis - the genotype name, the location, date, and method, there are other tables that contain more specific metadata.
66

traits/07-betydb-sql-access.Rmd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ will be derived from https://github.com/pi4-uiuc/2017-bootcamp/blob/master/conte
44

55
## On workbench
66

7-
On the TERRA REF Workbench, you have access to the database. These connnections will only work if you are on the workbench.
7+
On the TERRA REF Workbench, you have access to the database. These connections will only work if you are on the workbench.
88

99

1010
## Using PostgresSQL Studio

0 commit comments

Comments
 (0)