Skip to content

Commit

Permalink
fawda123 published a site update
Browse files Browse the repository at this point in the history
  • Loading branch information
fawda123 committed Sep 11, 2023
1 parent 7c6e3fc commit fb56114
Show file tree
Hide file tree
Showing 21 changed files with 1,259 additions and 831 deletions.
100 changes: 70 additions & 30 deletions 404.html

Large diffs are not rendered by default.

200 changes: 120 additions & 80 deletions appendices.html

Large diffs are not rendered by default.

170 changes: 105 additions & 65 deletions background.html

Large diffs are not rendered by default.

165 changes: 108 additions & 57 deletions cases.html

Large diffs are not rendered by default.

Binary file modified data-management-sop.epub
Binary file not shown.
Binary file modified data-management-sop.pdf
Binary file not shown.
355 changes: 190 additions & 165 deletions data-management-sop.tex

Large diffs are not rendered by default.

31 changes: 18 additions & 13 deletions data/my_eml.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<eml:eml xmlns:eml="https://eml.ecoinformatics.org/eml-2.2.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:stmml="http://www.xml-cml.org/schema/stmml-1.2" packageId="3664d210-40f2-4afd-8c21-55f7b512f2a8" system="uuid" xsi:schemaLocation="https://eml.ecoinformatics.org/eml-2.2.0 https://eml.ecoinformatics.org/eml-2.2.0/eml.xsd">
<eml:eml xmlns:eml="https://eml.ecoinformatics.org/eml-2.2.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:stmml="http://www.xml-cml.org/schema/stmml-1.2" packageId="012a0ea9-d6ce-4c8b-8b9f-c7aaf08f69a2" system="uuid" xsi:schemaLocation="https://eml.ecoinformatics.org/eml-2.2.0 https://eml.ecoinformatics.org/eml-2.2.0/eml.xsd">
<dataset>
<title>Water Quality Assessment Data</title>
<creator>
Expand Down Expand Up @@ -29,6 +29,11 @@
</endDate>
</rangeOfDates>
</temporalCoverage>
<taxonomicCoverage>
<taxonomicClassification>
<taxonRankName>Species</taxonRankName>
</taxonomicClassification>
</taxonomicCoverage>
</coverage>
<contact>
<individualName>
Expand All @@ -41,18 +46,18 @@
<methodStep>
<description>
<para>
All data were from the Environmental Protection Commission of
Hillsborough County
(https://www.epchc.org/i-want-to/view-gis-maps-and-data). Data are
monthly at mid-depth for each of 50 stations throughout the Bay from
1974 to 2020. Stations were visited on a rotating schedule such that
one third of all stations were sampled each week. Bay segments
represent management units of interest with distinct chemical and
physical differences. Accordingly, station data were aggregated by
median values within each of four Bay segments. Data are used to
assess progress in achieving programmatic goals for the Tampa Bay
Estuary Program.
</para>
All data were from the Environmental Protection Commission of
Hillsborough County
(https://www.epchc.org/i-want-to/view-gis-maps-and-data). Data are
monthly at mid-depth for each of 50 stations throughout the Bay from
1974 to 2020. Stations were visited on a rotating schedule such that
one third of all stations were sampled each week. Bay segments
represent management units of interest with distinct chemical and
physical differences. Accordingly, station data were aggregated by
median values within each of four Bay segments. Data are used to
assess progress in achieving programmatic goals for the Tampa Bay
Estuary Program.
</para>
</description>
</methodStep>
</methods>
Expand Down
136 changes: 88 additions & 48 deletions final.html

Large diffs are not rendered by default.

132 changes: 86 additions & 46 deletions index.html

Large diffs are not rendered by default.

182 changes: 111 additions & 71 deletions keys.html

Large diffs are not rendered by default.

15 changes: 0 additions & 15 deletions libs/accessible-code-block-0.0.1/empty-anchor.js

This file was deleted.

33 changes: 0 additions & 33 deletions libs/anchor-sections-1.0.1/anchor-sections.js

This file was deleted.

2 changes: 2 additions & 0 deletions libs/anchor-sections-1.1.0/anchor-sections-hash.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
/* Styles for section anchors */
a.anchor-section::before {content: '#';font-size: 80%;}
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
/* Styles for section anchors */
a.anchor-section {margin-left: 10px; visibility: hidden; color: inherit;}
a.anchor-section::before {content: '#';}
.hasAnchor:hover a.anchor-section {visibility: visible;}
ul > li > .anchor-section {display: none;}
11 changes: 11 additions & 0 deletions libs/anchor-sections-1.1.0/anchor-sections.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
document.addEventListener('DOMContentLoaded', function () {
// If section divs is used, we need to put the anchor in the child header
const headers = document.querySelectorAll("div.hasAnchor.section[class*='level'] > :first-child")

headers.forEach(function (x) {
// Add to the header node
if (!x.classList.contains('hasAnchor')) x.classList.add('hasAnchor')
// Remove from the section or div created by Pandoc
x.parentElement.classList.remove('hasAnchor')
})
})
10 changes: 4 additions & 6 deletions libs/gitbook-2.6.7/css/style.css

Large diffs are not rendered by default.

6 changes: 5 additions & 1 deletion libs/gitbook-2.6.7/js/plugin-clipboard.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,9 @@ gitbook.require(["gitbook", "jQuery"], function(gitbook, $) {

// the page.change event is thrown twice: before and after the page changes
if (clipboard) {
// clipboard is already defined
// clipboard is already defined but we are on the same page
if (clipboard._prevPage === window.location.pathname) return;
// clipboard is already defined and url path change
// we can deduct that we are before page changes
clipboard.destroy(); // destroy the previous events listeners
clipboard = undefined; // reset the clipboard object
Expand All @@ -24,6 +26,8 @@ gitbook.require(["gitbook", "jQuery"], function(gitbook, $) {
}
});

clipboard._prevPage = window.location.pathname

});

});
Loading

0 comments on commit fb56114

Please sign in to comment.