Skip to content

Commit

Permalink
Merge pull request #157 from jread-usgs/master
Browse files Browse the repository at this point in the history
md from Rmd file
  • Loading branch information
Jordan S Read committed May 22, 2015
2 parents 9574ebd + 19d0045 commit c27eae6
Show file tree
Hide file tree
Showing 4 changed files with 379 additions and 162 deletions.
11 changes: 6 additions & 5 deletions README.Rmd
@@ -1,4 +1,4 @@
#`geoknife`
#`geoknife` package version `r packageVersion('geoknife')`

[![Build status](https://ci.appveyor.com/api/projects/status/0iacmg82mp50426o/branch/master)](https://ci.appveyor.com/project/jread-usgs/geoknife/branch/master)
[![Build Status](https://travis-ci.org/USGS-R/geoknife.svg)](https://travis-ci.org/USGS-R/geoknife)
Expand Down Expand Up @@ -75,24 +75,25 @@ running(job)
error(job)
successful(job)
```
# wait a little for the process to complete
#####plot the results
```{r, fig.height=3.5, fig.width=7}
data <- loadOutput(job)
plot(data[,1:2], ylab = variables(fabric))
```

# use an email to listen for process completion
#####use an email to listen for process completion
```{r, eval=FALSE}
job <- geoknife(webgeom('state::NH'), fabric = 'prism', email = 'fake.email@gmail.com')
job <- geoknife(webgeom('state::New Hampshire'), fabric = 'prism', email = 'fake.email@gmail.com')
```

###`geoknife` Functions (as of v0.7.4)
###`geoknife` Functions (as of v0.10.0)
| Function | Title |
| ------------- |:-------------|
| `geoknife` | slice up gridded data according to overlap with feature(s) |
| `algorithm` | the algorithm of a `webprocess` |
| `attribute` | the attribute of an `webgeom` |
| `check` | check status of `geojob` |
| `download` | download the results of a `geojob` |
| `error` | convenience function for state of `geojob` |
| `running` | convenience function for state of `geojob` |
| `successful` | convenience function for state of `geojob` |
Expand Down
13 changes: 7 additions & 6 deletions README.md
@@ -1,4 +1,4 @@
#`geoknife`
#`geoknife` package version 0.10.0

[![Build status](https://ci.appveyor.com/api/projects/status/0iacmg82mp50426o/branch/master)](https://ci.appveyor.com/project/jread-usgs/geoknife/branch/master)
[![Build Status](https://travis-ci.org/USGS-R/geoknife.svg)](https://travis-ci.org/USGS-R/geoknife)
Expand Down Expand Up @@ -80,7 +80,7 @@ check(job)
## [1] "Process successful"
##
## $URL
## [1] "http://cida.usgs.gov:80/gdp/process/RetrieveResultServlet?id=7ba7b018-0378-47e1-9b41-6820216ea88cOUTPUT"
## [1] "http://cida.usgs.gov:80/gdp/process/RetrieveResultServlet?id=0810e795-509f-49d7-bedd-66bba09c8ca2OUTPUT"
##
## $statusType
## [1] "ProcessSucceeded"
Expand All @@ -92,7 +92,7 @@ running(job)
error(job)
successful(job)
```
# wait a little for the process to complete
#####plot the results

```r
data <- loadOutput(job)
Expand All @@ -101,19 +101,20 @@ plot(data[,1:2], ylab = variables(fabric))

![plot of chunk unnamed-chunk-7](figure/unnamed-chunk-7-1.png)

# use an email to listen for process completion
#####use an email to listen for process completion

```r
job <- geoknife(webgeom('state::NH'), fabric = 'prism', email = 'fake.email@gmail.com')
job <- geoknife(webgeom('state::New Hampshire'), fabric = 'prism', email = 'fake.email@gmail.com')
```

###`geoknife` Functions (as of v0.7.4)
###`geoknife` Functions (as of v0.10.0)
| Function | Title |
| ------------- |:-------------|
| `geoknife` | slice up gridded data according to overlap with feature(s) |
| `algorithm` | the algorithm of a `webprocess` |
| `attribute` | the attribute of an `webgeom` |
| `check` | check status of `geojob` |
| `download` | download the results of a `geojob` |
| `error` | convenience function for state of `geojob` |
| `running` | convenience function for state of `geojob` |
| `successful` | convenience function for state of `geojob` |
Expand Down

0 comments on commit c27eae6

Please sign in to comment.