Skip to content

Commit

Permalink
Dwc page updated
Browse files Browse the repository at this point in the history
  • Loading branch information
silasprincipe committed Aug 24, 2023
1 parent a1bf8b7 commit 336f6dd
Show file tree
Hide file tree
Showing 4 changed files with 43 additions and 2 deletions.
1 change: 1 addition & 0 deletions content/find-your-dwc/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ You may also want to explore our extensive documentation in the [OBIS manual](ht
$('#event-core2').load("event_core.html");
$('#emof-ext1').load("emof_ext.html");
$('#emof-ext2').load("emof_ext.html");
$('#emof-ext3').load("emof_ext.html");
$('#dna-ext1').load("dna_ext.html");
$('#dna-ext2').load("dna_ext.html");

Expand Down
27 changes: 25 additions & 2 deletions content/packages/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,14 @@ title: Packages
menu: sidebar
weight: 2
---

{{< rawhtml >}}
<style>
h5 {
font-size: 1.25em;
color: #0076b1!important;
}
</style>
{{< /rawhtml >}}
OBIS created some packages and pipelines to help users work with OBIS data within a programming environment. Our main packages were developed for the __R__ language.

Chose your programming language:
Expand All @@ -16,7 +23,23 @@ Chose your programming language:

### R

##### `robis`
{{< rawhtml >}}
<div class="package-box-container">
<div class="package-box-image">
<img src="robis.png" alt="robis logo">
</div>
<div class="package-box">
{{< /rawhtml >}}
##### robis

`robis`, our flagship R package, is a client for the OBIS API. It includes functions for data access, as well as a few helper functions for visualizing occurrence data and extracting nested MeasurementOrFact or DNADerivedData records.

Available through CRAN (use `install.packages("robis")`)
GitHub: https://github.com/iobis/robis
{{< rawhtml >}}
</div>
</div>
{{< /rawhtml >}}

##### `obistools`

Expand Down
Binary file added content/packages/robis.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
17 changes: 17 additions & 0 deletions static/css/custom.css
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,23 @@ a{
color: #0076b1!important;
}

/* Flexboxs for package page */

.package-box-container {
display: flex;
}
.package-box-image {
padding: 20px;
width: 250px;
height: auto;
}
.package-box {
padding: 20px;
width: 100%;
height: auto;
margin-left: 10px;
}

/* Add gray background to sidebar */
.sidebar {
background-color: #f5f5f5;
Expand Down

0 comments on commit 336f6dd

Please sign in to comment.