From 0e38c66020c0252eefa08c3f67317d81818b2e00 Mon Sep 17 00:00:00 2001 From: Rob Baker Date: Wed, 7 Feb 2024 14:32:21 -0700 Subject: [PATCH 01/33] add DRR template file as a rmd template in Rstudio. --- .../skeleton/skeleton.Rmd | 560 ++++++++++++++++++ inst/rmarkdown/templates/template.yaml | 4 + 2 files changed, 564 insertions(+) create mode 100644 inst/rmarkdown/templates/editable_DRR_template/skeleton/skeleton.Rmd create mode 100644 inst/rmarkdown/templates/template.yaml diff --git a/inst/rmarkdown/templates/editable_DRR_template/skeleton/skeleton.Rmd b/inst/rmarkdown/templates/editable_DRR_template/skeleton/skeleton.Rmd new file mode 100644 index 0000000..e042a59 --- /dev/null +++ b/inst/rmarkdown/templates/editable_DRR_template/skeleton/skeleton.Rmd @@ -0,0 +1,560 @@ +--- +output: + word_document: default + pdf_document: default +bibliography: references.bib +csl: national-park-service-DRR.csl +--- + +```{=html} + +``` +```{r user_edited_parameterss, include=FALSE} +# The title of your DRR. Should all DRR start with "Data Release Report:"? Should we enforce titles specifically referencing the data package(s) they the report is about? +title <- "DRR Title" + +# Optional and should only be included if publishing to the semi-official DRR series. Contact Joe if you are. If not, leave as NULL +reportNumber <- ": get this number from Joe DeVivo" + +# This should match the Data Store Reference ID for this DRR. Eventually we should be able to pull this directly from the data package metadata. +DRR_DSRefID <- 7654321 + +#Author names and affiliations: + +#One way to think of the author information is that you are building a table: + +# Author | Affiliation | ORCID +# Jane | Institute 1 | 0000-1111-2222-3333 +# Jane | Institute 2 | 0000-1111-2222-3333 +# John | Institute 2 | NA + +#once the table is built, authors can be associated with the appropriate institute via relevant superscripts and the institutes can be listed only once in the DRR. + +# list the authors. If an author has multiple institutional affiliations, you must list the author multiple times. In this example, Jane Doe is listed twice because she has two affiliations. +authorNames <- c( + "Jane Doe", + "Jane Doe", + "John Doe" +) + +# List author affiliations. The order of author affiliations must match the order of the authors in AuthorNames. If an author has multiple affiliations, the author must be listed 2 (or more) times under authorNames (above) and each affiliation should be listed in order. If authors share the same affiliation, the affiliation should be listed once for each author. In this case, Managed Business Solutions (MBS) is listed twice because it is associated with two authors. MBS will only print to the DRR once. + +#Note that the entirety of each affiliation is enclosed in quotations. Do not worry about indentation or word wrapping. +authorAffiliations <- c( + "NPS Inventory and Monitoring Division, 1201 Oakridge Dr., Suite 150, Fort Collins, Colorado", + "Managed Business Solutions (MBS), a Sealaska Company, Contractor to the National Park Service, Natural Resource Stewardship and Science Directorate, 1201 Oakridge Dr., Suite 150, Fort Collins, Colorado", + "Managed Business Solutions (MBS), a Sealaska Company, Contractor to the National Park Service, Natural Resource Stewardship and Science Directorate, 1201 Oakridge Dr., Suite 150, Fort Collins, Colorado" +) + +# List the ORCID iDs for each author in the format "(xxxx-xxxx-xxxx-xxxx)". If an author does not have an ORCID iD, specify NA (no quotes). If an author is listed more than once (for instance because they have multiple institutional affiliations), the ORCID iD must also be listed more than once. For more information on ORCID iDs and to register an ORCID iD, see https://www.orcid.org. + +#The order of the ORCID iDs must match the order of authors in AuthorNames.In this example, Jane Doe has an ORCID iD but John Doe does not. Jane's ORCID iD is listed twice because she her name is listed twice in authorNames(because she has two authorAffiliations). +authorORCID <- c( + "(0000-1111-2222-3333)", "(0000-1111-2222-3333)", NA + ) + +# Replace the text below with your abstract. +DRRabstract <- "Abstract Should go here. Multiple Lines are okay; it'll format correctly. Pay careful attention to non-standard characters, line breaks (
), carriage returns, and curly-quotes. You may find it useful to write the abstract in NotePad++ or some other text editor and not a word processor (such as Microsoft Word).\n\n + +Note that if you need multiple paragraphs or line breaks you can generate them using a combination of backslashes and n's. \n\n + +The abstract should succinctly describe the study, the assay(s) performed, the resulting data, and their reuse potential, but should not make any claims regarding new scientific findings. No references are allowed in this section." + +# DataStore reference ID for the data package associated with this report. You must have at least one data package.Eventually, we will automate importing much of this information from metadata. +dataPackageRefID <- c(12342567) + +# Must match title in DataStore and metadata +dataPackageTitle <- "Data Package Title" + +# Must match descriptions in the data package metadata +dataPackageDescription <- "Short title for data package1" + +# generates your data package DOI based on the data package DataStore reference ID. This is different from the DRR DOI! No need to edit this. +dataPackageDOI <- paste0("https://doi.org/10.57830/", dataPackageRefID) + +# list the file names in your data package. Do NOT include metadata files. +dataPackage_fileNames <- c( + "my_data.csv", + "my_data2.csv" +) + +# list the approximate size of each data file. Make sure the order corresponds to the order of of the file names in dataPackage_fileNames +dataPackage_fileSizes <- c("0.8 MB", "10 GB") + +# list a short, one-line description of each data file. Descriptions must be in the same order as the filenames. +dataPackage_fileDescript <- c( + "This is a short description of my_data.csv (a good guideline is 10 words or less).", + "This is a short description of my_data2.csv.") +``` + +```{r setup_do_not_edit, include=FALSE} +RRpackages <- c("markdown", + "rmarkdown", + "pander", + "knitr", + "yaml", + "kableExtra", + "devtools", + "tidyverse") + +inst <- RRpackages %in% installed.packages() +if (length(RRpackages[!inst]) > 0) { + install.packages(RRpackages[!inst], dep = TRUE, repos = "https://cloud.r-project.org") +} +lapply(RRpackages, library, character.only = TRUE) + +devtools::install_github("EmilyMarkowitz-NOAA/NMFSReports") +library(NMFSReports) +devtools::install_github("nationalparkservice/QCkit") +library(QCkit) +``` + +*`r (paste0("https://doi.org/10.38750/", DRR_DSRefID))`* + +```{r title_do_not_edit, echo=FALSE, results="asis"} +date <- format(Sys.time(), "%d %B, %Y") +cat("#", title, "\n") +if (!is.null(reportNumber)) { + subtitle <- paste0("Data Release Report ", reportNumber) + cat("###", subtitle) +} +``` + +```{r authors_do_not_edit, echo=FALSE, results="asis"} +author_list <- data.frame(authorNames, authorAffiliations, authorORCID) +unique_authors <- author_list %>% distinct(authorNames, + .keep_all = TRUE) +unique_affiliation <- author_list %>% distinct(authorAffiliations, + .keep_all = TRUE) + +#single author documents: +if(length(seq_along(unique_authors$authorNames)) == 1){ + + for (i in seq_along(unique_authors$authorNames)) { + curr <- unique_authors[i, ] + + #find all author affiliations + aff <- author_list[which(authorNames == curr$authorNames),] + aff <- aff$authorAffiliations + + #identify order of affiliation(s) in a unique list of affiliations + #build the superscripts for author affiliations + super_script <- unique_affiliation$authorAffiliations %in% aff + super <- which(super_script == TRUE) + script <- super + + if(length(seq_along(super)) > 1){ + script <- NULL + j <- 1 + while(j < length(seq_along(super))){ + script <- append(script, paste0(super[j],",")) + j <- j+1 + } + if(j == length(seq_along(super))){ + script <- append(script, super[j]) + } + } + } + cat("#### ", curr$authorNames, sep="") + if (is.na(curr$authorORCID)) { + } + if (!is.na(curr$authorORCID)) { + orc <- paste0(" ", curr$authorORCID, "") + cat({{ orc }}) + } + cat(" ^",script,"^", " ", " ", sep="") + + #cat("#### ", unique_authors$authorNames, "^1^", sep="") + #if(!is.na(authorORCID)){ + # orc <- paste0(" https://orcid.org/", unique_authors$authorORCID) + # cat({{ orc }}, "\n") + #} + #cat("#### ", unique_authors$authorAffiliations, sep="") +} + +#multi author documents: +if(length(seq_along(unique_authors$authorNames)) > 1){ + for (i in seq_along(unique_authors$authorNames)) { + curr <- unique_authors[i, ] + + #find all author affiliations + aff <- author_list[which(authorNames == curr$authorNames),] + aff <- aff$authorAffiliations + + #identify order of affiliation(s) in a unique list of affiliations + #build the superscripts for author affiliations + super_script <- unique_affiliation$authorAffiliations %in% aff + super <- which(super_script == TRUE) + script <- super + + if(length(seq_along(super)) > 1){ + script <- NULL + j <- 1 + while(j < length(seq_along(super))){ + script <- append(script, paste0(super[j],",")) + j <- j+1 + } + if(j == length(seq_along(super))){ + script <- append(script, super[j]) + } + } + + # if NOT the second-to-last author: + if(i < (length(seq_along(unique_authors$authorNames)) - 1)){ + cat("#### ", curr$authorNames, " ", sep="") + if (is.na(curr$authorORCID)) { + } + if (!is.na(curr$authorORCID)) { + orc <- paste0(" ", curr$authorORCID, " ") + cat({{ orc }}) + } + cat( " ^", script, "^", ", ", " ", sep = "") + } + + # if IS the second-to-last author + if(i == (length(seq_along(unique_authors$authorNames)) - 1)){ + + #if 3 or more authors, include a comma before the "and": + if(length(seq_along(unique_authors$authorNames)) > 2){ + cat(curr$authorNames, sep="") + if (is.na(curr$authorORCID)) { + } + if (!is.na(curr$authorORCID)) { + orc <- paste0(" ", curr$authorORCID, " ") + cat({{ orc }}) + } + cat(" ^",script,"^", ", ", sep="") + cat("and ", sep="") + } + + #If only 2 authors, omit comma before "and": + if(length(seq_along(unique_authors$authorNames)) == 2){ + cat("#### ", curr$authorNames, sep="") + if (is.na(curr$authorORCID)) { + } + if (!is.na(curr$authorORCID)) { + orc <- paste0(" ", curr$authorORCID, " ") + cat({{ orc }}) + } + cat(" ^",script,"^ ", sep = "") + cat("and ", sep="") + } + } + + # if IS the Last author : + if(i == length(seq_along(unique_authors$authorNames))){ + cat(curr$authorNames, sep="") + if (is.na(curr$authorORCID)) { + } + if (!is.na(curr$authorORCID)) { + orc <- paste0(" ", curr$authorORCID, " ") + cat({{ orc }}) + } + cat(" ^", script, "^", sep = "") + } + } +} +cat("\n\n") +for(i in 1:nrow(unique_affiliation)){ + cat("^",i,"^ ", unique_affiliation[i,2], "\n\n", sep="") + } +``` + +# Abstract + +`r DRRabstract` + +
+ +# Acknowledgements (optional) + +The Acknowledgements should contain text acknowledging non-author contributors. Acknowledgements should be brief, and should not include thanks to anonymous referees and editors or effusive comments. Grant or contribution numbers may be acknowledged. + +# Using citations in this document: + +To automate citations, add the citation to in bibtex format to the file "references.bib". You can manually copy and paste the bibtex for each reference in, or you can search for it from within Rstudio. From within Rstudio, make sure you are editing this document using the "Visual" view (as opposed to "Source"). From the "Insert" drop-down menu, select "\@ Citation..." (shortcut: Cntrl-Shift-F8). This will open a tool where you can view all the citations in your reference.bib file as well as search multiple databases for references, automatically insert the bibtex for the reference into your references.bib file (and customize the unique identifier if you'd like) and insert the in-text citation into the DRR template. + +Once a reference is in your references.bib file, from within this template you can simply type the '\@' symbol and select which reference to insert in the text. + +If you need to edit how the citation is displayed after inserting it into the text, switch back to the "Source" view. Each bibtex citation should start with a unique identifier; the example reference in the supplied references.bib file has the unique identifier "\@article{Scott1994,". Using the "Source" view in Rstudio, insert the reference in your text, by combining the "at" symbol with the portion of the unique identifier after the curly bracket: @Scott1994 . You can put a citation in parentheses using square brackets: [@Scott1994]. This will be rendered as (Scott, et al. 1994) in text. You can add multiple authors works a single parenthetical citation by separating them with a semi-colon. You can suppress the author and cite just the year by using a - symbol before the \@ : [-@Scott1994]. + +If you would like to format your citations manually, please feel free to do that instead. Make sure to examine the References section for examples of how to manually format each citation type. + +# Data Records (required) + +## Data Inputs (optional) + +If the data package being described was generated based on one or more pre-existing datasets, cite those datasets here. + +## Summary of Datasets Created (required) + +The Data Records section should be used to explain each data record associated with this work (for instance, a data package), including the DOI indicating where this information is stored, and provide an overview of the data files and their formats. Each external data record should be cited. Below is some sample text: + +This DRR describes the data package *`r dataPackageTitle`* which contains a metadata file and `r length(dataPackage_fileNames)` data files. These data were compiled and processed for dissemination by the National Park Service Inventory and Monitoring Division (IMD) and are available at `r dataPackageDOI` (see Table 1). + +```{r FileTable, echo=FALSE} +filelist <- data.frame(dataPackage_fileNames, dataPackage_fileSizes, dataPackage_fileDescript) + +knitr::kable(filelist, caption = paste0("**Table 1. ", dataPackageTitle, ": List of data files.**"), col.names = c("**File Name**", "**Size**", "**Description**"), format = "pandoc") +``` + +See Appendix for additional notes and examples. + +# Data Quality Evaluation (required) + +The Data Quality Evaluation section should present any analyses that are needed to support the technical quality of the dataset. This section may be supported by figures and tables, as needed. *This is a required section*; authors must provide information to justify the reliability of their data. Wherever possible & appropriate, data quality evaluation should be presented in the context of data standards and quality control procedures as prescribed in the project's quality assurance planning documentation. + +**Required elements for this section** + +*Required Table* + +```{r dataAcceptanceCriteria, echo=FALSE, eval=TRUE} +# To turn off, set eval=FALSE. +# Generates a table of acceptance criteria for each of the data quality fields in your data package. Mitigations taken when data did not meet the acceptance criteria should be described textually in the Data Quality Evaluation section. + +# Specify which columns in your data package are data quality fields in the dataQualityFields variable. In the example below, data quality fields/columns in the data package are listed in the format [FieldName]_flag. These data quality fields relate to the respective temporal, taxonomic, and geographic data. + +dataQualityFields <- c( + "eventDate_flag", + "scientificName_flag", + "coordinate_flag" + ) + +# Brief description of the acceptance criteria for each respective data quality field. The order of the acceptance criteria must match the order of the data quality fields. + +dataQualityAcceptanceCriteria <- c( + "Sampling event date within the start and end dates of the project", + "Taxon exists within Integrated Taxonomic Information System and GBIF", + "Sampling location is within the park unit boundaries" + ) + +data_criteria<-data.frame(dataQualityFields = str_remove(dataQualityFields, "_flag"), dataQualityAcceptanceCriteria) + +data_criteria %>% + NMFSReports::format_cells(1:3, 1, "bold") %>% + knitr::kable(caption = "**Table 2. Acceptance criteria for data evaluated.**", col.names=c("**Field**", "**Acceptance Criteria**"), format="pandoc", align = 'c') + +``` + +```{r data_column_flagging, echo=FALSE, eval=TRUE} +# To turn off, set eval=FALSE. +# Generates a table summarizing QC at the column level within each file. All flagged columns are included. To add additional non-flagged columns, specify them with column names: cols=("my_unflagged_data1", "my_unflagged_data2)" or numbers: cols=c(1:4). All non-missing data in unflagged columns is assumed accepted. If a file has no flagged columns and no specified custom columns, all values for that data file will be listed as "NA". + +#set directory to the location of your data package: +path <- "../../DataPackageWorkflow/dataPackages/BICY_Veg_Data_Package_Example" +dc_flags <- QCkit::get_custom_flags(directory = path, output="columns") +dc_flags$`File Name` <- gsub(".csv", "", dc_flags$`File Name`) + + +colnames(dc_flags)[2]<-paste0("Measure", "^1^") +colnames(dc_flags)[4]<-paste0("A", "^2^") +colnames(dc_flags)[8]<-paste0("% Accepted", "^3^") + +#Generate the table: +dc_flags %>% + knitr::kable( + caption = '**Table 3: Summary of data quality flags for each column [A – Accepted; AE – Accepted but Estimated; P – Provisional; R – Rejected.]**', + format = "pandoc", + digits = 2, + align = 'c', + col.names = c("**File Name**", "**Measure^1^**", "**Number of Reocrds**", "**A^2^**", "**AE**", "**R**", "**P**", "**% Accepted^3^**")) %>% +kableExtra::add_footnote( + c("The '_flag' suffix has been omitted from column names for brevity.", + "All non-missing data in specified unflagged columns are considered accepted.", + "% Accepted is calculated as the number of accepted (where A and AE are both considered accepted) divided by the total number of observations plus the number of missing observations."), + notation = "number" + ) + +``` + +```{r data_package_flagging, echo=FALSE, eval=TRUE} +# To turn off, set eval=FALSE. +# Generates a table summarizing data quality across all flagged columns of each data file. To add additional non-flagged columns, specify them with column names: cols=("my_unflagged_data1", "my_unflagged_data2)" or numbers: cols=c(1:4). All non-missing data in unflagged columns is assumed accepted. If a file has no flagged columns and no specified custom columns, all values for that data file will be listed as "NA". + +#set directory to the location of your data package +path<-"../../DataPackageWorkflow/dataPackages/BICY_Veg_Data_Package_Example" +dp_flags <- get_custom_flags(directory = path, output="files") + +#generate table: +dp_flags %>% + kableExtra::kbl(caption = '**Table 4: Summary of data quality flags for the data package [A – Accepted; AE – Accepted but Estimated; P – Provisional; R – Rejected.]**', + format = "pandoc", + col.names = c("**File Name**", "**A^1^**", "**AE**", "**R**", "**P**", "**% Accepted^2^**"), + digits=2, + align = 'c') %>% + kableExtra::add_footnote(c("All non-missing data in specified unflagged columns are considered accepted.", + "% Accepted is calculated as the number of accepted (where A and AE are both considered accepted) divided by the total number of observations plus the number of missing observations."), notation = "number") +``` + +Possible content **strongly Suggested to Include** + +- Occurrence rates or patterns in data that do not meet established standards or data quality objectives. + +Possible content **may include:** + +- experiments that support or validate the data-collection procedure(s) (e.g. negative controls, or an analysis of standards to confirm measurement linearity) +- statistical analyses of experimental error and variation +- general discussions of any procedures used to ensure reliable and unbiased data production, such as chain of custody procedures, blinding and randomization, sample tracking systems, etc. +- any other information needed for assessment of technical rigor by reviewers/users + +Generally, this **should not include:** + +- follow-up experiments aimed at testing or supporting an interpretation of the data +- statistical hypothesis testing (e.g. tests of statistical significance, identifying deferentially expressed genes, trend analysis, etc.) +- exploratory computational analyses like clustering and annotation enrichment (e.g. GO analysis). + +*Stock Text to include:* + +The data within the data records listed above have been reviewed by staff in the NPS Inventory and Monitoring Division to ensure accuracy, completeness, and consistency with documented data quality standards, as well as for usability and reproducibility (Table 3). Of the data that were evaluated for quality, XX.X% of fields in this data package met data quality standards. The *`r dataPackageTitle`* is suitable for its intended use as of the date of processing (`r Sys.Date()`). + +# Usage Notes (required) + +The Usage Notes should contain brief instructions to assist other researchers with reuse of the data. This may include discussion of software packages (with appropriate citations) that are suitable for analysing the assay data files, suggested downstream processing steps (e.g. normalization, etc.), or tips for integrating or comparing the data records with other datasets. Authors are encouraged to provide code, programs or data-processing workflows if they may help others understand or use the data. + +For studies involving privacy or safety controls on public access to the data, this section should describe in detail these controls, including how authors can apply to access the data, what criteria will be used to determine who may access the data, and any limitations on data use. + +## Acquiring the Data Package + +This data package is available for download from the NPS DataStore at `r dataPackageDOI` and can be directly imported into R data frames using the NPSutils package + +# Methods + +Ideally these methods are identical to the methods listed in the metadata accompanying the data package that the DRR describes.Future versions of this template will pull directly from metadata. + +The Methods should cite previous methods under use but also be detailed enough describing data production including experimental design, data acquisition assays, and any computational processing (e.g. normalization, image feature extraction) such that others can understand the methods and processing steps without referring to associated publications. Cite and link to the DataStore reference for the protocol for detailed methods sufficient for reproducing the experiment or observational study. Related methods should be grouped under corresponding subheadings where possible, and methods should be described in enough detail to allow other researchers to interpret the full study. + +Specific data inputs and outputs should be explicitly cited in the text and included in the References section below, following the same [Chicago Manual of Style author-date format](https://www.chicagomanualofstyle.org/tools_citationguide/citation-guide-2.html) in text. See the [USGS data citation guidelines](https://www.usgs.gov/data-management/data-citation) for examples of how to cite data in text and in the References section. + +Authors are encouraged to consider creating a figure that outlines the experimental workflow(s) used to generate and analyse the data output(s) (Figure 1). + +```{r figure1, echo=FALSE, fig.cap="Example general workflow to include in the methods section."} +include_graphics("vignettes/common/ProcessingWorkflow.png") +``` + +## Data Collection and Sample Processing Methods (optional) + +Include a description of field methods and sample processing + +## Additional Data Sources (optional) + +Provide descriptions (with citations) of other data sources used. + +## Data Processing (required if done) + +Summarize process and results of any QC processes done that manipulate, change, or qualify data. + +## Code Availability (required) + +For all studies using custom code in the generation or processing of datasets, a statement must be included indicating whether and how the code can be accessed and any restrictions to access. This section should also include information on the versions of any software used, if relevant, and any specific variables or parameters used to generate, test, or process the current dataset. Actual analytical code should be provided in Appendices. + +# References (required) + +Provide sufficient information to locate the resource. If the citation has a DOI, include the DOI at the end of the citation, including the prefix. If you are citing documents that have unregistered DOIs (such as a data package that you are working on concurrently) still include the DOI. Electronic resources data and data services or web sites should include the date they were accessed. Keep the following line of code if you would like to automate generating and formatting references: + +::: {#refs} +::: + +If you would like to manually format your references, delete the preceding two lines and use the following examples instead: Include bibliographic information for any works cited (including the data package the DRR is describing) in the above sections, using the standard *NPS NR Publication Series* referencing style. + +See the following examples: + +## Agency, Company, etc. as Author Examples + +Fung Associates Inc. and SWCA Environmental Consultants. 2010. Assessment of natural resources and watershed conditions for Kalaupapa National Historical Park. Natural Resource Report. NPS/NPRC/WRD/NRR—2010/261. National Park Service, Fort Collins, Colorado. + +Greater Yellowstone Whitebark Pine Monitoring Working Group. 2014. Monitoring whitebark pine in the Greater Yellowstone Ecosystem: 2013 annual report. Natural Resource Data Series. NPS/GRYN/NRDS—2014/631. National Park Service. Fort Collins, Colorado. + +National Park Service (NPS). 2016. State of the park report for Zion National Park. State of the Park Reports. No. 23. National Park Service. Washington, District of Columbia. + +U.S. Forest Service (USFS). 1993. ECOMAP. National hierarchical framework of ecological units. U. S. Forest Service, Washington, D.C. + +## Traditional Journal Article Examples + +Bradbury, J. W., S. L. Vehrencamp, K. E. Clifton, and L. M. Clifton. 1996. The relationship between bite rate and local forage abundance in wild Thompson’s gazelles. Ecology 77:2237–2255. + +Oakley, K. L., L. P. Thomas, and S. G. Fancy. 2003. Guidelines for long-term monitoring protocols. Wildlife Society Bulletin 31(4):1000–1003. + +Sawaya, M. A., T. K. Ruth, S. Creel, J. J. Rotella, J. B. Stetz, H. B. Quigley, and S. T. Kalinowski. 2011. Evaluation of noninvasive genetic sampling methods for cougars in Yellowstone National Park. The Journal of Wildlife Management 75(3):612–622. + +## Book Example + +Harvill, A. M., Jr., T. R. Bradley, C. E. Stevens, T. F. Wieboldt, D. M. E. Ware, D. W. Ogle, and G. W. Ramsey. 1992. Atlas of the Virginia flora, third edition. Virginia Botanical Associates, Farmville, Virginia. + +## Book Chapter Examples + +McCauly, E. 1984. The estimation of abundance and biomass of zooplankton in samples. Pages 228–265 in J. A. Dowling and F. H. Rigler, editors. A manual on methods for the assessment of secondary productivity in fresh waters. Blackwell Scientific, Oxford, UK. + +Watson, P. J. 2004. Of caves and shell mounds in west-central Kentucky. Pages 159–164 in Of caves and shell mounds. The University of Alabama Press, Tuscaloosa, Alabama. + +## Published Report Examples + +Bass, S., R. E. Gallipeau, Jr., M. Van Stappen, J. Kumer, M. Wessner, S. Petersburg, L. L. Hays, J. Milstone, M. Soukup, M. Fletcher, L. G. Adams, and others. 1988. Highlights of natural resource management 1987. National Park Service, Denver, Colorado. + +Holthausen, R. S., M. G. Raphael, K. S. McKelvey, E. D. Forsman, E. E. Starkey, and D. E. Seaman. 1994. The contribution of federal and nonfederal habitats to the persistence of the northern spotted owl on the Olympic Peninsula, Washington. General Technical Report PNW–GTR–352. U.S. Forest Service, Corvallis, Oregon. + +Jackson, L. L., and L. P. Gough. 1991. Seasonal and spatial biogeochemical trends for chaparral vegetation and soil geochemistry in the Santa Monica Mountains National Recreation Area. U.S. Geological Survey, Denver. Open File Report 91–0005. + +## Unpublished Report Examples + +Conant, B., and J. I. Hodges. 1995. Western brant population estimates. U.S. Fish and Wildlife Service Unpublished Report, Juneau, Alaska. + +Conant, B., and J. F. Voelzer. 2001. Winter waterfowl survey: Mexico west coast and Baja California. U.S. Fish and Wildlife Service Unpublished Report, Juneau, Alaska. + +## Thesis/Dissertation Examples + +Diong, C. H. 1982. Population and biology of the feral pig (Sus scrofa L) in Kipahulu Valley, Mau’i. Dissertation. University of Hawai’i, Honolulu, Hawai’i. + +McTigue, K. M. 1992. Nutrient pulses and herbivory: Integrative control of primary producers in lakes. Thesis. University of Wisconsin, Madison, Wisconsin. + +## Conference Proceedings Examples + +Gunther, K. A. 1994. Changing problems in bear management: Yellowstone National Park twenty-plus years after the dumps. Ninth International Conference on Bear Research and Management. Missoula, MT, International Association for Bear Research and Management, Bozeman, Montana, February 1992:549–560. + +Webb, J. R., and J. N. Galloway. 1991. Potential acidification of streams in Mid-Appalachian Highlands: A problem with generalized assessments. Southern Appalachian Man and Biosphere Conference. Gatlinburg, Tennessee. + +## General Internet Examples + +Colorado Native Plant Society. 2016. Colorado Native Plant Society website. Available at: (accessed 07 March 2016). + +National Park Service (NPS). 2016a. IRMA Portal (Integrated Resource Management Applications) website. Available at: (accessed 07 March 2016). + +National Park Service (NPS). 2016b. Natural Resource Publications Management website. Available at: (accessed 07 March 2016). + +United Sates Fish and Wildlife Service (USFWS). 2016. Endangered Species website. Available at: (accessed 07 March 2016). + +## Online Data Warehouse Sites (sites that allow you see and download data from multiple sources) + +National Oceanographic and Atmospheric Association (NOAA). 2016. NOAA National Climatic Data Center website. Available at: (accessed 07 March 2016). + +Environmental Protection Agency (EPA). 2016. Storage and Retrieval Data Warehouse website (STORET). Available at: (accessed 07 March 2016). + +National Park Service (NPS). 2016c. NPScape Landscape Dynamics Metric Viewer website. Available at: (accessed 07 March 2016). + +National Park Service (NPS). 2016d. NPSpecies online application. Available at: (accessed 07 March 2016). + +United States Geologic Survey (USGS). 2016. BioData - Aquatic Bioassessment Data for the Nation. Available at: (accessed 07 March 2016). + +# Appendix A. Code Listing + +In most cases, Code listing is not required. If all QA/QC and data manipulations were performed elsewhere, you should cite that code in the methods (and leave the "Listing" code chunk as the default settings: eval=FALSE and echo=FALSE). If you have developed custom scripts, you can add those to DataStore with the reference type "Script" and cite them in the DRR. Some people have developed code to perform QA/QC or data manipulation within the DRR itself. In that case, you must set the "Listing" code chunk to eval=TRUE and echo=TRUE to fully document the QA/QC process. + +```{r Listing, ref.label=knitr::all_labels(), echo=TRUE, eval=TRUE} + +``` + +\pagebreak + +# Appendix B. Session and Version Information + +In most cases you do not need to report session info (leave the "session-info" code chunk parameters in their default state: eval=FALSE). Session and version information is only necessary if you have set the "Listing" code chunk to eval=TRUE in appendix A. In that case, change the "session-info" code chunk parameters to eval=TRUE. + +```{r session-info, eval=TRUE, echo=FALSE, cache=FALSE} +sessionInfo() +Sys.time() +``` diff --git a/inst/rmarkdown/templates/template.yaml b/inst/rmarkdown/templates/template.yaml new file mode 100644 index 0000000..01bd841 --- /dev/null +++ b/inst/rmarkdown/templates/template.yaml @@ -0,0 +1,4 @@ +name: Editable_EML_Creation_Workflow +description: > + Template for generating EML metadata +create_dir: FALSE From 7e034ae9dfa4009a007ea4c89ae2872eb2791ef7 Mon Sep 17 00:00:00 2001 From: Rob Baker Date: Wed, 7 Feb 2024 14:40:29 -0700 Subject: [PATCH 02/33] reboot DRR template via usethis --- .../skeleton/skeleton.Rmd | 560 ------------------ .../skeleton/skeleton.Rmd | 348 +++++++++++ .../template.yaml | 4 + inst/rmarkdown/templates/template.yaml | 4 - 4 files changed, 352 insertions(+), 564 deletions(-) delete mode 100644 inst/rmarkdown/templates/editable_DRR_template/skeleton/skeleton.Rmd create mode 100644 inst/rmarkdown/templates/nps-data-release-report-template/skeleton/skeleton.Rmd create mode 100644 inst/rmarkdown/templates/nps-data-release-report-template/template.yaml delete mode 100644 inst/rmarkdown/templates/template.yaml diff --git a/inst/rmarkdown/templates/editable_DRR_template/skeleton/skeleton.Rmd b/inst/rmarkdown/templates/editable_DRR_template/skeleton/skeleton.Rmd deleted file mode 100644 index e042a59..0000000 --- a/inst/rmarkdown/templates/editable_DRR_template/skeleton/skeleton.Rmd +++ /dev/null @@ -1,560 +0,0 @@ ---- -output: - word_document: default - pdf_document: default -bibliography: references.bib -csl: national-park-service-DRR.csl ---- - -```{=html} - -``` -```{r user_edited_parameterss, include=FALSE} -# The title of your DRR. Should all DRR start with "Data Release Report:"? Should we enforce titles specifically referencing the data package(s) they the report is about? -title <- "DRR Title" - -# Optional and should only be included if publishing to the semi-official DRR series. Contact Joe if you are. If not, leave as NULL -reportNumber <- ": get this number from Joe DeVivo" - -# This should match the Data Store Reference ID for this DRR. Eventually we should be able to pull this directly from the data package metadata. -DRR_DSRefID <- 7654321 - -#Author names and affiliations: - -#One way to think of the author information is that you are building a table: - -# Author | Affiliation | ORCID -# Jane | Institute 1 | 0000-1111-2222-3333 -# Jane | Institute 2 | 0000-1111-2222-3333 -# John | Institute 2 | NA - -#once the table is built, authors can be associated with the appropriate institute via relevant superscripts and the institutes can be listed only once in the DRR. - -# list the authors. If an author has multiple institutional affiliations, you must list the author multiple times. In this example, Jane Doe is listed twice because she has two affiliations. -authorNames <- c( - "Jane Doe", - "Jane Doe", - "John Doe" -) - -# List author affiliations. The order of author affiliations must match the order of the authors in AuthorNames. If an author has multiple affiliations, the author must be listed 2 (or more) times under authorNames (above) and each affiliation should be listed in order. If authors share the same affiliation, the affiliation should be listed once for each author. In this case, Managed Business Solutions (MBS) is listed twice because it is associated with two authors. MBS will only print to the DRR once. - -#Note that the entirety of each affiliation is enclosed in quotations. Do not worry about indentation or word wrapping. -authorAffiliations <- c( - "NPS Inventory and Monitoring Division, 1201 Oakridge Dr., Suite 150, Fort Collins, Colorado", - "Managed Business Solutions (MBS), a Sealaska Company, Contractor to the National Park Service, Natural Resource Stewardship and Science Directorate, 1201 Oakridge Dr., Suite 150, Fort Collins, Colorado", - "Managed Business Solutions (MBS), a Sealaska Company, Contractor to the National Park Service, Natural Resource Stewardship and Science Directorate, 1201 Oakridge Dr., Suite 150, Fort Collins, Colorado" -) - -# List the ORCID iDs for each author in the format "(xxxx-xxxx-xxxx-xxxx)". If an author does not have an ORCID iD, specify NA (no quotes). If an author is listed more than once (for instance because they have multiple institutional affiliations), the ORCID iD must also be listed more than once. For more information on ORCID iDs and to register an ORCID iD, see https://www.orcid.org. - -#The order of the ORCID iDs must match the order of authors in AuthorNames.In this example, Jane Doe has an ORCID iD but John Doe does not. Jane's ORCID iD is listed twice because she her name is listed twice in authorNames(because she has two authorAffiliations). -authorORCID <- c( - "(0000-1111-2222-3333)", "(0000-1111-2222-3333)", NA - ) - -# Replace the text below with your abstract. -DRRabstract <- "Abstract Should go here. Multiple Lines are okay; it'll format correctly. Pay careful attention to non-standard characters, line breaks (
), carriage returns, and curly-quotes. You may find it useful to write the abstract in NotePad++ or some other text editor and not a word processor (such as Microsoft Word).\n\n - -Note that if you need multiple paragraphs or line breaks you can generate them using a combination of backslashes and n's. \n\n - -The abstract should succinctly describe the study, the assay(s) performed, the resulting data, and their reuse potential, but should not make any claims regarding new scientific findings. No references are allowed in this section." - -# DataStore reference ID for the data package associated with this report. You must have at least one data package.Eventually, we will automate importing much of this information from metadata. -dataPackageRefID <- c(12342567) - -# Must match title in DataStore and metadata -dataPackageTitle <- "Data Package Title" - -# Must match descriptions in the data package metadata -dataPackageDescription <- "Short title for data package1" - -# generates your data package DOI based on the data package DataStore reference ID. This is different from the DRR DOI! No need to edit this. -dataPackageDOI <- paste0("https://doi.org/10.57830/", dataPackageRefID) - -# list the file names in your data package. Do NOT include metadata files. -dataPackage_fileNames <- c( - "my_data.csv", - "my_data2.csv" -) - -# list the approximate size of each data file. Make sure the order corresponds to the order of of the file names in dataPackage_fileNames -dataPackage_fileSizes <- c("0.8 MB", "10 GB") - -# list a short, one-line description of each data file. Descriptions must be in the same order as the filenames. -dataPackage_fileDescript <- c( - "This is a short description of my_data.csv (a good guideline is 10 words or less).", - "This is a short description of my_data2.csv.") -``` - -```{r setup_do_not_edit, include=FALSE} -RRpackages <- c("markdown", - "rmarkdown", - "pander", - "knitr", - "yaml", - "kableExtra", - "devtools", - "tidyverse") - -inst <- RRpackages %in% installed.packages() -if (length(RRpackages[!inst]) > 0) { - install.packages(RRpackages[!inst], dep = TRUE, repos = "https://cloud.r-project.org") -} -lapply(RRpackages, library, character.only = TRUE) - -devtools::install_github("EmilyMarkowitz-NOAA/NMFSReports") -library(NMFSReports) -devtools::install_github("nationalparkservice/QCkit") -library(QCkit) -``` - -*`r (paste0("https://doi.org/10.38750/", DRR_DSRefID))`* - -```{r title_do_not_edit, echo=FALSE, results="asis"} -date <- format(Sys.time(), "%d %B, %Y") -cat("#", title, "\n") -if (!is.null(reportNumber)) { - subtitle <- paste0("Data Release Report ", reportNumber) - cat("###", subtitle) -} -``` - -```{r authors_do_not_edit, echo=FALSE, results="asis"} -author_list <- data.frame(authorNames, authorAffiliations, authorORCID) -unique_authors <- author_list %>% distinct(authorNames, - .keep_all = TRUE) -unique_affiliation <- author_list %>% distinct(authorAffiliations, - .keep_all = TRUE) - -#single author documents: -if(length(seq_along(unique_authors$authorNames)) == 1){ - - for (i in seq_along(unique_authors$authorNames)) { - curr <- unique_authors[i, ] - - #find all author affiliations - aff <- author_list[which(authorNames == curr$authorNames),] - aff <- aff$authorAffiliations - - #identify order of affiliation(s) in a unique list of affiliations - #build the superscripts for author affiliations - super_script <- unique_affiliation$authorAffiliations %in% aff - super <- which(super_script == TRUE) - script <- super - - if(length(seq_along(super)) > 1){ - script <- NULL - j <- 1 - while(j < length(seq_along(super))){ - script <- append(script, paste0(super[j],",")) - j <- j+1 - } - if(j == length(seq_along(super))){ - script <- append(script, super[j]) - } - } - } - cat("#### ", curr$authorNames, sep="") - if (is.na(curr$authorORCID)) { - } - if (!is.na(curr$authorORCID)) { - orc <- paste0(" ", curr$authorORCID, "") - cat({{ orc }}) - } - cat(" ^",script,"^", " ", " ", sep="") - - #cat("#### ", unique_authors$authorNames, "^1^", sep="") - #if(!is.na(authorORCID)){ - # orc <- paste0(" https://orcid.org/", unique_authors$authorORCID) - # cat({{ orc }}, "\n") - #} - #cat("#### ", unique_authors$authorAffiliations, sep="") -} - -#multi author documents: -if(length(seq_along(unique_authors$authorNames)) > 1){ - for (i in seq_along(unique_authors$authorNames)) { - curr <- unique_authors[i, ] - - #find all author affiliations - aff <- author_list[which(authorNames == curr$authorNames),] - aff <- aff$authorAffiliations - - #identify order of affiliation(s) in a unique list of affiliations - #build the superscripts for author affiliations - super_script <- unique_affiliation$authorAffiliations %in% aff - super <- which(super_script == TRUE) - script <- super - - if(length(seq_along(super)) > 1){ - script <- NULL - j <- 1 - while(j < length(seq_along(super))){ - script <- append(script, paste0(super[j],",")) - j <- j+1 - } - if(j == length(seq_along(super))){ - script <- append(script, super[j]) - } - } - - # if NOT the second-to-last author: - if(i < (length(seq_along(unique_authors$authorNames)) - 1)){ - cat("#### ", curr$authorNames, " ", sep="") - if (is.na(curr$authorORCID)) { - } - if (!is.na(curr$authorORCID)) { - orc <- paste0(" ", curr$authorORCID, " ") - cat({{ orc }}) - } - cat( " ^", script, "^", ", ", " ", sep = "") - } - - # if IS the second-to-last author - if(i == (length(seq_along(unique_authors$authorNames)) - 1)){ - - #if 3 or more authors, include a comma before the "and": - if(length(seq_along(unique_authors$authorNames)) > 2){ - cat(curr$authorNames, sep="") - if (is.na(curr$authorORCID)) { - } - if (!is.na(curr$authorORCID)) { - orc <- paste0(" ", curr$authorORCID, " ") - cat({{ orc }}) - } - cat(" ^",script,"^", ", ", sep="") - cat("and ", sep="") - } - - #If only 2 authors, omit comma before "and": - if(length(seq_along(unique_authors$authorNames)) == 2){ - cat("#### ", curr$authorNames, sep="") - if (is.na(curr$authorORCID)) { - } - if (!is.na(curr$authorORCID)) { - orc <- paste0(" ", curr$authorORCID, " ") - cat({{ orc }}) - } - cat(" ^",script,"^ ", sep = "") - cat("and ", sep="") - } - } - - # if IS the Last author : - if(i == length(seq_along(unique_authors$authorNames))){ - cat(curr$authorNames, sep="") - if (is.na(curr$authorORCID)) { - } - if (!is.na(curr$authorORCID)) { - orc <- paste0(" ", curr$authorORCID, " ") - cat({{ orc }}) - } - cat(" ^", script, "^", sep = "") - } - } -} -cat("\n\n") -for(i in 1:nrow(unique_affiliation)){ - cat("^",i,"^ ", unique_affiliation[i,2], "\n\n", sep="") - } -``` - -# Abstract - -`r DRRabstract` - -
- -# Acknowledgements (optional) - -The Acknowledgements should contain text acknowledging non-author contributors. Acknowledgements should be brief, and should not include thanks to anonymous referees and editors or effusive comments. Grant or contribution numbers may be acknowledged. - -# Using citations in this document: - -To automate citations, add the citation to in bibtex format to the file "references.bib". You can manually copy and paste the bibtex for each reference in, or you can search for it from within Rstudio. From within Rstudio, make sure you are editing this document using the "Visual" view (as opposed to "Source"). From the "Insert" drop-down menu, select "\@ Citation..." (shortcut: Cntrl-Shift-F8). This will open a tool where you can view all the citations in your reference.bib file as well as search multiple databases for references, automatically insert the bibtex for the reference into your references.bib file (and customize the unique identifier if you'd like) and insert the in-text citation into the DRR template. - -Once a reference is in your references.bib file, from within this template you can simply type the '\@' symbol and select which reference to insert in the text. - -If you need to edit how the citation is displayed after inserting it into the text, switch back to the "Source" view. Each bibtex citation should start with a unique identifier; the example reference in the supplied references.bib file has the unique identifier "\@article{Scott1994,". Using the "Source" view in Rstudio, insert the reference in your text, by combining the "at" symbol with the portion of the unique identifier after the curly bracket: @Scott1994 . You can put a citation in parentheses using square brackets: [@Scott1994]. This will be rendered as (Scott, et al. 1994) in text. You can add multiple authors works a single parenthetical citation by separating them with a semi-colon. You can suppress the author and cite just the year by using a - symbol before the \@ : [-@Scott1994]. - -If you would like to format your citations manually, please feel free to do that instead. Make sure to examine the References section for examples of how to manually format each citation type. - -# Data Records (required) - -## Data Inputs (optional) - -If the data package being described was generated based on one or more pre-existing datasets, cite those datasets here. - -## Summary of Datasets Created (required) - -The Data Records section should be used to explain each data record associated with this work (for instance, a data package), including the DOI indicating where this information is stored, and provide an overview of the data files and their formats. Each external data record should be cited. Below is some sample text: - -This DRR describes the data package *`r dataPackageTitle`* which contains a metadata file and `r length(dataPackage_fileNames)` data files. These data were compiled and processed for dissemination by the National Park Service Inventory and Monitoring Division (IMD) and are available at `r dataPackageDOI` (see Table 1). - -```{r FileTable, echo=FALSE} -filelist <- data.frame(dataPackage_fileNames, dataPackage_fileSizes, dataPackage_fileDescript) - -knitr::kable(filelist, caption = paste0("**Table 1. ", dataPackageTitle, ": List of data files.**"), col.names = c("**File Name**", "**Size**", "**Description**"), format = "pandoc") -``` - -See Appendix for additional notes and examples. - -# Data Quality Evaluation (required) - -The Data Quality Evaluation section should present any analyses that are needed to support the technical quality of the dataset. This section may be supported by figures and tables, as needed. *This is a required section*; authors must provide information to justify the reliability of their data. Wherever possible & appropriate, data quality evaluation should be presented in the context of data standards and quality control procedures as prescribed in the project's quality assurance planning documentation. - -**Required elements for this section** - -*Required Table* - -```{r dataAcceptanceCriteria, echo=FALSE, eval=TRUE} -# To turn off, set eval=FALSE. -# Generates a table of acceptance criteria for each of the data quality fields in your data package. Mitigations taken when data did not meet the acceptance criteria should be described textually in the Data Quality Evaluation section. - -# Specify which columns in your data package are data quality fields in the dataQualityFields variable. In the example below, data quality fields/columns in the data package are listed in the format [FieldName]_flag. These data quality fields relate to the respective temporal, taxonomic, and geographic data. - -dataQualityFields <- c( - "eventDate_flag", - "scientificName_flag", - "coordinate_flag" - ) - -# Brief description of the acceptance criteria for each respective data quality field. The order of the acceptance criteria must match the order of the data quality fields. - -dataQualityAcceptanceCriteria <- c( - "Sampling event date within the start and end dates of the project", - "Taxon exists within Integrated Taxonomic Information System and GBIF", - "Sampling location is within the park unit boundaries" - ) - -data_criteria<-data.frame(dataQualityFields = str_remove(dataQualityFields, "_flag"), dataQualityAcceptanceCriteria) - -data_criteria %>% - NMFSReports::format_cells(1:3, 1, "bold") %>% - knitr::kable(caption = "**Table 2. Acceptance criteria for data evaluated.**", col.names=c("**Field**", "**Acceptance Criteria**"), format="pandoc", align = 'c') - -``` - -```{r data_column_flagging, echo=FALSE, eval=TRUE} -# To turn off, set eval=FALSE. -# Generates a table summarizing QC at the column level within each file. All flagged columns are included. To add additional non-flagged columns, specify them with column names: cols=("my_unflagged_data1", "my_unflagged_data2)" or numbers: cols=c(1:4). All non-missing data in unflagged columns is assumed accepted. If a file has no flagged columns and no specified custom columns, all values for that data file will be listed as "NA". - -#set directory to the location of your data package: -path <- "../../DataPackageWorkflow/dataPackages/BICY_Veg_Data_Package_Example" -dc_flags <- QCkit::get_custom_flags(directory = path, output="columns") -dc_flags$`File Name` <- gsub(".csv", "", dc_flags$`File Name`) - - -colnames(dc_flags)[2]<-paste0("Measure", "^1^") -colnames(dc_flags)[4]<-paste0("A", "^2^") -colnames(dc_flags)[8]<-paste0("% Accepted", "^3^") - -#Generate the table: -dc_flags %>% - knitr::kable( - caption = '**Table 3: Summary of data quality flags for each column [A – Accepted; AE – Accepted but Estimated; P – Provisional; R – Rejected.]**', - format = "pandoc", - digits = 2, - align = 'c', - col.names = c("**File Name**", "**Measure^1^**", "**Number of Reocrds**", "**A^2^**", "**AE**", "**R**", "**P**", "**% Accepted^3^**")) %>% -kableExtra::add_footnote( - c("The '_flag' suffix has been omitted from column names for brevity.", - "All non-missing data in specified unflagged columns are considered accepted.", - "% Accepted is calculated as the number of accepted (where A and AE are both considered accepted) divided by the total number of observations plus the number of missing observations."), - notation = "number" - ) - -``` - -```{r data_package_flagging, echo=FALSE, eval=TRUE} -# To turn off, set eval=FALSE. -# Generates a table summarizing data quality across all flagged columns of each data file. To add additional non-flagged columns, specify them with column names: cols=("my_unflagged_data1", "my_unflagged_data2)" or numbers: cols=c(1:4). All non-missing data in unflagged columns is assumed accepted. If a file has no flagged columns and no specified custom columns, all values for that data file will be listed as "NA". - -#set directory to the location of your data package -path<-"../../DataPackageWorkflow/dataPackages/BICY_Veg_Data_Package_Example" -dp_flags <- get_custom_flags(directory = path, output="files") - -#generate table: -dp_flags %>% - kableExtra::kbl(caption = '**Table 4: Summary of data quality flags for the data package [A – Accepted; AE – Accepted but Estimated; P – Provisional; R – Rejected.]**', - format = "pandoc", - col.names = c("**File Name**", "**A^1^**", "**AE**", "**R**", "**P**", "**% Accepted^2^**"), - digits=2, - align = 'c') %>% - kableExtra::add_footnote(c("All non-missing data in specified unflagged columns are considered accepted.", - "% Accepted is calculated as the number of accepted (where A and AE are both considered accepted) divided by the total number of observations plus the number of missing observations."), notation = "number") -``` - -Possible content **strongly Suggested to Include** - -- Occurrence rates or patterns in data that do not meet established standards or data quality objectives. - -Possible content **may include:** - -- experiments that support or validate the data-collection procedure(s) (e.g. negative controls, or an analysis of standards to confirm measurement linearity) -- statistical analyses of experimental error and variation -- general discussions of any procedures used to ensure reliable and unbiased data production, such as chain of custody procedures, blinding and randomization, sample tracking systems, etc. -- any other information needed for assessment of technical rigor by reviewers/users - -Generally, this **should not include:** - -- follow-up experiments aimed at testing or supporting an interpretation of the data -- statistical hypothesis testing (e.g. tests of statistical significance, identifying deferentially expressed genes, trend analysis, etc.) -- exploratory computational analyses like clustering and annotation enrichment (e.g. GO analysis). - -*Stock Text to include:* - -The data within the data records listed above have been reviewed by staff in the NPS Inventory and Monitoring Division to ensure accuracy, completeness, and consistency with documented data quality standards, as well as for usability and reproducibility (Table 3). Of the data that were evaluated for quality, XX.X% of fields in this data package met data quality standards. The *`r dataPackageTitle`* is suitable for its intended use as of the date of processing (`r Sys.Date()`). - -# Usage Notes (required) - -The Usage Notes should contain brief instructions to assist other researchers with reuse of the data. This may include discussion of software packages (with appropriate citations) that are suitable for analysing the assay data files, suggested downstream processing steps (e.g. normalization, etc.), or tips for integrating or comparing the data records with other datasets. Authors are encouraged to provide code, programs or data-processing workflows if they may help others understand or use the data. - -For studies involving privacy or safety controls on public access to the data, this section should describe in detail these controls, including how authors can apply to access the data, what criteria will be used to determine who may access the data, and any limitations on data use. - -## Acquiring the Data Package - -This data package is available for download from the NPS DataStore at `r dataPackageDOI` and can be directly imported into R data frames using the NPSutils package - -# Methods - -Ideally these methods are identical to the methods listed in the metadata accompanying the data package that the DRR describes.Future versions of this template will pull directly from metadata. - -The Methods should cite previous methods under use but also be detailed enough describing data production including experimental design, data acquisition assays, and any computational processing (e.g. normalization, image feature extraction) such that others can understand the methods and processing steps without referring to associated publications. Cite and link to the DataStore reference for the protocol for detailed methods sufficient for reproducing the experiment or observational study. Related methods should be grouped under corresponding subheadings where possible, and methods should be described in enough detail to allow other researchers to interpret the full study. - -Specific data inputs and outputs should be explicitly cited in the text and included in the References section below, following the same [Chicago Manual of Style author-date format](https://www.chicagomanualofstyle.org/tools_citationguide/citation-guide-2.html) in text. See the [USGS data citation guidelines](https://www.usgs.gov/data-management/data-citation) for examples of how to cite data in text and in the References section. - -Authors are encouraged to consider creating a figure that outlines the experimental workflow(s) used to generate and analyse the data output(s) (Figure 1). - -```{r figure1, echo=FALSE, fig.cap="Example general workflow to include in the methods section."} -include_graphics("vignettes/common/ProcessingWorkflow.png") -``` - -## Data Collection and Sample Processing Methods (optional) - -Include a description of field methods and sample processing - -## Additional Data Sources (optional) - -Provide descriptions (with citations) of other data sources used. - -## Data Processing (required if done) - -Summarize process and results of any QC processes done that manipulate, change, or qualify data. - -## Code Availability (required) - -For all studies using custom code in the generation or processing of datasets, a statement must be included indicating whether and how the code can be accessed and any restrictions to access. This section should also include information on the versions of any software used, if relevant, and any specific variables or parameters used to generate, test, or process the current dataset. Actual analytical code should be provided in Appendices. - -# References (required) - -Provide sufficient information to locate the resource. If the citation has a DOI, include the DOI at the end of the citation, including the prefix. If you are citing documents that have unregistered DOIs (such as a data package that you are working on concurrently) still include the DOI. Electronic resources data and data services or web sites should include the date they were accessed. Keep the following line of code if you would like to automate generating and formatting references: - -::: {#refs} -::: - -If you would like to manually format your references, delete the preceding two lines and use the following examples instead: Include bibliographic information for any works cited (including the data package the DRR is describing) in the above sections, using the standard *NPS NR Publication Series* referencing style. - -See the following examples: - -## Agency, Company, etc. as Author Examples - -Fung Associates Inc. and SWCA Environmental Consultants. 2010. Assessment of natural resources and watershed conditions for Kalaupapa National Historical Park. Natural Resource Report. NPS/NPRC/WRD/NRR—2010/261. National Park Service, Fort Collins, Colorado. - -Greater Yellowstone Whitebark Pine Monitoring Working Group. 2014. Monitoring whitebark pine in the Greater Yellowstone Ecosystem: 2013 annual report. Natural Resource Data Series. NPS/GRYN/NRDS—2014/631. National Park Service. Fort Collins, Colorado. - -National Park Service (NPS). 2016. State of the park report for Zion National Park. State of the Park Reports. No. 23. National Park Service. Washington, District of Columbia. - -U.S. Forest Service (USFS). 1993. ECOMAP. National hierarchical framework of ecological units. U. S. Forest Service, Washington, D.C. - -## Traditional Journal Article Examples - -Bradbury, J. W., S. L. Vehrencamp, K. E. Clifton, and L. M. Clifton. 1996. The relationship between bite rate and local forage abundance in wild Thompson’s gazelles. Ecology 77:2237–2255. - -Oakley, K. L., L. P. Thomas, and S. G. Fancy. 2003. Guidelines for long-term monitoring protocols. Wildlife Society Bulletin 31(4):1000–1003. - -Sawaya, M. A., T. K. Ruth, S. Creel, J. J. Rotella, J. B. Stetz, H. B. Quigley, and S. T. Kalinowski. 2011. Evaluation of noninvasive genetic sampling methods for cougars in Yellowstone National Park. The Journal of Wildlife Management 75(3):612–622. - -## Book Example - -Harvill, A. M., Jr., T. R. Bradley, C. E. Stevens, T. F. Wieboldt, D. M. E. Ware, D. W. Ogle, and G. W. Ramsey. 1992. Atlas of the Virginia flora, third edition. Virginia Botanical Associates, Farmville, Virginia. - -## Book Chapter Examples - -McCauly, E. 1984. The estimation of abundance and biomass of zooplankton in samples. Pages 228–265 in J. A. Dowling and F. H. Rigler, editors. A manual on methods for the assessment of secondary productivity in fresh waters. Blackwell Scientific, Oxford, UK. - -Watson, P. J. 2004. Of caves and shell mounds in west-central Kentucky. Pages 159–164 in Of caves and shell mounds. The University of Alabama Press, Tuscaloosa, Alabama. - -## Published Report Examples - -Bass, S., R. E. Gallipeau, Jr., M. Van Stappen, J. Kumer, M. Wessner, S. Petersburg, L. L. Hays, J. Milstone, M. Soukup, M. Fletcher, L. G. Adams, and others. 1988. Highlights of natural resource management 1987. National Park Service, Denver, Colorado. - -Holthausen, R. S., M. G. Raphael, K. S. McKelvey, E. D. Forsman, E. E. Starkey, and D. E. Seaman. 1994. The contribution of federal and nonfederal habitats to the persistence of the northern spotted owl on the Olympic Peninsula, Washington. General Technical Report PNW–GTR–352. U.S. Forest Service, Corvallis, Oregon. - -Jackson, L. L., and L. P. Gough. 1991. Seasonal and spatial biogeochemical trends for chaparral vegetation and soil geochemistry in the Santa Monica Mountains National Recreation Area. U.S. Geological Survey, Denver. Open File Report 91–0005. - -## Unpublished Report Examples - -Conant, B., and J. I. Hodges. 1995. Western brant population estimates. U.S. Fish and Wildlife Service Unpublished Report, Juneau, Alaska. - -Conant, B., and J. F. Voelzer. 2001. Winter waterfowl survey: Mexico west coast and Baja California. U.S. Fish and Wildlife Service Unpublished Report, Juneau, Alaska. - -## Thesis/Dissertation Examples - -Diong, C. H. 1982. Population and biology of the feral pig (Sus scrofa L) in Kipahulu Valley, Mau’i. Dissertation. University of Hawai’i, Honolulu, Hawai’i. - -McTigue, K. M. 1992. Nutrient pulses and herbivory: Integrative control of primary producers in lakes. Thesis. University of Wisconsin, Madison, Wisconsin. - -## Conference Proceedings Examples - -Gunther, K. A. 1994. Changing problems in bear management: Yellowstone National Park twenty-plus years after the dumps. Ninth International Conference on Bear Research and Management. Missoula, MT, International Association for Bear Research and Management, Bozeman, Montana, February 1992:549–560. - -Webb, J. R., and J. N. Galloway. 1991. Potential acidification of streams in Mid-Appalachian Highlands: A problem with generalized assessments. Southern Appalachian Man and Biosphere Conference. Gatlinburg, Tennessee. - -## General Internet Examples - -Colorado Native Plant Society. 2016. Colorado Native Plant Society website. Available at: (accessed 07 March 2016). - -National Park Service (NPS). 2016a. IRMA Portal (Integrated Resource Management Applications) website. Available at: (accessed 07 March 2016). - -National Park Service (NPS). 2016b. Natural Resource Publications Management website. Available at: (accessed 07 March 2016). - -United Sates Fish and Wildlife Service (USFWS). 2016. Endangered Species website. Available at: (accessed 07 March 2016). - -## Online Data Warehouse Sites (sites that allow you see and download data from multiple sources) - -National Oceanographic and Atmospheric Association (NOAA). 2016. NOAA National Climatic Data Center website. Available at: (accessed 07 March 2016). - -Environmental Protection Agency (EPA). 2016. Storage and Retrieval Data Warehouse website (STORET). Available at: (accessed 07 March 2016). - -National Park Service (NPS). 2016c. NPScape Landscape Dynamics Metric Viewer website. Available at: (accessed 07 March 2016). - -National Park Service (NPS). 2016d. NPSpecies online application. Available at: (accessed 07 March 2016). - -United States Geologic Survey (USGS). 2016. BioData - Aquatic Bioassessment Data for the Nation. Available at: (accessed 07 March 2016). - -# Appendix A. Code Listing - -In most cases, Code listing is not required. If all QA/QC and data manipulations were performed elsewhere, you should cite that code in the methods (and leave the "Listing" code chunk as the default settings: eval=FALSE and echo=FALSE). If you have developed custom scripts, you can add those to DataStore with the reference type "Script" and cite them in the DRR. Some people have developed code to perform QA/QC or data manipulation within the DRR itself. In that case, you must set the "Listing" code chunk to eval=TRUE and echo=TRUE to fully document the QA/QC process. - -```{r Listing, ref.label=knitr::all_labels(), echo=TRUE, eval=TRUE} - -``` - -\pagebreak - -# Appendix B. Session and Version Information - -In most cases you do not need to report session info (leave the "session-info" code chunk parameters in their default state: eval=FALSE). Session and version information is only necessary if you have set the "Listing" code chunk to eval=TRUE in appendix A. In that case, change the "session-info" code chunk parameters to eval=TRUE. - -```{r session-info, eval=TRUE, echo=FALSE, cache=FALSE} -sessionInfo() -Sys.time() -``` diff --git a/inst/rmarkdown/templates/nps-data-release-report-template/skeleton/skeleton.Rmd b/inst/rmarkdown/templates/nps-data-release-report-template/skeleton/skeleton.Rmd new file mode 100644 index 0000000..dfb4e01 --- /dev/null +++ b/inst/rmarkdown/templates/nps-data-release-report-template/skeleton/skeleton.Rmd @@ -0,0 +1,348 @@ +--- +title: "NPS EML Creation Workflow" +author: "Robert Baker" +date: "The Date" +output: html +--- + +```{r setup, include=FALSE} +knitr::opts_chunk$set(echo = TRUE) +``` + +# Summary +This script acts as a template file for end-to-end creation of EML metadata in R for DataStore. The metadata generated will be of sufficient quality for the data package Reference Type and can be used to automatically populate the DataStore fields for this reference type. The script utilizes multiple R packages and the example inputs are for an EVER Veg Map AA dataset. The example script is meant to either be run as a test of the process or to be replaced with your own content. This is a step by step process where each section should be reviewed, edited if necessary, and run one at a time. After completing a section there is often something to do external to R (e.g. open a text file and add content). Several EMLassemblyline functions are decision points and may only apply to certain data packages. This workflow takes advantage of the NPSdataverse, an R-based ecosystem that includes external EML creation tools such as the R packages EMLassemblyline and EML. However, these tools were not designed to work with DataStore. Therefore, the NPSdatavers and this workflow also incorporate steps from NPS-developed R packages such as EMLeditor and DPchecker. You will necessarily over-write some of the information generated by EMLassemblyline. That is OK and is expected behavior. + +# Good additional references +[EMLassemblyline](https://ediorg.github.io/EMLassemblyline/) +[EMLeditor](https://nationalparkservice.github.io/EMLeditor/index.html) +[EVER Veg Map AA dataset](https://github.com/nationalparkservice/NPS_EML_Script/tree/main/Example_files) (for testing purposes) + +# Install and Load R Packages +Install packages. If you have not recently installed packages, please re-install them. You will want to make sure you have the latest versions of all the NPSdataverse packages - QCkit, EMLeditor, DPchecker, and NPSutils - as they are under constant development. If you are on the VPN, you will need to set your CRAN mirror to Texas 1. If you run into errors installing packages from github on NPS computers you may first need to run: +```{r renviron, eval=FALSE} +options(download.file.method="wininet") +``` +```{r package_install, eval=FALSE} +#install packages +install.packages(c("devtools", "tidyverse")) +devtools::install_github("nationalparkservice/NPSdataverse") +``` +```{r load_packages} +# When loading packages, you may be advised to update to more recent versions +# of dependent packages. Most of these updates likely are not critical. +# However, it is important that you update to the latest versions of QCkit, +# EMLeditor, DPchecker and NPSutils as these NPS packages are under constant +# development. +library(NPSdataverse) +library(tidyverse) +``` + +## Set the overall package details +All of the following items should be reviewed and updated to fit the package you are working on. For lists of more than one item, keep the same order (i.e. item #1 should correspond to the same file in each list). + +#### Metadata filename +This becomes the file name of your .xml file. Be sure it ends in _metadata to comply with data package specifications. You do not need to include the extension (.xml). +```{r metadata_id} +metadata_id <- "Test_EVER_AA_metadata" +``` + +#### Package Title +Give the data package a title. FAIR principles suggest titles of between 7 and 20 words. Be sure to make your title informative and consider how a naive user would interpret it. +```{r package_title} +package_title <- "TEST_Everglades National Park Accuracy Assessment (AA) Data Package" +``` + +#### Data collection status +Choose from either "ongoing" or "complete" +```{r data_status} +data_type <- "complete" +``` + +#### Path to data file(s) +Tell R where your data files are. If they are in the working directory, you can set the working_folder to `getwd()`. If they are in a different directory you will need to specify that directory. +```{r working_dir} +working_folder <- getwd() +# or: +# working_folder <- setwd("C:/users//Documents/my_data_package_folder) +``` + +#### List data files +Tell R what your data files are called. +```{r list_files} +# if the data files are in your working directory (and the only .csv files in your working directory are data files: +data_files <- list.files(pattern = "*.csv") + +# alternatively, you can list the files out manually: +#data_files <- c("qry_Export_AA_points.csv", +# "qry_Export_AA_VegetationDetails.csv") +``` + +#### Name the data files +These should be relatively short, but perhaps more informative than the actual file names. Make sure that they are in the same order as the files in data_files. +```{r data_names} +data_names <- c("TEST_AA Point Location Data", + "TEST_AA Vegetation Coverage Data") +``` + +#### Describe each data file. Data file descriptions should be unique and about 10 words long. Descriptions will be used in auto-generated tables within the ReadMe and DRR. If you need to use more than 10 words, consider putting that information into the abstract, methods, or additional information sections. Again, make sure these are in the same order as the files they are describing. +```{r data_descriptions} +data_descriptions <- c("TEST_Everglades Vegetation Map Accuracy Assessment point data", + "TEST_Everglades Vegetation Map Accuracy Assessment vegetation data") +``` + +#### Placeholder URL for data files +EMLassemblyline needs to know where the data files will be (a URL). However, because you have not yet initiated a draft reference in DataStore, it isn't possible to specify a URL. Instead, insert a place holder. Don't worry - this information will be updated later on when you add a Digital Object Identifier(DOI) to the metadata. +```{r temp_data_url} +data_urls <- c(rep("temporary URL", length(data_files))) +``` + +#### Taxonomic information +Specify where you taxonomic information is. this can be a single file or a list of files and fields (columns) with scientific names that will be used to automatically generate the taxonomic coverage metadata. We suggest using [DarwinCore](https://dwc.tdwg.org/terms) for column names, such as "scientificName". If your data package does not have taxonomic data, skip this step. +```{r taxonomic_info} +# the file(s) where scientific names are located: +data_taxa_tables <- "qry_Export_AA_VegetationDetails.csv" + +# the column where your scientific names are within the data files. +data_taxa_fields <- "scientific_Name" +``` + +#### Geographic information +Specify the tables and fields that contain geographic coordinates and site names. This information will be used to fill out the geographic coverage elements of the metadata. If your data package does not have geographic information skip this step. If the only geographic information you are supplying is the park units (and their bounding boxes) you can also skip this step; Park Units and the corresponding GPS coordinates for their bounding boxes will be added at a later step. If your coordinates are in UTMs and not GPS, try the [`convert_utm_to_ll()`](https://nationalparkservice.github.io/QCkit/reference/convert_utm_to_ll.html) function in the [QCkit package](https://nationalparkservice.github.io/QCkit/) +```{r geo_info} +data_coordinates_table <- "qry_Export_AA_points.csv" +data_latitude <- "decimalLatitude" +data_longitude <- "decimalLongitude" +data_sitename <- "Point_ID" +``` + +#### Temporal information +This should indicate collection date of the first and last data point in the data package (across all files) and does not include any planning, pre- or post-processing time. The format should be one that complies with the International Standards Organization's standard 8601. The recommended format for EML is: YYYY-MM-DD, where Y is the four digit year, M is the two digit month code (01 - 12 for example, January = 01), and D is the two digit day of the month (01 - 31). Using an alternate format or setting the date to the future will cause errors down the road! +```{r temp_info} +startdate <- ymd("2010-01-26") +enddate <- ymd("2013-01-04") +``` + +## EMLassemblyline Functions +The next set of functions are meant to be considered one by one and only run if applicable to a particular data package. The first year will typically see all of these run, but if the data format and protocol stay constant over time it may be possible to skip some in future years. Additionally some datasets may not have geographic or taxonomic component. + +#### FUNCTION 1 - Core Metadata Information +This function creates blank .txt template files for the abstract, additional information, custom units, intellectual rights, keywords, methods, and personnel. Be sure the edit the personnel text file in Excel as it has columns. Remember that the role "creator" is required! EMLassemblyline will also warn you if you do not include a "PI" role, but you can ignore the warning; this role is not required. Typically these files can be reused between years. + +The personnel.txt file can best be edited in excel. You must list at least one person with a "creator" role and one person with a "contact" role (you can list the same person twice for both.). Creators will be authors and included in the data package citation. You do not need to list anyone as the "PI" and can list as many additional people with custome roles as desired (e.g. "field technician", "laboratory assistant"). Each individual must have a surName. The electornicMailAddress is an email and the userId is the persons's [ORCID](https://orcid.org) (if they have one). List the ORCID as just the 16 digit string, do not include the https://orcid.org prefix (e.g. xxxx-xxxx-xxxx-xxxx). You can leave the projectTitle, fundingAgency, and fundingNumber blank. + +We encourage you to craft your abstract in a text editor, NOT Word. Your abstract will be forwarded to data.gov, DataCite, google dataset search, etc. so it is worth some time to carefully consider what is relevant and important information for an abstract. Abstracts must be greater than 20 words. Good abstracts tend to be 250 words or less. You may consider including the following information: The premise for the data collection (why was it done?), why is it important, a brief overview of relevant methods, and a brief explanation of what data are included such as the period of time, location(s), and type of data collected. Keep in mind that if you have lengthy descriptions of methods, provenance, data QA/QC, etc it may be better to expand upon these topics in a Data Release Report or similar document uploaded separately to DataStore. + +Currently this function inserts a Creative Common 0 license. The CC0 license will need to be updated. However, to ensure that the licence meets NPS specifications and properly coincides with CUI designations, the best way to update the license information is during a later step using `EMLeditor::set_int_rights()`. There is no need to edit this .txt file. +```{r core} +EMLassemblyline::template_core_metadata(path = working_folder, + license = "CC0") # that '0' is a zero! +``` + +#### FUNCTION 2 - Data Table Attributes +This function creates an "attributes_datafilename.txt" file for each data file. This can be opened in Excel (we recommend against trying to update these in a text editor) and fill in/adjust the columns for attributeDefinition, class, unit, etc. refer to https://ediorg.github.io/EMLassemblyline/articles/edit_tmplts.html for helpful hints and `view_unit_dictionary()` for potential units. This will only need to be run again if the attributes (name, order or new/deleted fields) are modified from the previous year. NOTE that if these files already exist from a previous run, they are not overwritten. +```{r attributes} +EMLassemblyline::template_table_attributes(path = working_folder, + data.table = data_files, + write.file = TRUE) +``` + +#### FUNCTION 3 - Data Table Categorical Variable +This function Creates a "catvars_datafilename.txt" file for each data file that has columns with a class = categorical. These .txt files will include each unique 'code' and allow input of the corresponding 'definition'.NOTE that since the list of codes is harvested from the data itself, it's possible that additional codes may have been relevant/possible but they are not automatically included here. Consider your lookup lists carefully to see if additional options should be included (e.g if your dataset DPL values are all set to "Accepted" this function will not include "Raw" or "Provisional" in the resulting file and you may want to add those manually). NOTE that if these files already exist from a previous run, they are not overwritten. +```{r cat_vars} +EMLassemblyline::template_categorical_variables(path = working_folder, + data.path = working_folder, + write.file = TRUE) +``` + +#### FUNCTION 4 - Geographic Coverage +If the only geographic coverage information you plan on using are park boundaries, you can skip this step. You can add park unit connections using EMLeditor, which will automatically generate properly formatted GPS coordinates for the park bounding boxes. + +If you would like to add additional GPS coordinates (such as for specific site +locations, survey plots, or bounding boxes for locations within a park, etc) please do. + +This function creates a geographic_coverage.txt file that lists your sites as points as long as your coordinates are in lat/long. If your coordinates are in UTM it is probably easiest to convert them first or create the geographic_coverage.txt file another way (see [QCkit](https://nationalparkservice.github.io/QCkit/) for R functions that will convert UTM to lat/long). +```{r geo_cov} +EMLassemblyline::template_geographic_coverage(path = working_folder, + data.path = working_folder, + data.table = data_coordinates_table, + lat.col = data_latitude, + lon.col = data_longitude, + site.col = data_sitename, + write.file = TRUE) +``` + +#### FUNCTION 5 - Taxonomic Coverage +This function creates a taxonomic_coverage.txt file if you have taxonomic data. Currently supported authorities are 3 = ITIS, 9 = WORMS, and 11 = GBIF. In the example below, the function will first try to find the scientific name at ITIS and if it fails will then look at GBIF. If you have lots of taxa, this could take some time to complete. +```{r tax_cov} +EMLassemblyline::template_taxonomic_coverage(path = working_folder, + data.path = working_folder, + taxa.table = data_taxa_tables, + taxa.col = data_taxa_fields, + taxa.authority = c(3,11), + taxa.name.type = 'scientific', + write.file = TRUE) +``` + +## Create an EML File +Run this (it may take a little while) and see if it validates (you should see 'Validation passed'). It will generate an R object called "my_metadata". The function could alert you of some issues to review as. Run the function `issues()` at the end of the process to get feedback on items that might be missing or need attention. Fix these issues and then re-run the `make_eml()` function. +```{r make_eml} +my_metadata <- EMLassemblyline::make_eml(path = working_folder, + dataset.title = package_title, + data.table = data_files, + data.table.name = data_names, + data.table.description = data_descriptions, + data.table.url = data_urls, + temporal.coverage = c(startdate, enddate), + maintenance.description = data_type, + package.id = metadata_id, + return.obj = TRUE, + write.file = FALSE) +``` + +## Check for EML validity +This is a good point to pause and test whether your EML is valid. +```{r validate} +EML::eml_validate(my_metadata) +``` + +if your EML is valid you should see the following (admittedly cryptic) result: +``` +# [1] TRUE +# attr(,"errors") +# character(0) +``` + +if your EML is not schema valid, the function will notify you of specific problems you need to address. We HIGHLY recommend that you use the EMLassemblyline and/or EMLeditor functions to fix your EML and do not attempt to edit it by hand. + +## Add NPS specific fields to EML +Now that you have valid EML metadata, you need to add NPS-specific elements and fields. For instance, unit connections, DOIs, referencing a DRR, etc. More information about these functions can be found at: [https://nationalparkservice.github.io/EMLeditor/](https://nationalparkservice.github.io/EMLeditor/). + +#### Add Controlled Unclassified Information (CUI) codes +This is a required step. It is important to indicate not only that your data +package contains CUI, but also to inform users if your data package does NOT +contain CUI because empty fields can be ambiguous (does it not contain CUI or +did the creators just miss that step?). You can choose from one of five CUI +dissemination codes. Watch out for the spaces! These are: + * PUBLIC - Does NOT contain CUI. + * FED ONLY - Contains CUI. Only federal employees should have access (similar to "internal only" in DataStore). + * FEDCON - Contains CUI. Only federal employees and federal contractors should have access (also very much like current "internal only" setting in DataStore). + * DL ONLY - Contains CUI. Should only be available to a named list of individuals (where and how to list those individuals TBD) + * NOCON - Contains CUI. Federal, state, local, or tribal employees may have access, but contractors cannot. +More information about these codes can be found at: [https://www.archives.gov/cui/registry/limited-dissemination](https://www.archives.gov/cui/registry/limited-dissemination) + +```{r cui_dissemination} +my_metadata <- EMLeditor::set_cui(my_metadata, "PUBLIC") +# note that in this case I have added the CUI code to the original R object, +# "my_metadata" but by giving it a new name, i.e. "my_meta2" I could have +# created a new R object. Sometimes creating a new R object is preferable +# because if you make a mistake you don't need to start over again. +``` + +## Intellectual Rights +EMLassemblyine and ezEML provide some attractive looking boilerplate for setting the intellectual rights. It looks reasonable and so is easy to just keep. However, NPS has some specific regulations about what can and cannot be in the intellectualRights tag. Use `set_int_rights()` to replace the text with NPS-approved text. Note: You must first add the CUI dissemination code using `set_cui()` as the dissemination code and license must agree. That is, you cannot give a data package with a PUBLIC dissemination code a "restricted" license (and vise versa: a restricted data package that contains CUI cannot have a public domain or CC0 license). You can choose from one of three options: + * "restricted": If the data contains Controlled Unclassified Information (CUI), the intellectual rights must read: **"This product has been determined to contain Controlled Unclassified Information (CUI) by the National Park Service, and is intended for internal use only. It is not published under an open license. Unauthorized access, use, and distribution are prohibited."** + + * "public": If the data do not contain CUI, the default is the public domain. The intellectual rights must read: **"This work is in the public domain. There is no copyright or license."** + + * "CC0": If you need a license, for instance if you are working with a partner organization that requires a license, use CC0: **"The person who associated a work with this deed has dedicated the work to the public domain by waiving all of his or her rights to the work worldwide under copyright law, including all related and neighboring rights, to the extent allowed by law. You can copy, modify, distribute and perform the work, even for commercial purposes, all without asking permission."** + +The `set_int_rights()` function will also put the name of your license in a field in EML for DataStore harvesting. + +```{r int_rights} +# choose from "restricted", "public" or "CC0" (zero), see above: +my_metadata <- EMLeditor::set_int_rights(my_metadata, "public") +``` + +#### Add a data package DOI +Add your data package's Digital Object Identifier (DOI) to the metadata. The `set_datastore_doi()` initiates a draft data package reference on DataStore, and populates the reference with a title pulled from your metadata, “[DRAFT] : ”. This temporary title is purely for your tracking purposes and can easily be updated later. The `set_datastore_doi()` function will then insert the corresponding DOI for your data package into your metadata. Now that a draft reference has been initiated on DataStore, it is possible to fill in the online URL for each data file. `set_datastore_doi()` automatically does that for you too. There are a few things to keep in mind: + 1) Your DOI and the data package reference are not yet active and are not publicly accessible until after review and activation/publication. + 2) We suggest you NOT manually upload files. If you manually upload your files, be sure to upload your data package to the correct draft reference! It is easy to create several draft references with the same draft title but different DataStore reference IDs and DOIs. So check the reference ID number carefully + 3) There is no need to fill in additional fields in DataStore at this point - many of them will be auto-populated based on the metadata you upload. Any fields you do populate will be over-written by the content in your metadata. +```{r DS_doi} +my_metadata <- EMLeditor::set_datastore_doi(my_metadata) +``` + +#### Add information about a DRR (optional) +If you are producing (or plan to produce) a DRR, add links to the DRR describing the data package. + +You will need the DOI for the DRR you are drafting as well as the DRR's Title. Go to DataStore and initiate a draft DRR, including a title. For the purposes of the data package, there is no need to populate any other fields. At this point, you do not need to activate the DRR reference and, while a DOI has been reserved for your DRR, +it will not be activated until after publication so that you have plenty of +time to construct the DRR. +```{r DRR_links} +my_metadata <- EMLeditor::set_drr(my_metadata, 7654321, "DRR Title") +``` + +#### Set the language +This is the human language (as opposed to computer language) that the data package and metadata are constructed in. Examples include English, Spanish, Navajo, etc. A full list of available languages is available from the Libraryof Congress. Please use the "English Name of Language" as an input. The function will then convert your input to the appropriate 3-character ISO 639-2 code.Available languages: [https://www.loc.gov/standards/iso639-2/php/code_list.php](https://www.loc.gov/standards/iso639-2/php/code_list.php) +```{r language} +my_metadata <- EMLeditor::set_language(my_metadata, "English") +``` +#### Add content unit links +These are the park units where data were collected from, for instance ROMO, not ROMN. If the data package includes data from more than one park, they can all be listed. For instance, if data were collected from all park units within a network, each unit should be listed separately rather than the network. This is because the geographic coordinates corresponding to bounding boxes for each park unit listed will automatically be generated and inserted into the metadata. Individual park units will be more informative than the bounding box for the entire network. +```{r content_units} +park_units <- c("ROMO", "GRSA", "YELL") +my_metadata <- EMLeditor::set_content_units(my_metadata, park_units) +``` + +#### Add the Producing Unit(s) +This is the unit(s) responsible for generating the data package. It may be a single park (ROMO) or a network (ROMN). It may be identical to the units listed in the previous step, overlapping, or entirely different. +```{r prod_units} +# a single producing unit: +my_metadata <- EMLeditor::set_producing_units(my_metadata, "ROMN") +# alternatively, a list of producing units: +my_metadata <- set_producing_units(my_metadata, c("ROMN", "GRYN")) +``` + +## Validate your EML +Almost done! This is another great time to validate your EML and make sure +Everything is schema valid. Run: +```{r val_eml} +EML::eml_validate(my_metadata) +``` +if your EML is valid you should see the following (admittedly crypitic): +# [1] TRUE +# attr(,"errors") +# character(0) + +if your EML is not schema valid, the function will notify you of specific problems you need to address. We HIGHLY recommend that you use the EMLassemblyline and/or EMLeditor functions to fix your EML and do not attempt to edit it by hand. + +## Write your EML to an xml file +Now it's time to convert your R object to an .xml file and save it. Keep in mind that the file name should end with "_metadata.xml". +```{r write_eml} +EML::write_eml(my_metadata, "mymetadatafilename_metadata.xml") +``` + +## Check your .xml file +You're EML metadata file should be ready for upload. You can run some additional tests on your .xml metadata file using `check_eml()`. This function assumes there is only one .xml file in the directory: +```{r check_eml} +# This assumes that you have written your metadata to an .xml file and that the .xml file is in the current working directory. +EMLeditor::check_eml() + +# If you .xml file with metadata is in a different directory, you will have to specify that: +#check_eml("C:/Users//Documents/your_data_package") +``` + +## Check your data package +If your data package is now complete, you can run some test prior to upload to make sure that the package fits some minimal set of requirements and that the data and metadata are properly specified and coincide. This assumes that your data package is in the root of your R project. +```{r congruence_tests} +# this assumes that the data package is the working directory +DPchecker::run_congruence_checks() + +# if your data package is somewhere else, specify that: +# run_congruence_checks("C:/Users//Documents/my_data_package") +``` + + +## Upload your data package +If everything checked out, you should be ready to upload your data package! We recommend using `upload_data_package()` to accomplish this. The function automatically checks your DOI and uploads to the correct reference on DataStore. All of your files for the data package need to be in the same folder, there can be only one .xml file (ending in "_metadata.xml") and all the other files should be data files in .csv format. Each individual file should be < 32Mb. If you have files > 32Mb, you will need to upload them manually using the web interface on DataStore. +```{r upload} +# this assumes your data package is in the current working directory +EMLeditor::upload_data_package() + +# If your data package is somewhere else, specify that: +#upload_data_package("C:/Users//Documents/my_data_package) +``` + +From within DataStore you should be able to extract all the information from the metadata file to populate the relevant DataStore fields. In the upper right, select "Edit" from the drop down menu. Then click on the "Files and Links" tab. On the left side of the files list, select the radio button corresponding to your metadata. Then click the "Extract Metadata" button from the top right of box with the files listed in it. + +Please don't activate your reference just yet! Data package references need to be reviewed prior to activation. We are still working on what that review process will look like. diff --git a/inst/rmarkdown/templates/nps-data-release-report-template/template.yaml b/inst/rmarkdown/templates/nps-data-release-report-template/template.yaml new file mode 100644 index 0000000..ecf68e2 --- /dev/null +++ b/inst/rmarkdown/templates/nps-data-release-report-template/template.yaml @@ -0,0 +1,4 @@ +name: NPS Data Release Report Template +description: > + A description of the template +create_dir: FALSE diff --git a/inst/rmarkdown/templates/template.yaml b/inst/rmarkdown/templates/template.yaml deleted file mode 100644 index 01bd841..0000000 --- a/inst/rmarkdown/templates/template.yaml +++ /dev/null @@ -1,4 +0,0 @@ -name: Editable_EML_Creation_Workflow -description: > - Template for generating EML metadata -create_dir: FALSE From c859db3cd37f15c91b2eb481425cb8a4164fb352 Mon Sep 17 00:00:00 2001 From: Rob Baker Date: Wed, 7 Feb 2024 14:46:01 -0700 Subject: [PATCH 03/33] file setup for DRR template --- .../skeleton/national-park-service-DRR.csl | 189 +++++ .../skeleton/references.bib | 8 + .../skeleton/skeleton.Rmd | 784 +++++++++++------- 3 files changed, 695 insertions(+), 286 deletions(-) create mode 100644 inst/rmarkdown/templates/nps-data-release-report-template/skeleton/national-park-service-DRR.csl create mode 100644 inst/rmarkdown/templates/nps-data-release-report-template/skeleton/references.bib diff --git a/inst/rmarkdown/templates/nps-data-release-report-template/skeleton/national-park-service-DRR.csl b/inst/rmarkdown/templates/nps-data-release-report-template/skeleton/national-park-service-DRR.csl new file mode 100644 index 0000000..47a8d46 --- /dev/null +++ b/inst/rmarkdown/templates/nps-data-release-report-template/skeleton/national-park-service-DRR.csl @@ -0,0 +1,189 @@ + + diff --git a/inst/rmarkdown/templates/nps-data-release-report-template/skeleton/references.bib b/inst/rmarkdown/templates/nps-data-release-report-template/skeleton/references.bib new file mode 100644 index 0000000..1a69c4f --- /dev/null +++ b/inst/rmarkdown/templates/nps-data-release-report-template/skeleton/references.bib @@ -0,0 +1,8 @@ +@article{Scott1994, + title={EXAMPLE CITATION: Standard techniques for inventory and monitoring}, + author={Scott, NJ and Crump, ML and Zimmerman, BL and Jaeger, RG and Inger, RF and Corn, PS and Woodward, BD and Dodd, CK and Scott, DE and Shaffer, HB and others}, + journal={Measuring and monitoring biological diversity: Standard methods for amphibians}, + year={1994}, + publisher={Smithsonian Institution Press} +} + diff --git a/inst/rmarkdown/templates/nps-data-release-report-template/skeleton/skeleton.Rmd b/inst/rmarkdown/templates/nps-data-release-report-template/skeleton/skeleton.Rmd index dfb4e01..e042a59 100644 --- a/inst/rmarkdown/templates/nps-data-release-report-template/skeleton/skeleton.Rmd +++ b/inst/rmarkdown/templates/nps-data-release-report-template/skeleton/skeleton.Rmd @@ -1,348 +1,560 @@ --- -title: "NPS EML Creation Workflow" -author: "Robert Baker" -date: "The Date" -output: html +output: + word_document: default + pdf_document: default +bibliography: references.bib +csl: national-park-service-DRR.csl --- -```{r setup, include=FALSE} -knitr::opts_chunk$set(echo = TRUE) +```{=html} + ``` +```{r user_edited_parameterss, include=FALSE} +# The title of your DRR. Should all DRR start with "Data Release Report:"? Should we enforce titles specifically referencing the data package(s) they the report is about? +title <- "DRR Title" -# Summary -This script acts as a template file for end-to-end creation of EML metadata in R for DataStore. The metadata generated will be of sufficient quality for the data package Reference Type and can be used to automatically populate the DataStore fields for this reference type. The script utilizes multiple R packages and the example inputs are for an EVER Veg Map AA dataset. The example script is meant to either be run as a test of the process or to be replaced with your own content. This is a step by step process where each section should be reviewed, edited if necessary, and run one at a time. After completing a section there is often something to do external to R (e.g. open a text file and add content). Several EMLassemblyline functions are decision points and may only apply to certain data packages. This workflow takes advantage of the NPSdataverse, an R-based ecosystem that includes external EML creation tools such as the R packages EMLassemblyline and EML. However, these tools were not designed to work with DataStore. Therefore, the NPSdatavers and this workflow also incorporate steps from NPS-developed R packages such as EMLeditor and DPchecker. You will necessarily over-write some of the information generated by EMLassemblyline. That is OK and is expected behavior. +# Optional and should only be included if publishing to the semi-official DRR series. Contact Joe if you are. If not, leave as NULL +reportNumber <- ": get this number from Joe DeVivo" -# Good additional references -[EMLassemblyline](https://ediorg.github.io/EMLassemblyline/) -[EMLeditor](https://nationalparkservice.github.io/EMLeditor/index.html) -[EVER Veg Map AA dataset](https://github.com/nationalparkservice/NPS_EML_Script/tree/main/Example_files) (for testing purposes) +# This should match the Data Store Reference ID for this DRR. Eventually we should be able to pull this directly from the data package metadata. +DRR_DSRefID <- 7654321 -# Install and Load R Packages -Install packages. If you have not recently installed packages, please re-install them. You will want to make sure you have the latest versions of all the NPSdataverse packages - QCkit, EMLeditor, DPchecker, and NPSutils - as they are under constant development. If you are on the VPN, you will need to set your CRAN mirror to Texas 1. If you run into errors installing packages from github on NPS computers you may first need to run: -```{r renviron, eval=FALSE} -options(download.file.method="wininet") -``` -```{r package_install, eval=FALSE} -#install packages -install.packages(c("devtools", "tidyverse")) -devtools::install_github("nationalparkservice/NPSdataverse") -``` -```{r load_packages} -# When loading packages, you may be advised to update to more recent versions -# of dependent packages. Most of these updates likely are not critical. -# However, it is important that you update to the latest versions of QCkit, -# EMLeditor, DPchecker and NPSutils as these NPS packages are under constant -# development. -library(NPSdataverse) -library(tidyverse) -``` +#Author names and affiliations: -## Set the overall package details -All of the following items should be reviewed and updated to fit the package you are working on. For lists of more than one item, keep the same order (i.e. item #1 should correspond to the same file in each list). +#One way to think of the author information is that you are building a table: -#### Metadata filename -This becomes the file name of your .xml file. Be sure it ends in _metadata to comply with data package specifications. You do not need to include the extension (.xml). -```{r metadata_id} -metadata_id <- "Test_EVER_AA_metadata" -``` +# Author | Affiliation | ORCID +# Jane | Institute 1 | 0000-1111-2222-3333 +# Jane | Institute 2 | 0000-1111-2222-3333 +# John | Institute 2 | NA -#### Package Title -Give the data package a title. FAIR principles suggest titles of between 7 and 20 words. Be sure to make your title informative and consider how a naive user would interpret it. -```{r package_title} -package_title <- "TEST_Everglades National Park Accuracy Assessment (AA) Data Package" -``` +#once the table is built, authors can be associated with the appropriate institute via relevant superscripts and the institutes can be listed only once in the DRR. -#### Data collection status -Choose from either "ongoing" or "complete" -```{r data_status} -data_type <- "complete" -``` +# list the authors. If an author has multiple institutional affiliations, you must list the author multiple times. In this example, Jane Doe is listed twice because she has two affiliations. +authorNames <- c( + "Jane Doe", + "Jane Doe", + "John Doe" +) -#### Path to data file(s) -Tell R where your data files are. If they are in the working directory, you can set the working_folder to `getwd()`. If they are in a different directory you will need to specify that directory. -```{r working_dir} -working_folder <- getwd() -# or: -# working_folder <- setwd("C:/users//Documents/my_data_package_folder) -``` +# List author affiliations. The order of author affiliations must match the order of the authors in AuthorNames. If an author has multiple affiliations, the author must be listed 2 (or more) times under authorNames (above) and each affiliation should be listed in order. If authors share the same affiliation, the affiliation should be listed once for each author. In this case, Managed Business Solutions (MBS) is listed twice because it is associated with two authors. MBS will only print to the DRR once. -#### List data files -Tell R what your data files are called. -```{r list_files} -# if the data files are in your working directory (and the only .csv files in your working directory are data files: -data_files <- list.files(pattern = "*.csv") +#Note that the entirety of each affiliation is enclosed in quotations. Do not worry about indentation or word wrapping. +authorAffiliations <- c( + "NPS Inventory and Monitoring Division, 1201 Oakridge Dr., Suite 150, Fort Collins, Colorado", + "Managed Business Solutions (MBS), a Sealaska Company, Contractor to the National Park Service, Natural Resource Stewardship and Science Directorate, 1201 Oakridge Dr., Suite 150, Fort Collins, Colorado", + "Managed Business Solutions (MBS), a Sealaska Company, Contractor to the National Park Service, Natural Resource Stewardship and Science Directorate, 1201 Oakridge Dr., Suite 150, Fort Collins, Colorado" +) -# alternatively, you can list the files out manually: -#data_files <- c("qry_Export_AA_points.csv", -# "qry_Export_AA_VegetationDetails.csv") +# List the ORCID iDs for each author in the format "(xxxx-xxxx-xxxx-xxxx)". If an author does not have an ORCID iD, specify NA (no quotes). If an author is listed more than once (for instance because they have multiple institutional affiliations), the ORCID iD must also be listed more than once. For more information on ORCID iDs and to register an ORCID iD, see https://www.orcid.org. + +#The order of the ORCID iDs must match the order of authors in AuthorNames.In this example, Jane Doe has an ORCID iD but John Doe does not. Jane's ORCID iD is listed twice because she her name is listed twice in authorNames(because she has two authorAffiliations). +authorORCID <- c( + "(0000-1111-2222-3333)", "(0000-1111-2222-3333)", NA + ) + +# Replace the text below with your abstract. +DRRabstract <- "Abstract Should go here. Multiple Lines are okay; it'll format correctly. Pay careful attention to non-standard characters, line breaks (
), carriage returns, and curly-quotes. You may find it useful to write the abstract in NotePad++ or some other text editor and not a word processor (such as Microsoft Word).\n\n + +Note that if you need multiple paragraphs or line breaks you can generate them using a combination of backslashes and n's. \n\n + +The abstract should succinctly describe the study, the assay(s) performed, the resulting data, and their reuse potential, but should not make any claims regarding new scientific findings. No references are allowed in this section." + +# DataStore reference ID for the data package associated with this report. You must have at least one data package.Eventually, we will automate importing much of this information from metadata. +dataPackageRefID <- c(12342567) + +# Must match title in DataStore and metadata +dataPackageTitle <- "Data Package Title" + +# Must match descriptions in the data package metadata +dataPackageDescription <- "Short title for data package1" + +# generates your data package DOI based on the data package DataStore reference ID. This is different from the DRR DOI! No need to edit this. +dataPackageDOI <- paste0("https://doi.org/10.57830/", dataPackageRefID) + +# list the file names in your data package. Do NOT include metadata files. +dataPackage_fileNames <- c( + "my_data.csv", + "my_data2.csv" +) + +# list the approximate size of each data file. Make sure the order corresponds to the order of of the file names in dataPackage_fileNames +dataPackage_fileSizes <- c("0.8 MB", "10 GB") + +# list a short, one-line description of each data file. Descriptions must be in the same order as the filenames. +dataPackage_fileDescript <- c( + "This is a short description of my_data.csv (a good guideline is 10 words or less).", + "This is a short description of my_data2.csv.") +``` + +```{r setup_do_not_edit, include=FALSE} +RRpackages <- c("markdown", + "rmarkdown", + "pander", + "knitr", + "yaml", + "kableExtra", + "devtools", + "tidyverse") + +inst <- RRpackages %in% installed.packages() +if (length(RRpackages[!inst]) > 0) { + install.packages(RRpackages[!inst], dep = TRUE, repos = "https://cloud.r-project.org") +} +lapply(RRpackages, library, character.only = TRUE) + +devtools::install_github("EmilyMarkowitz-NOAA/NMFSReports") +library(NMFSReports) +devtools::install_github("nationalparkservice/QCkit") +library(QCkit) +``` + +*`r (paste0("https://doi.org/10.38750/", DRR_DSRefID))`* + +```{r title_do_not_edit, echo=FALSE, results="asis"} +date <- format(Sys.time(), "%d %B, %Y") +cat("#", title, "\n") +if (!is.null(reportNumber)) { + subtitle <- paste0("Data Release Report ", reportNumber) + cat("###", subtitle) +} +``` + +```{r authors_do_not_edit, echo=FALSE, results="asis"} +author_list <- data.frame(authorNames, authorAffiliations, authorORCID) +unique_authors <- author_list %>% distinct(authorNames, + .keep_all = TRUE) +unique_affiliation <- author_list %>% distinct(authorAffiliations, + .keep_all = TRUE) + +#single author documents: +if(length(seq_along(unique_authors$authorNames)) == 1){ + + for (i in seq_along(unique_authors$authorNames)) { + curr <- unique_authors[i, ] + + #find all author affiliations + aff <- author_list[which(authorNames == curr$authorNames),] + aff <- aff$authorAffiliations + + #identify order of affiliation(s) in a unique list of affiliations + #build the superscripts for author affiliations + super_script <- unique_affiliation$authorAffiliations %in% aff + super <- which(super_script == TRUE) + script <- super + + if(length(seq_along(super)) > 1){ + script <- NULL + j <- 1 + while(j < length(seq_along(super))){ + script <- append(script, paste0(super[j],",")) + j <- j+1 + } + if(j == length(seq_along(super))){ + script <- append(script, super[j]) + } + } + } + cat("#### ", curr$authorNames, sep="") + if (is.na(curr$authorORCID)) { + } + if (!is.na(curr$authorORCID)) { + orc <- paste0(" ", curr$authorORCID, "") + cat({{ orc }}) + } + cat(" ^",script,"^", " ", " ", sep="") + + #cat("#### ", unique_authors$authorNames, "^1^", sep="") + #if(!is.na(authorORCID)){ + # orc <- paste0(" https://orcid.org/", unique_authors$authorORCID) + # cat({{ orc }}, "\n") + #} + #cat("#### ", unique_authors$authorAffiliations, sep="") +} + +#multi author documents: +if(length(seq_along(unique_authors$authorNames)) > 1){ + for (i in seq_along(unique_authors$authorNames)) { + curr <- unique_authors[i, ] + + #find all author affiliations + aff <- author_list[which(authorNames == curr$authorNames),] + aff <- aff$authorAffiliations + + #identify order of affiliation(s) in a unique list of affiliations + #build the superscripts for author affiliations + super_script <- unique_affiliation$authorAffiliations %in% aff + super <- which(super_script == TRUE) + script <- super + + if(length(seq_along(super)) > 1){ + script <- NULL + j <- 1 + while(j < length(seq_along(super))){ + script <- append(script, paste0(super[j],",")) + j <- j+1 + } + if(j == length(seq_along(super))){ + script <- append(script, super[j]) + } + } + + # if NOT the second-to-last author: + if(i < (length(seq_along(unique_authors$authorNames)) - 1)){ + cat("#### ", curr$authorNames, " ", sep="") + if (is.na(curr$authorORCID)) { + } + if (!is.na(curr$authorORCID)) { + orc <- paste0(" ", curr$authorORCID, " ") + cat({{ orc }}) + } + cat( " ^", script, "^", ", ", " ", sep = "") + } + + # if IS the second-to-last author + if(i == (length(seq_along(unique_authors$authorNames)) - 1)){ + + #if 3 or more authors, include a comma before the "and": + if(length(seq_along(unique_authors$authorNames)) > 2){ + cat(curr$authorNames, sep="") + if (is.na(curr$authorORCID)) { + } + if (!is.na(curr$authorORCID)) { + orc <- paste0(" ", curr$authorORCID, " ") + cat({{ orc }}) + } + cat(" ^",script,"^", ", ", sep="") + cat("and ", sep="") + } + + #If only 2 authors, omit comma before "and": + if(length(seq_along(unique_authors$authorNames)) == 2){ + cat("#### ", curr$authorNames, sep="") + if (is.na(curr$authorORCID)) { + } + if (!is.na(curr$authorORCID)) { + orc <- paste0(" ", curr$authorORCID, " ") + cat({{ orc }}) + } + cat(" ^",script,"^ ", sep = "") + cat("and ", sep="") + } + } + + # if IS the Last author : + if(i == length(seq_along(unique_authors$authorNames))){ + cat(curr$authorNames, sep="") + if (is.na(curr$authorORCID)) { + } + if (!is.na(curr$authorORCID)) { + orc <- paste0(" ", curr$authorORCID, " ") + cat({{ orc }}) + } + cat(" ^", script, "^", sep = "") + } + } +} +cat("\n\n") +for(i in 1:nrow(unique_affiliation)){ + cat("^",i,"^ ", unique_affiliation[i,2], "\n\n", sep="") + } +``` + +# Abstract + +`r DRRabstract` + +
+ +# Acknowledgements (optional) + +The Acknowledgements should contain text acknowledging non-author contributors. Acknowledgements should be brief, and should not include thanks to anonymous referees and editors or effusive comments. Grant or contribution numbers may be acknowledged. + +# Using citations in this document: + +To automate citations, add the citation to in bibtex format to the file "references.bib". You can manually copy and paste the bibtex for each reference in, or you can search for it from within Rstudio. From within Rstudio, make sure you are editing this document using the "Visual" view (as opposed to "Source"). From the "Insert" drop-down menu, select "\@ Citation..." (shortcut: Cntrl-Shift-F8). This will open a tool where you can view all the citations in your reference.bib file as well as search multiple databases for references, automatically insert the bibtex for the reference into your references.bib file (and customize the unique identifier if you'd like) and insert the in-text citation into the DRR template. + +Once a reference is in your references.bib file, from within this template you can simply type the '\@' symbol and select which reference to insert in the text. + +If you need to edit how the citation is displayed after inserting it into the text, switch back to the "Source" view. Each bibtex citation should start with a unique identifier; the example reference in the supplied references.bib file has the unique identifier "\@article{Scott1994,". Using the "Source" view in Rstudio, insert the reference in your text, by combining the "at" symbol with the portion of the unique identifier after the curly bracket: @Scott1994 . You can put a citation in parentheses using square brackets: [@Scott1994]. This will be rendered as (Scott, et al. 1994) in text. You can add multiple authors works a single parenthetical citation by separating them with a semi-colon. You can suppress the author and cite just the year by using a - symbol before the \@ : [-@Scott1994]. + +If you would like to format your citations manually, please feel free to do that instead. Make sure to examine the References section for examples of how to manually format each citation type. + +# Data Records (required) + +## Data Inputs (optional) + +If the data package being described was generated based on one or more pre-existing datasets, cite those datasets here. + +## Summary of Datasets Created (required) + +The Data Records section should be used to explain each data record associated with this work (for instance, a data package), including the DOI indicating where this information is stored, and provide an overview of the data files and their formats. Each external data record should be cited. Below is some sample text: + +This DRR describes the data package *`r dataPackageTitle`* which contains a metadata file and `r length(dataPackage_fileNames)` data files. These data were compiled and processed for dissemination by the National Park Service Inventory and Monitoring Division (IMD) and are available at `r dataPackageDOI` (see Table 1). + +```{r FileTable, echo=FALSE} +filelist <- data.frame(dataPackage_fileNames, dataPackage_fileSizes, dataPackage_fileDescript) + +knitr::kable(filelist, caption = paste0("**Table 1. ", dataPackageTitle, ": List of data files.**"), col.names = c("**File Name**", "**Size**", "**Description**"), format = "pandoc") ``` -#### Name the data files -These should be relatively short, but perhaps more informative than the actual file names. Make sure that they are in the same order as the files in data_files. -```{r data_names} -data_names <- c("TEST_AA Point Location Data", - "TEST_AA Vegetation Coverage Data") -``` +See Appendix for additional notes and examples. -#### Describe each data file. Data file descriptions should be unique and about 10 words long. Descriptions will be used in auto-generated tables within the ReadMe and DRR. If you need to use more than 10 words, consider putting that information into the abstract, methods, or additional information sections. Again, make sure these are in the same order as the files they are describing. -```{r data_descriptions} -data_descriptions <- c("TEST_Everglades Vegetation Map Accuracy Assessment point data", - "TEST_Everglades Vegetation Map Accuracy Assessment vegetation data") -``` +# Data Quality Evaluation (required) -#### Placeholder URL for data files -EMLassemblyline needs to know where the data files will be (a URL). However, because you have not yet initiated a draft reference in DataStore, it isn't possible to specify a URL. Instead, insert a place holder. Don't worry - this information will be updated later on when you add a Digital Object Identifier(DOI) to the metadata. -```{r temp_data_url} -data_urls <- c(rep("temporary URL", length(data_files))) -``` +The Data Quality Evaluation section should present any analyses that are needed to support the technical quality of the dataset. This section may be supported by figures and tables, as needed. *This is a required section*; authors must provide information to justify the reliability of their data. Wherever possible & appropriate, data quality evaluation should be presented in the context of data standards and quality control procedures as prescribed in the project's quality assurance planning documentation. -#### Taxonomic information -Specify where you taxonomic information is. this can be a single file or a list of files and fields (columns) with scientific names that will be used to automatically generate the taxonomic coverage metadata. We suggest using [DarwinCore](https://dwc.tdwg.org/terms) for column names, such as "scientificName". If your data package does not have taxonomic data, skip this step. -```{r taxonomic_info} -# the file(s) where scientific names are located: -data_taxa_tables <- "qry_Export_AA_VegetationDetails.csv" +**Required elements for this section** -# the column where your scientific names are within the data files. -data_taxa_fields <- "scientific_Name" -``` +*Required Table* -#### Geographic information -Specify the tables and fields that contain geographic coordinates and site names. This information will be used to fill out the geographic coverage elements of the metadata. If your data package does not have geographic information skip this step. If the only geographic information you are supplying is the park units (and their bounding boxes) you can also skip this step; Park Units and the corresponding GPS coordinates for their bounding boxes will be added at a later step. If your coordinates are in UTMs and not GPS, try the [`convert_utm_to_ll()`](https://nationalparkservice.github.io/QCkit/reference/convert_utm_to_ll.html) function in the [QCkit package](https://nationalparkservice.github.io/QCkit/) -```{r geo_info} -data_coordinates_table <- "qry_Export_AA_points.csv" -data_latitude <- "decimalLatitude" -data_longitude <- "decimalLongitude" -data_sitename <- "Point_ID" -``` +```{r dataAcceptanceCriteria, echo=FALSE, eval=TRUE} +# To turn off, set eval=FALSE. +# Generates a table of acceptance criteria for each of the data quality fields in your data package. Mitigations taken when data did not meet the acceptance criteria should be described textually in the Data Quality Evaluation section. -#### Temporal information -This should indicate collection date of the first and last data point in the data package (across all files) and does not include any planning, pre- or post-processing time. The format should be one that complies with the International Standards Organization's standard 8601. The recommended format for EML is: YYYY-MM-DD, where Y is the four digit year, M is the two digit month code (01 - 12 for example, January = 01), and D is the two digit day of the month (01 - 31). Using an alternate format or setting the date to the future will cause errors down the road! -```{r temp_info} -startdate <- ymd("2010-01-26") -enddate <- ymd("2013-01-04") -``` +# Specify which columns in your data package are data quality fields in the dataQualityFields variable. In the example below, data quality fields/columns in the data package are listed in the format [FieldName]_flag. These data quality fields relate to the respective temporal, taxonomic, and geographic data. -## EMLassemblyline Functions -The next set of functions are meant to be considered one by one and only run if applicable to a particular data package. The first year will typically see all of these run, but if the data format and protocol stay constant over time it may be possible to skip some in future years. Additionally some datasets may not have geographic or taxonomic component. +dataQualityFields <- c( + "eventDate_flag", + "scientificName_flag", + "coordinate_flag" + ) -#### FUNCTION 1 - Core Metadata Information -This function creates blank .txt template files for the abstract, additional information, custom units, intellectual rights, keywords, methods, and personnel. Be sure the edit the personnel text file in Excel as it has columns. Remember that the role "creator" is required! EMLassemblyline will also warn you if you do not include a "PI" role, but you can ignore the warning; this role is not required. Typically these files can be reused between years. +# Brief description of the acceptance criteria for each respective data quality field. The order of the acceptance criteria must match the order of the data quality fields. -The personnel.txt file can best be edited in excel. You must list at least one person with a "creator" role and one person with a "contact" role (you can list the same person twice for both.). Creators will be authors and included in the data package citation. You do not need to list anyone as the "PI" and can list as many additional people with custome roles as desired (e.g. "field technician", "laboratory assistant"). Each individual must have a surName. The electornicMailAddress is an email and the userId is the persons's [ORCID](https://orcid.org) (if they have one). List the ORCID as just the 16 digit string, do not include the https://orcid.org prefix (e.g. xxxx-xxxx-xxxx-xxxx). You can leave the projectTitle, fundingAgency, and fundingNumber blank. +dataQualityAcceptanceCriteria <- c( + "Sampling event date within the start and end dates of the project", + "Taxon exists within Integrated Taxonomic Information System and GBIF", + "Sampling location is within the park unit boundaries" + ) -We encourage you to craft your abstract in a text editor, NOT Word. Your abstract will be forwarded to data.gov, DataCite, google dataset search, etc. so it is worth some time to carefully consider what is relevant and important information for an abstract. Abstracts must be greater than 20 words. Good abstracts tend to be 250 words or less. You may consider including the following information: The premise for the data collection (why was it done?), why is it important, a brief overview of relevant methods, and a brief explanation of what data are included such as the period of time, location(s), and type of data collected. Keep in mind that if you have lengthy descriptions of methods, provenance, data QA/QC, etc it may be better to expand upon these topics in a Data Release Report or similar document uploaded separately to DataStore. +data_criteria<-data.frame(dataQualityFields = str_remove(dataQualityFields, "_flag"), dataQualityAcceptanceCriteria) -Currently this function inserts a Creative Common 0 license. The CC0 license will need to be updated. However, to ensure that the licence meets NPS specifications and properly coincides with CUI designations, the best way to update the license information is during a later step using `EMLeditor::set_int_rights()`. There is no need to edit this .txt file. -```{r core} -EMLassemblyline::template_core_metadata(path = working_folder, - license = "CC0") # that '0' is a zero! -``` +data_criteria %>% + NMFSReports::format_cells(1:3, 1, "bold") %>% + knitr::kable(caption = "**Table 2. Acceptance criteria for data evaluated.**", col.names=c("**Field**", "**Acceptance Criteria**"), format="pandoc", align = 'c') -#### FUNCTION 2 - Data Table Attributes -This function creates an "attributes_datafilename.txt" file for each data file. This can be opened in Excel (we recommend against trying to update these in a text editor) and fill in/adjust the columns for attributeDefinition, class, unit, etc. refer to https://ediorg.github.io/EMLassemblyline/articles/edit_tmplts.html for helpful hints and `view_unit_dictionary()` for potential units. This will only need to be run again if the attributes (name, order or new/deleted fields) are modified from the previous year. NOTE that if these files already exist from a previous run, they are not overwritten. -```{r attributes} -EMLassemblyline::template_table_attributes(path = working_folder, - data.table = data_files, - write.file = TRUE) ``` -#### FUNCTION 3 - Data Table Categorical Variable -This function Creates a "catvars_datafilename.txt" file for each data file that has columns with a class = categorical. These .txt files will include each unique 'code' and allow input of the corresponding 'definition'.NOTE that since the list of codes is harvested from the data itself, it's possible that additional codes may have been relevant/possible but they are not automatically included here. Consider your lookup lists carefully to see if additional options should be included (e.g if your dataset DPL values are all set to "Accepted" this function will not include "Raw" or "Provisional" in the resulting file and you may want to add those manually). NOTE that if these files already exist from a previous run, they are not overwritten. -```{r cat_vars} -EMLassemblyline::template_categorical_variables(path = working_folder, - data.path = working_folder, - write.file = TRUE) -``` +```{r data_column_flagging, echo=FALSE, eval=TRUE} +# To turn off, set eval=FALSE. +# Generates a table summarizing QC at the column level within each file. All flagged columns are included. To add additional non-flagged columns, specify them with column names: cols=("my_unflagged_data1", "my_unflagged_data2)" or numbers: cols=c(1:4). All non-missing data in unflagged columns is assumed accepted. If a file has no flagged columns and no specified custom columns, all values for that data file will be listed as "NA". -#### FUNCTION 4 - Geographic Coverage -If the only geographic coverage information you plan on using are park boundaries, you can skip this step. You can add park unit connections using EMLeditor, which will automatically generate properly formatted GPS coordinates for the park bounding boxes. - -If you would like to add additional GPS coordinates (such as for specific site -locations, survey plots, or bounding boxes for locations within a park, etc) please do. - -This function creates a geographic_coverage.txt file that lists your sites as points as long as your coordinates are in lat/long. If your coordinates are in UTM it is probably easiest to convert them first or create the geographic_coverage.txt file another way (see [QCkit](https://nationalparkservice.github.io/QCkit/) for R functions that will convert UTM to lat/long). -```{r geo_cov} -EMLassemblyline::template_geographic_coverage(path = working_folder, - data.path = working_folder, - data.table = data_coordinates_table, - lat.col = data_latitude, - lon.col = data_longitude, - site.col = data_sitename, - write.file = TRUE) -``` +#set directory to the location of your data package: +path <- "../../DataPackageWorkflow/dataPackages/BICY_Veg_Data_Package_Example" +dc_flags <- QCkit::get_custom_flags(directory = path, output="columns") +dc_flags$`File Name` <- gsub(".csv", "", dc_flags$`File Name`) -#### FUNCTION 5 - Taxonomic Coverage -This function creates a taxonomic_coverage.txt file if you have taxonomic data. Currently supported authorities are 3 = ITIS, 9 = WORMS, and 11 = GBIF. In the example below, the function will first try to find the scientific name at ITIS and if it fails will then look at GBIF. If you have lots of taxa, this could take some time to complete. -```{r tax_cov} -EMLassemblyline::template_taxonomic_coverage(path = working_folder, - data.path = working_folder, - taxa.table = data_taxa_tables, - taxa.col = data_taxa_fields, - taxa.authority = c(3,11), - taxa.name.type = 'scientific', - write.file = TRUE) -``` -## Create an EML File -Run this (it may take a little while) and see if it validates (you should see 'Validation passed'). It will generate an R object called "my_metadata". The function could alert you of some issues to review as. Run the function `issues()` at the end of the process to get feedback on items that might be missing or need attention. Fix these issues and then re-run the `make_eml()` function. -```{r make_eml} -my_metadata <- EMLassemblyline::make_eml(path = working_folder, - dataset.title = package_title, - data.table = data_files, - data.table.name = data_names, - data.table.description = data_descriptions, - data.table.url = data_urls, - temporal.coverage = c(startdate, enddate), - maintenance.description = data_type, - package.id = metadata_id, - return.obj = TRUE, - write.file = FALSE) -``` +colnames(dc_flags)[2]<-paste0("Measure", "^1^") +colnames(dc_flags)[4]<-paste0("A", "^2^") +colnames(dc_flags)[8]<-paste0("% Accepted", "^3^") -## Check for EML validity -This is a good point to pause and test whether your EML is valid. -```{r validate} -EML::eml_validate(my_metadata) -``` +#Generate the table: +dc_flags %>% + knitr::kable( + caption = '**Table 3: Summary of data quality flags for each column [A – Accepted; AE – Accepted but Estimated; P – Provisional; R – Rejected.]**', + format = "pandoc", + digits = 2, + align = 'c', + col.names = c("**File Name**", "**Measure^1^**", "**Number of Reocrds**", "**A^2^**", "**AE**", "**R**", "**P**", "**% Accepted^3^**")) %>% +kableExtra::add_footnote( + c("The '_flag' suffix has been omitted from column names for brevity.", + "All non-missing data in specified unflagged columns are considered accepted.", + "% Accepted is calculated as the number of accepted (where A and AE are both considered accepted) divided by the total number of observations plus the number of missing observations."), + notation = "number" + ) -if your EML is valid you should see the following (admittedly cryptic) result: -``` -# [1] TRUE -# attr(,"errors") -# character(0) ``` -if your EML is not schema valid, the function will notify you of specific problems you need to address. We HIGHLY recommend that you use the EMLassemblyline and/or EMLeditor functions to fix your EML and do not attempt to edit it by hand. - -## Add NPS specific fields to EML -Now that you have valid EML metadata, you need to add NPS-specific elements and fields. For instance, unit connections, DOIs, referencing a DRR, etc. More information about these functions can be found at: [https://nationalparkservice.github.io/EMLeditor/](https://nationalparkservice.github.io/EMLeditor/). - -#### Add Controlled Unclassified Information (CUI) codes -This is a required step. It is important to indicate not only that your data -package contains CUI, but also to inform users if your data package does NOT -contain CUI because empty fields can be ambiguous (does it not contain CUI or -did the creators just miss that step?). You can choose from one of five CUI -dissemination codes. Watch out for the spaces! These are: - * PUBLIC - Does NOT contain CUI. - * FED ONLY - Contains CUI. Only federal employees should have access (similar to "internal only" in DataStore). - * FEDCON - Contains CUI. Only federal employees and federal contractors should have access (also very much like current "internal only" setting in DataStore). - * DL ONLY - Contains CUI. Should only be available to a named list of individuals (where and how to list those individuals TBD) - * NOCON - Contains CUI. Federal, state, local, or tribal employees may have access, but contractors cannot. -More information about these codes can be found at: [https://www.archives.gov/cui/registry/limited-dissemination](https://www.archives.gov/cui/registry/limited-dissemination) - -```{r cui_dissemination} -my_metadata <- EMLeditor::set_cui(my_metadata, "PUBLIC") -# note that in this case I have added the CUI code to the original R object, -# "my_metadata" but by giving it a new name, i.e. "my_meta2" I could have -# created a new R object. Sometimes creating a new R object is preferable -# because if you make a mistake you don't need to start over again. +```{r data_package_flagging, echo=FALSE, eval=TRUE} +# To turn off, set eval=FALSE. +# Generates a table summarizing data quality across all flagged columns of each data file. To add additional non-flagged columns, specify them with column names: cols=("my_unflagged_data1", "my_unflagged_data2)" or numbers: cols=c(1:4). All non-missing data in unflagged columns is assumed accepted. If a file has no flagged columns and no specified custom columns, all values for that data file will be listed as "NA". + +#set directory to the location of your data package +path<-"../../DataPackageWorkflow/dataPackages/BICY_Veg_Data_Package_Example" +dp_flags <- get_custom_flags(directory = path, output="files") + +#generate table: +dp_flags %>% + kableExtra::kbl(caption = '**Table 4: Summary of data quality flags for the data package [A – Accepted; AE – Accepted but Estimated; P – Provisional; R – Rejected.]**', + format = "pandoc", + col.names = c("**File Name**", "**A^1^**", "**AE**", "**R**", "**P**", "**% Accepted^2^**"), + digits=2, + align = 'c') %>% + kableExtra::add_footnote(c("All non-missing data in specified unflagged columns are considered accepted.", + "% Accepted is calculated as the number of accepted (where A and AE are both considered accepted) divided by the total number of observations plus the number of missing observations."), notation = "number") ``` -## Intellectual Rights -EMLassemblyine and ezEML provide some attractive looking boilerplate for setting the intellectual rights. It looks reasonable and so is easy to just keep. However, NPS has some specific regulations about what can and cannot be in the intellectualRights tag. Use `set_int_rights()` to replace the text with NPS-approved text. Note: You must first add the CUI dissemination code using `set_cui()` as the dissemination code and license must agree. That is, you cannot give a data package with a PUBLIC dissemination code a "restricted" license (and vise versa: a restricted data package that contains CUI cannot have a public domain or CC0 license). You can choose from one of three options: - * "restricted": If the data contains Controlled Unclassified Information (CUI), the intellectual rights must read: **"This product has been determined to contain Controlled Unclassified Information (CUI) by the National Park Service, and is intended for internal use only. It is not published under an open license. Unauthorized access, use, and distribution are prohibited."** +Possible content **strongly Suggested to Include** - * "public": If the data do not contain CUI, the default is the public domain. The intellectual rights must read: **"This work is in the public domain. There is no copyright or license."** +- Occurrence rates or patterns in data that do not meet established standards or data quality objectives. - * "CC0": If you need a license, for instance if you are working with a partner organization that requires a license, use CC0: **"The person who associated a work with this deed has dedicated the work to the public domain by waiving all of his or her rights to the work worldwide under copyright law, including all related and neighboring rights, to the extent allowed by law. You can copy, modify, distribute and perform the work, even for commercial purposes, all without asking permission."** +Possible content **may include:** -The `set_int_rights()` function will also put the name of your license in a field in EML for DataStore harvesting. +- experiments that support or validate the data-collection procedure(s) (e.g. negative controls, or an analysis of standards to confirm measurement linearity) +- statistical analyses of experimental error and variation +- general discussions of any procedures used to ensure reliable and unbiased data production, such as chain of custody procedures, blinding and randomization, sample tracking systems, etc. +- any other information needed for assessment of technical rigor by reviewers/users -```{r int_rights} -# choose from "restricted", "public" or "CC0" (zero), see above: -my_metadata <- EMLeditor::set_int_rights(my_metadata, "public") -``` +Generally, this **should not include:** -#### Add a data package DOI -Add your data package's Digital Object Identifier (DOI) to the metadata. The `set_datastore_doi()` initiates a draft data package reference on DataStore, and populates the reference with a title pulled from your metadata, “[DRAFT] : ”. This temporary title is purely for your tracking purposes and can easily be updated later. The `set_datastore_doi()` function will then insert the corresponding DOI for your data package into your metadata. Now that a draft reference has been initiated on DataStore, it is possible to fill in the online URL for each data file. `set_datastore_doi()` automatically does that for you too. There are a few things to keep in mind: - 1) Your DOI and the data package reference are not yet active and are not publicly accessible until after review and activation/publication. - 2) We suggest you NOT manually upload files. If you manually upload your files, be sure to upload your data package to the correct draft reference! It is easy to create several draft references with the same draft title but different DataStore reference IDs and DOIs. So check the reference ID number carefully - 3) There is no need to fill in additional fields in DataStore at this point - many of them will be auto-populated based on the metadata you upload. Any fields you do populate will be over-written by the content in your metadata. -```{r DS_doi} -my_metadata <- EMLeditor::set_datastore_doi(my_metadata) -``` +- follow-up experiments aimed at testing or supporting an interpretation of the data +- statistical hypothesis testing (e.g. tests of statistical significance, identifying deferentially expressed genes, trend analysis, etc.) +- exploratory computational analyses like clustering and annotation enrichment (e.g. GO analysis). -#### Add information about a DRR (optional) -If you are producing (or plan to produce) a DRR, add links to the DRR describing the data package. +*Stock Text to include:* -You will need the DOI for the DRR you are drafting as well as the DRR's Title. Go to DataStore and initiate a draft DRR, including a title. For the purposes of the data package, there is no need to populate any other fields. At this point, you do not need to activate the DRR reference and, while a DOI has been reserved for your DRR, -it will not be activated until after publication so that you have plenty of -time to construct the DRR. -```{r DRR_links} -my_metadata <- EMLeditor::set_drr(my_metadata, 7654321, "DRR Title") -``` +The data within the data records listed above have been reviewed by staff in the NPS Inventory and Monitoring Division to ensure accuracy, completeness, and consistency with documented data quality standards, as well as for usability and reproducibility (Table 3). Of the data that were evaluated for quality, XX.X% of fields in this data package met data quality standards. The *`r dataPackageTitle`* is suitable for its intended use as of the date of processing (`r Sys.Date()`). -#### Set the language -This is the human language (as opposed to computer language) that the data package and metadata are constructed in. Examples include English, Spanish, Navajo, etc. A full list of available languages is available from the Libraryof Congress. Please use the "English Name of Language" as an input. The function will then convert your input to the appropriate 3-character ISO 639-2 code.Available languages: [https://www.loc.gov/standards/iso639-2/php/code_list.php](https://www.loc.gov/standards/iso639-2/php/code_list.php) -```{r language} -my_metadata <- EMLeditor::set_language(my_metadata, "English") -``` -#### Add content unit links -These are the park units where data were collected from, for instance ROMO, not ROMN. If the data package includes data from more than one park, they can all be listed. For instance, if data were collected from all park units within a network, each unit should be listed separately rather than the network. This is because the geographic coordinates corresponding to bounding boxes for each park unit listed will automatically be generated and inserted into the metadata. Individual park units will be more informative than the bounding box for the entire network. -```{r content_units} -park_units <- c("ROMO", "GRSA", "YELL") -my_metadata <- EMLeditor::set_content_units(my_metadata, park_units) -``` +# Usage Notes (required) -#### Add the Producing Unit(s) -This is the unit(s) responsible for generating the data package. It may be a single park (ROMO) or a network (ROMN). It may be identical to the units listed in the previous step, overlapping, or entirely different. -```{r prod_units} -# a single producing unit: -my_metadata <- EMLeditor::set_producing_units(my_metadata, "ROMN") -# alternatively, a list of producing units: -my_metadata <- set_producing_units(my_metadata, c("ROMN", "GRYN")) -``` +The Usage Notes should contain brief instructions to assist other researchers with reuse of the data. This may include discussion of software packages (with appropriate citations) that are suitable for analysing the assay data files, suggested downstream processing steps (e.g. normalization, etc.), or tips for integrating or comparing the data records with other datasets. Authors are encouraged to provide code, programs or data-processing workflows if they may help others understand or use the data. -## Validate your EML -Almost done! This is another great time to validate your EML and make sure -Everything is schema valid. Run: -```{r val_eml} -EML::eml_validate(my_metadata) -``` -if your EML is valid you should see the following (admittedly crypitic): -# [1] TRUE -# attr(,"errors") -# character(0) +For studies involving privacy or safety controls on public access to the data, this section should describe in detail these controls, including how authors can apply to access the data, what criteria will be used to determine who may access the data, and any limitations on data use. -if your EML is not schema valid, the function will notify you of specific problems you need to address. We HIGHLY recommend that you use the EMLassemblyline and/or EMLeditor functions to fix your EML and do not attempt to edit it by hand. +## Acquiring the Data Package -## Write your EML to an xml file -Now it's time to convert your R object to an .xml file and save it. Keep in mind that the file name should end with "_metadata.xml". -```{r write_eml} -EML::write_eml(my_metadata, "mymetadatafilename_metadata.xml") -``` +This data package is available for download from the NPS DataStore at `r dataPackageDOI` and can be directly imported into R data frames using the NPSutils package -## Check your .xml file -You're EML metadata file should be ready for upload. You can run some additional tests on your .xml metadata file using `check_eml()`. This function assumes there is only one .xml file in the directory: -```{r check_eml} -# This assumes that you have written your metadata to an .xml file and that the .xml file is in the current working directory. -EMLeditor::check_eml() +# Methods -# If you .xml file with metadata is in a different directory, you will have to specify that: -#check_eml("C:/Users//Documents/your_data_package") -``` +Ideally these methods are identical to the methods listed in the metadata accompanying the data package that the DRR describes.Future versions of this template will pull directly from metadata. + +The Methods should cite previous methods under use but also be detailed enough describing data production including experimental design, data acquisition assays, and any computational processing (e.g. normalization, image feature extraction) such that others can understand the methods and processing steps without referring to associated publications. Cite and link to the DataStore reference for the protocol for detailed methods sufficient for reproducing the experiment or observational study. Related methods should be grouped under corresponding subheadings where possible, and methods should be described in enough detail to allow other researchers to interpret the full study. -## Check your data package -If your data package is now complete, you can run some test prior to upload to make sure that the package fits some minimal set of requirements and that the data and metadata are properly specified and coincide. This assumes that your data package is in the root of your R project. -```{r congruence_tests} -# this assumes that the data package is the working directory -DPchecker::run_congruence_checks() +Specific data inputs and outputs should be explicitly cited in the text and included in the References section below, following the same [Chicago Manual of Style author-date format](https://www.chicagomanualofstyle.org/tools_citationguide/citation-guide-2.html) in text. See the [USGS data citation guidelines](https://www.usgs.gov/data-management/data-citation) for examples of how to cite data in text and in the References section. -# if your data package is somewhere else, specify that: -# run_congruence_checks("C:/Users//Documents/my_data_package") +Authors are encouraged to consider creating a figure that outlines the experimental workflow(s) used to generate and analyse the data output(s) (Figure 1). + +```{r figure1, echo=FALSE, fig.cap="Example general workflow to include in the methods section."} +include_graphics("vignettes/common/ProcessingWorkflow.png") ``` +## Data Collection and Sample Processing Methods (optional) + +Include a description of field methods and sample processing + +## Additional Data Sources (optional) + +Provide descriptions (with citations) of other data sources used. + +## Data Processing (required if done) + +Summarize process and results of any QC processes done that manipulate, change, or qualify data. + +## Code Availability (required) + +For all studies using custom code in the generation or processing of datasets, a statement must be included indicating whether and how the code can be accessed and any restrictions to access. This section should also include information on the versions of any software used, if relevant, and any specific variables or parameters used to generate, test, or process the current dataset. Actual analytical code should be provided in Appendices. + +# References (required) + +Provide sufficient information to locate the resource. If the citation has a DOI, include the DOI at the end of the citation, including the prefix. If you are citing documents that have unregistered DOIs (such as a data package that you are working on concurrently) still include the DOI. Electronic resources data and data services or web sites should include the date they were accessed. Keep the following line of code if you would like to automate generating and formatting references: + +::: {#refs} +::: -## Upload your data package -If everything checked out, you should be ready to upload your data package! We recommend using `upload_data_package()` to accomplish this. The function automatically checks your DOI and uploads to the correct reference on DataStore. All of your files for the data package need to be in the same folder, there can be only one .xml file (ending in "_metadata.xml") and all the other files should be data files in .csv format. Each individual file should be < 32Mb. If you have files > 32Mb, you will need to upload them manually using the web interface on DataStore. -```{r upload} -# this assumes your data package is in the current working directory -EMLeditor::upload_data_package() +If you would like to manually format your references, delete the preceding two lines and use the following examples instead: Include bibliographic information for any works cited (including the data package the DRR is describing) in the above sections, using the standard *NPS NR Publication Series* referencing style. + +See the following examples: + +## Agency, Company, etc. as Author Examples + +Fung Associates Inc. and SWCA Environmental Consultants. 2010. Assessment of natural resources and watershed conditions for Kalaupapa National Historical Park. Natural Resource Report. NPS/NPRC/WRD/NRR—2010/261. National Park Service, Fort Collins, Colorado. + +Greater Yellowstone Whitebark Pine Monitoring Working Group. 2014. Monitoring whitebark pine in the Greater Yellowstone Ecosystem: 2013 annual report. Natural Resource Data Series. NPS/GRYN/NRDS—2014/631. National Park Service. Fort Collins, Colorado. + +National Park Service (NPS). 2016. State of the park report for Zion National Park. State of the Park Reports. No. 23. National Park Service. Washington, District of Columbia. + +U.S. Forest Service (USFS). 1993. ECOMAP. National hierarchical framework of ecological units. U. S. Forest Service, Washington, D.C. + +## Traditional Journal Article Examples + +Bradbury, J. W., S. L. Vehrencamp, K. E. Clifton, and L. M. Clifton. 1996. The relationship between bite rate and local forage abundance in wild Thompson’s gazelles. Ecology 77:2237–2255. + +Oakley, K. L., L. P. Thomas, and S. G. Fancy. 2003. Guidelines for long-term monitoring protocols. Wildlife Society Bulletin 31(4):1000–1003. + +Sawaya, M. A., T. K. Ruth, S. Creel, J. J. Rotella, J. B. Stetz, H. B. Quigley, and S. T. Kalinowski. 2011. Evaluation of noninvasive genetic sampling methods for cougars in Yellowstone National Park. The Journal of Wildlife Management 75(3):612–622. + +## Book Example + +Harvill, A. M., Jr., T. R. Bradley, C. E. Stevens, T. F. Wieboldt, D. M. E. Ware, D. W. Ogle, and G. W. Ramsey. 1992. Atlas of the Virginia flora, third edition. Virginia Botanical Associates, Farmville, Virginia. + +## Book Chapter Examples + +McCauly, E. 1984. The estimation of abundance and biomass of zooplankton in samples. Pages 228–265 in J. A. Dowling and F. H. Rigler, editors. A manual on methods for the assessment of secondary productivity in fresh waters. Blackwell Scientific, Oxford, UK. + +Watson, P. J. 2004. Of caves and shell mounds in west-central Kentucky. Pages 159–164 in Of caves and shell mounds. The University of Alabama Press, Tuscaloosa, Alabama. + +## Published Report Examples + +Bass, S., R. E. Gallipeau, Jr., M. Van Stappen, J. Kumer, M. Wessner, S. Petersburg, L. L. Hays, J. Milstone, M. Soukup, M. Fletcher, L. G. Adams, and others. 1988. Highlights of natural resource management 1987. National Park Service, Denver, Colorado. + +Holthausen, R. S., M. G. Raphael, K. S. McKelvey, E. D. Forsman, E. E. Starkey, and D. E. Seaman. 1994. The contribution of federal and nonfederal habitats to the persistence of the northern spotted owl on the Olympic Peninsula, Washington. General Technical Report PNW–GTR–352. U.S. Forest Service, Corvallis, Oregon. + +Jackson, L. L., and L. P. Gough. 1991. Seasonal and spatial biogeochemical trends for chaparral vegetation and soil geochemistry in the Santa Monica Mountains National Recreation Area. U.S. Geological Survey, Denver. Open File Report 91–0005. + +## Unpublished Report Examples + +Conant, B., and J. I. Hodges. 1995. Western brant population estimates. U.S. Fish and Wildlife Service Unpublished Report, Juneau, Alaska. + +Conant, B., and J. F. Voelzer. 2001. Winter waterfowl survey: Mexico west coast and Baja California. U.S. Fish and Wildlife Service Unpublished Report, Juneau, Alaska. + +## Thesis/Dissertation Examples + +Diong, C. H. 1982. Population and biology of the feral pig (Sus scrofa L) in Kipahulu Valley, Mau’i. Dissertation. University of Hawai’i, Honolulu, Hawai’i. + +McTigue, K. M. 1992. Nutrient pulses and herbivory: Integrative control of primary producers in lakes. Thesis. University of Wisconsin, Madison, Wisconsin. + +## Conference Proceedings Examples + +Gunther, K. A. 1994. Changing problems in bear management: Yellowstone National Park twenty-plus years after the dumps. Ninth International Conference on Bear Research and Management. Missoula, MT, International Association for Bear Research and Management, Bozeman, Montana, February 1992:549–560. + +Webb, J. R., and J. N. Galloway. 1991. Potential acidification of streams in Mid-Appalachian Highlands: A problem with generalized assessments. Southern Appalachian Man and Biosphere Conference. Gatlinburg, Tennessee. + +## General Internet Examples + +Colorado Native Plant Society. 2016. Colorado Native Plant Society website. Available at: (accessed 07 March 2016). + +National Park Service (NPS). 2016a. IRMA Portal (Integrated Resource Management Applications) website. Available at: (accessed 07 March 2016). + +National Park Service (NPS). 2016b. Natural Resource Publications Management website. Available at: (accessed 07 March 2016). + +United Sates Fish and Wildlife Service (USFWS). 2016. Endangered Species website. Available at: (accessed 07 March 2016). + +## Online Data Warehouse Sites (sites that allow you see and download data from multiple sources) + +National Oceanographic and Atmospheric Association (NOAA). 2016. NOAA National Climatic Data Center website. Available at: (accessed 07 March 2016). + +Environmental Protection Agency (EPA). 2016. Storage and Retrieval Data Warehouse website (STORET). Available at: (accessed 07 March 2016). + +National Park Service (NPS). 2016c. NPScape Landscape Dynamics Metric Viewer website. Available at: (accessed 07 March 2016). + +National Park Service (NPS). 2016d. NPSpecies online application. Available at: (accessed 07 March 2016). + +United States Geologic Survey (USGS). 2016. BioData - Aquatic Bioassessment Data for the Nation. Available at: (accessed 07 March 2016). + +# Appendix A. Code Listing + +In most cases, Code listing is not required. If all QA/QC and data manipulations were performed elsewhere, you should cite that code in the methods (and leave the "Listing" code chunk as the default settings: eval=FALSE and echo=FALSE). If you have developed custom scripts, you can add those to DataStore with the reference type "Script" and cite them in the DRR. Some people have developed code to perform QA/QC or data manipulation within the DRR itself. In that case, you must set the "Listing" code chunk to eval=TRUE and echo=TRUE to fully document the QA/QC process. + +```{r Listing, ref.label=knitr::all_labels(), echo=TRUE, eval=TRUE} -# If your data package is somewhere else, specify that: -#upload_data_package("C:/Users//Documents/my_data_package) ``` -From within DataStore you should be able to extract all the information from the metadata file to populate the relevant DataStore fields. In the upper right, select "Edit" from the drop down menu. Then click on the "Files and Links" tab. On the left side of the files list, select the radio button corresponding to your metadata. Then click the "Extract Metadata" button from the top right of box with the files listed in it. +\pagebreak + +# Appendix B. Session and Version Information -Please don't activate your reference just yet! Data package references need to be reviewed prior to activation. We are still working on what that review process will look like. +In most cases you do not need to report session info (leave the "session-info" code chunk parameters in their default state: eval=FALSE). Session and version information is only necessary if you have set the "Listing" code chunk to eval=TRUE in appendix A. In that case, change the "session-info" code chunk parameters to eval=TRUE. + +```{r session-info, eval=TRUE, echo=FALSE, cache=FALSE} +sessionInfo() +Sys.time() +``` From 1f86e7a9bbbb6c6b15e073d68eab06a46e110df6 Mon Sep 17 00:00:00 2001 From: Rob Baker Date: Thu, 8 Feb 2024 14:52:45 -0700 Subject: [PATCH 04/33] add example data package --- .../Example_BICY_Veg_metadata.xml | 16888 ++++++++++++++++ .../BICY_Example/Mini_BICY_Veg_Geography.csv | 1001 + .../Mini_BICY_Veg_Intercept_Cleaned.csv | 501 + .../Mini_BICY_Veg_Transect_Cleaned.csv | 501 + 4 files changed, 18891 insertions(+) create mode 100644 inst/rmarkdown/templates/nps-data-release-report-template/skeleton/BICY_Example/Example_BICY_Veg_metadata.xml create mode 100644 inst/rmarkdown/templates/nps-data-release-report-template/skeleton/BICY_Example/Mini_BICY_Veg_Geography.csv create mode 100644 inst/rmarkdown/templates/nps-data-release-report-template/skeleton/BICY_Example/Mini_BICY_Veg_Intercept_Cleaned.csv create mode 100644 inst/rmarkdown/templates/nps-data-release-report-template/skeleton/BICY_Example/Mini_BICY_Veg_Transect_Cleaned.csv diff --git a/inst/rmarkdown/templates/nps-data-release-report-template/skeleton/BICY_Example/Example_BICY_Veg_metadata.xml b/inst/rmarkdown/templates/nps-data-release-report-template/skeleton/BICY_Example/Example_BICY_Veg_metadata.xml new file mode 100644 index 0000000..10920ad --- /dev/null +++ b/inst/rmarkdown/templates/nps-data-release-report-template/skeleton/BICY_Example/Example_BICY_Veg_metadata.xml @@ -0,0 +1,16888 @@ + + + + doi: https://doi.org/10.57830/2295086 + EXAMPLE: A Quantitative Plant Inventory of Big Cypress National Preserve: Processed Data (Publicly Available) + + + Issac + A + Quevedo + + NPS + issac_quevedo@partner.nps.gov + https://orcid.org/0000-0003-0129-981X + + + SFCN + + + IMD + + + + Robert + L + Baker + + NPS + robert_baker@nps.gov + https://orcid.org/0000-0001-7591-5035 + Contributor + + 2022-11-11 + eng + + "A quantitative plant inventory was conducted between the years of 2002 and 2004 by the Institute for Regional Conservation (IRC) on the 295,100 ha Big Cypress National Preserve in southern Florida. The goal of the study was to document at least 90% of plant taxa in the preserve. Abundance was measured on three hundred, 1 km x 1 km, sample stations; two, 250 m, transects per station; intercept points spaced 2.5 m along transects; as well as sixty, 500 m, roadside belt transects. 1094 unique plant taxa, both previously known and unknown, were documented. The data has been processed for dissemination by the Inverntory and Monitoring Division (IMD), complying with Executive Order 13642, Making Open and Machine Readable the New Default for Government Information (GPO 2013). Four tabular datasets have been created using the raw data provided from the park, following Darwin Core naming standards and introducing data quality flagging where data was missing or unclear."&#13; + + + + vegetation + plant + taxonomy + species + inventory + transect + survey + LTER Controlled Vocabulary + + + npspecies + intercept + belt + + + This data package is released to the "public domain" under Creative Commons CC0 1.0 "No Rights Reserved" (see: https://creativecommons.org/publicdomain/zero/1.0/). It is considered professional etiquette to provide attribution of the original work if this data package is shared in whole or by individual components. A generic citation is provided for this data package on the website https://portal.edirepository.org (herein "website") in the summary metadata page. Communication (and collaboration) with the creators of this data package is recommended to prevent duplicate research or publication. This data package (and its components) is made available "as is" and with no warranty of accuracy or fitness for use. The creators of this data package and the website shall not be liable for any damages resulting from misinterpretation or misuse of the data package or its components. Periodic updates of this data package may be available from the website. Thank you. + + + + + NPS Unit Connections: BICY + + -80.8267 + -81.3835 + 26.2593 + 25.6152 + + + + BICY + + -80.9777691883015 + -80.9777691883015 + 25.7898999866714 + 25.7898999866714 + + + + + + 2002-04-08 + + + 2006-06-24 + + + + + + kingdom + Plantae + plants + 202422 + + subkingdom + Viridiplantae + green plants + 954898 + + infrakingdom + Streptophyta + land plants + 846494 + + superdivision + Embryophyta + 954900 + + division + Tracheophyta + vascular plants + tracheophytes + 846496 + + subdivision + Spermatophytina + spermatophytes + seed plants + 846504 + + class + Magnoliopsida + 18063 + + superorder + Lilianae + monocots + monocotyledons + 846542 + + order + Poales + 846620 + + family + Poaceae + 40351 + + genus + Paspalum + 40990 + + species + Paspalum monostachyum + 41030 + + + + + + + + + + + + + + kingdom + Plantae + plants + 202422 + + subkingdom + Viridiplantae + green plants + 954898 + + infrakingdom + Streptophyta + land plants + 846494 + + superdivision + Embryophyta + 954900 + + division + Tracheophyta + vascular plants + tracheophytes + 846496 + + subdivision + Spermatophytina + spermatophytes + seed plants + 846504 + + class + Magnoliopsida + 18063 + + superorder + Rosanae + 846548 + + order + Malpighiales + 822428 + + family + Chrysobalanaceae + 25356 + + genus + Chrysobalanus + 25147 + + species + Chrysobalanus icaco + icaco + coco plum + 25148 + + + + + + + + + + + + + + species + Myrica cerifera + southern bayberry + wax myrtle + 19261 + + + variety + Dichanthelium ensifolium var. unciphyllum + 534434 + + + species + Taxodium ascendens + pond cypress + pondcypress + 183433 + + + species + Sarcostemma clausum + 30403 + + + kingdom + Plantae + plants + 202422 + + subkingdom + Viridiplantae + green plants + 954898 + + infrakingdom + Streptophyta + land plants + 846494 + + superdivision + Embryophyta + 954900 + + division + Tracheophyta + vascular plants + tracheophytes + 846496 + + subdivision + Polypodiophytina + 954903 + + class + Polypodiopsida + leptosporangiate ferns + 846528 + + subclass + Polypodiidae + 846532 + + order + Polypodiales + 500029 + + family + Blechnaceae + Chain Ferns + Deer Ferns + Blechnoids + 17861 + + genus + Blechnum + midsorus fern + 17862 + + species + Blechnum serrulatum + toothed midsorus fern + 17864 + + + + + + + + + + + + + + kingdom + Plantae + plants + 202422 + + subkingdom + Viridiplantae + green plants + 954898 + + infrakingdom + Streptophyta + land plants + 846494 + + superdivision + Embryophyta + 954900 + + division + Tracheophyta + vascular plants + tracheophytes + 846496 + + subdivision + Spermatophytina + spermatophytes + seed plants + 846504 + + class + Magnoliopsida + 18063 + + superorder + Rosanae + 846548 + + order + Myrtales + 27072 + + family + Myrtaceae + myrtles + 27172 + + genus + Eugenia + eugenias + stoppers + 27192 + + species + Eugenia axillaris + white stopper + 27199 + + + + + + + + + + + + + + kingdom + Plantae + plants + 202422 + + subkingdom + Viridiplantae + green plants + 954898 + + infrakingdom + Streptophyta + land plants + 846494 + + superdivision + Embryophyta + 954900 + + division + Tracheophyta + vascular plants + tracheophytes + 846496 + + subdivision + Polypodiophytina + 954903 + + class + Polypodiopsida + leptosporangiate ferns + 846528 + + subclass + Polypodiidae + 846532 + + order + Polypodiales + 500029 + + family + Thelypteridaceae + marsh ferns + 500085 + + genus + Thelypteris + marsh ferns + wood ferns + maiden fern + 17250 + + species + Thelypteris interrupta + Willdenow's maiden fern + 17257 + + + + + + + + + + + + + + kingdom + Plantae + plants + 202422 + + subkingdom + Viridiplantae + green plants + 954898 + + infrakingdom + Streptophyta + land plants + 846494 + + superdivision + Embryophyta + 954900 + + division + Tracheophyta + vascular plants + tracheophytes + 846496 + + subdivision + Spermatophytina + spermatophytes + seed plants + 846504 + + class + Magnoliopsida + 18063 + + superorder + Asteranae + 846535 + + order + Lamiales + 31632 + + family + Oleaceae + olives + 32927 + + genus + Fraxinus + ash + 32928 + + species + Fraxinus caroliniana + Carolina ash + 32941 + + + + + + + + + + + + + + kingdom + Plantae + plants + 202422 + + subkingdom + Viridiplantae + green plants + 954898 + + infrakingdom + Streptophyta + land plants + 846494 + + superdivision + Embryophyta + 954900 + + division + Tracheophyta + vascular plants + tracheophytes + 846496 + + subdivision + Spermatophytina + spermatophytes + seed plants + 846504 + + class + Magnoliopsida + 18063 + + superorder + Lilianae + monocots + monocotyledons + 846542 + + order + Arecales + 42431 + + family + Arecaceae + 500043 + + genus + Sabal + palmetto + 42502 + + species + Sabal palmetto + cabbage palmetto + cabbage palm + 42506 + + + + + + + + + + + + + + kingdom + Plantae + plants + 202422 + + subkingdom + Viridiplantae + green plants + 954898 + + infrakingdom + Streptophyta + land plants + 846494 + + superdivision + Embryophyta + 954900 + + division + Tracheophyta + vascular plants + tracheophytes + 846496 + + subdivision + Spermatophytina + spermatophytes + seed plants + 846504 + + class + Magnoliopsida + 18063 + + superorder + Lilianae + monocots + monocotyledons + 846542 + + order + Arecales + 42431 + + family + Arecaceae + 500043 + + genus + Serenoa + serenoa + 42507 + + species + Serenoa repens + saw palmetto + 42508 + + + + + + + + + + + + + + kingdom + Plantae + plants + 202422 + + subkingdom + Viridiplantae + green plants + 954898 + + infrakingdom + Streptophyta + land plants + 846494 + + superdivision + Embryophyta + 954900 + + division + Tracheophyta + vascular plants + tracheophytes + 846496 + + subdivision + Spermatophytina + spermatophytes + seed plants + 846504 + + class + Magnoliopsida + 18063 + + superorder + Magnolianae + 846543 + + order + Magnoliales + 18065 + + family + Annonaceae + custard apples + 18092 + + genus + Annona + 18095 + + species + Annona glabra + pond apple + 18101 + + + + + + + + + + + + + + kingdom + Plantae + plants + 202422 + + subkingdom + Viridiplantae + green plants + 954898 + + infrakingdom + Streptophyta + land plants + 846494 + + superdivision + Embryophyta + 954900 + + division + Tracheophyta + vascular plants + tracheophytes + 846496 + + subdivision + Spermatophytina + spermatophytes + seed plants + 846504 + + class + Magnoliopsida + 18063 + + superorder + Lilianae + monocots + monocotyledons + 846542 + + order + Poales + 846620 + + family + Poaceae + 40351 + + genus + Panicum + 40901 + + species + Panicum hemitomon + 40909 + + + + + + + + + + + + + + species + Rapanea punctata + Florida rapanea + 23895 + + + kingdom + Plantae + plants + 202422 + + subkingdom + Viridiplantae + green plants + 954898 + + infrakingdom + Streptophyta + land plants + 846494 + + superdivision + Embryophyta + 954900 + + division + Tracheophyta + vascular plants + tracheophytes + 846496 + + subdivision + Spermatophytina + spermatophytes + seed plants + 846504 + + class + Magnoliopsida + 18063 + + superorder + Lilianae + monocots + monocotyledons + 846542 + + order + Poales + 846620 + + family + Cyperaceae + sedges + 39357 + + genus + Cladium + sawgrass + 39877 + + species + Cladium jamaicense + Jamaica swamp sawgrass + 39878 + + + + + + + + + + + + + + kingdom + Plantae + plants + 202422 + + subkingdom + Viridiplantae + green plants + 954898 + + infrakingdom + Streptophyta + land plants + 846494 + + superdivision + Embryophyta + 954900 + + division + Tracheophyta + vascular plants + tracheophytes + 846496 + + subdivision + Spermatophytina + spermatophytes + seed plants + 846504 + + class + Magnoliopsida + 18063 + + superorder + Lilianae + monocots + monocotyledons + 846542 + + order + Poales + 846620 + + family + Poaceae + 40351 + + genus + Spartina + 41266 + + species + Spartina bakeri + 41273 + + + + + + + + + + + + + + species + Panicum tenerum + bluejoint panicum + bluejoint panicgrass + blue-joint panicgrass + 40958 + + + kingdom + Plantae + plants + 202422 + + subkingdom + Viridiplantae + green plants + 954898 + + infrakingdom + Streptophyta + land plants + 846494 + + superdivision + Embryophyta + 954900 + + division + Tracheophyta + vascular plants + tracheophytes + 846496 + + subdivision + Spermatophytina + spermatophytes + seed plants + 846504 + + class + Magnoliopsida + 18063 + + superorder + Rosanae + 846548 + + order + Sapindales + 28643 + + family + Anacardiaceae + cashews + 28771 + + genus + Toxicodendron + poison ivy + poison oak + 28818 + + species + Toxicodendron radicans + poison ivy + eastern poison ivy + 28821 + + + + + + + + + + + + + + kingdom + Plantae + plants + 202422 + + subkingdom + Viridiplantae + green plants + 954898 + + infrakingdom + Streptophyta + land plants + 846494 + + superdivision + Embryophyta + 954900 + + division + Tracheophyta + vascular plants + tracheophytes + 846496 + + subdivision + Spermatophytina + spermatophytes + seed plants + 846504 + + class + Magnoliopsida + 18063 + + superorder + Asteranae + 846535 + + order + Lamiales + 31632 + + family + Plantaginaceae + plantains + 32869 + + genus + Bacopa + water hyssop + waterhyssop + 33037 + + species + Bacopa caroliniana + blue waterhyssop + 33039 + + + + + + + + + + + + + + kingdom + Plantae + plants + 202422 + + subkingdom + Viridiplantae + green plants + 954898 + + infrakingdom + Streptophyta + land plants + 846494 + + superdivision + Embryophyta + 954900 + + division + Tracheophyta + vascular plants + tracheophytes + 846496 + + subdivision + Spermatophytina + spermatophytes + seed plants + 846504 + + class + Pinopsida + conifers + 500009 + + subclass + Pinidae + 954916 + + order + Pinales + pines + 500028 + + family + Cupressaceae + cypress + redwood + 18042 + + genus + Taxodium + cypress + bald cypress + 18040 + + species + Taxodium distichum + baldcypress + bald cypress + 18041 + + + + + + + + + + + + + + kingdom + Plantae + plants + 202422 + + subkingdom + Viridiplantae + green plants + 954898 + + infrakingdom + Streptophyta + land plants + 846494 + + superdivision + Embryophyta + 954900 + + division + Tracheophyta + vascular plants + tracheophytes + 846496 + + subdivision + Spermatophytina + spermatophytes + seed plants + 846504 + + class + Magnoliopsida + 18063 + + superorder + Lilianae + monocots + monocotyledons + 846542 + + order + Poales + 846620 + + family + Cyperaceae + sedges + 39357 + + genus + Eleocharis + spikerush + 40010 + + species + Eleocharis cellulosa + Gulf Coast spikerush + 40036 + + + + + + + + + + + + + + kingdom + Plantae + plants + 202422 + + subkingdom + Viridiplantae + green plants + 954898 + + infrakingdom + Streptophyta + land plants + 846494 + + superdivision + Embryophyta + 954900 + + division + Tracheophyta + vascular plants + tracheophytes + 846496 + + subdivision + Spermatophytina + spermatophytes + seed plants + 846504 + + class + Magnoliopsida + 18063 + + superorder + Asteranae + 846535 + + order + Asterales + 35419 + + family + Asteraceae + sunflowers + 35420 + + genus + Cirsium + thistle + 36334 + + species + Cirsium horridulum + yellow thistle + 36379 + + + + + + + + + + + + + + kingdom + Plantae + plants + 202422 + + subkingdom + Viridiplantae + green plants + 954898 + + infrakingdom + Streptophyta + land plants + 846494 + + superdivision + Embryophyta + 954900 + + division + Tracheophyta + vascular plants + tracheophytes + 846496 + + subdivision + Spermatophytina + spermatophytes + seed plants + 846504 + + class + Magnoliopsida + 18063 + + superorder + Rosanae + 846548 + + order + Malpighiales + 822428 + + family + Salicaceae + willows + 22443 + + genus + Salix + willow + 22476 + + species + Salix caroliniana + coastal plain willow + 22516 + + + + + + + + + + + + + + kingdom + Plantae + plants + 202422 + + subkingdom + Viridiplantae + green plants + 954898 + + infrakingdom + Streptophyta + land plants + 846494 + + superdivision + Embryophyta + 954900 + + division + Tracheophyta + vascular plants + tracheophytes + 846496 + + subdivision + Spermatophytina + spermatophytes + seed plants + 846504 + + class + Magnoliopsida + 18063 + + superorder + Asteranae + 846535 + + order + Asterales + 35419 + + family + Asteraceae + sunflowers + 35420 + + genus + Baccharis + baccharis + 35681 + + species + Baccharis glomeruliflora + silverling + 35689 + + + + + + + + + + + + + + kingdom + Plantae + plants + 202422 + + subkingdom + Viridiplantae + green plants + 954898 + + infrakingdom + Streptophyta + land plants + 846494 + + superdivision + Embryophyta + 954900 + + division + Tracheophyta + vascular plants + tracheophytes + 846496 + + subdivision + Spermatophytina + spermatophytes + seed plants + 846504 + + class + Magnoliopsida + 18063 + + superorder + Lilianae + monocots + monocotyledons + 846542 + + order + Poales + 846620 + + family + Poaceae + 40351 + + genus + Panicum + 40901 + + species + Panicum virgatum + old switch panic grass + 40913 + + + + + + + + + + + + + + kingdom + Plantae + plants + 202422 + + subkingdom + Viridiplantae + green plants + 954898 + + infrakingdom + Streptophyta + land plants + 846494 + + superdivision + Embryophyta + 954900 + + division + Tracheophyta + vascular plants + tracheophytes + 846496 + + subdivision + Spermatophytina + spermatophytes + seed plants + 846504 + + class + Magnoliopsida + 18063 + + superorder + Rosanae + 846548 + + order + Myrtales + 27072 + + family + Onagraceae + evening primroses + 27279 + + genus + Ludwigia + seedbox + primrose-willow + 27334 + + species + Ludwigia repens + creeping primrose-willow + 27362 + + + + + + + + + + + + + + kingdom + Plantae + plants + 202422 + + subkingdom + Viridiplantae + green plants + 954898 + + infrakingdom + Streptophyta + land plants + 846494 + + superdivision + Embryophyta + 954900 + + division + Tracheophyta + vascular plants + tracheophytes + 846496 + + subdivision + Spermatophytina + spermatophytes + seed plants + 846504 + + class + Magnoliopsida + 18063 + + superorder + Rosanae + 846548 + + order + Sapindales + 28643 + + family + Sapindaceae + soapberries + 28657 + + genus + Acer + maples + 28727 + + species + Acer rubrum + red maple + 28728 + + + + + + + + + + + + + + kingdom + Plantae + plants + 202422 + + subkingdom + Viridiplantae + green plants + 954898 + + infrakingdom + Streptophyta + land plants + 846494 + + superdivision + Embryophyta + 954900 + + division + Tracheophyta + vascular plants + tracheophytes + 846496 + + subdivision + Spermatophytina + spermatophytes + seed plants + 846504 + + class + Magnoliopsida + 18063 + + superorder + Lilianae + monocots + monocotyledons + 846542 + + order + Poales + 846620 + + family + Poaceae + 40351 + + genus + Amphicarpum + 41383 + + species + Amphicarpum muhlenbergianum + 782171 + + + + + + + + + + + + + + species + Pluchea rosea + 36067 + + + kingdom + Plantae + plants + 202422 + + subkingdom + Viridiplantae + green plants + 954898 + + infrakingdom + Streptophyta + land plants + 846494 + + superdivision + Embryophyta + 954900 + + division + Tracheophyta + vascular plants + tracheophytes + 846496 + + subdivision + Spermatophytina + spermatophytes + seed plants + 846504 + + class + Magnoliopsida + 18063 + + superorder + Rosanae + 846548 + + order + Fagales + 19273 + + family + Fagaceae + 19275 + + genus + Quercus + oak + 19276 + + species + Quercus pumila + running oak + 195183 + + + + + + + + + + + + + + kingdom + Plantae + plants + 202422 + + subkingdom + Viridiplantae + green plants + 954898 + + infrakingdom + Streptophyta + land plants + 846494 + + superdivision + Embryophyta + 954900 + + division + Tracheophyta + vascular plants + tracheophytes + 846496 + + subdivision + Spermatophytina + spermatophytes + seed plants + 846504 + + class + Magnoliopsida + 18063 + + superorder + Asteranae + 846535 + + order + Lamiales + 31632 + + family + Acanthaceae + 34350 + + genus + Ruellia + wild petunia + 34371 + + species + Ruellia succulenta + Carolina wild petunia + 520617 + + + + + + + + + + + + + + species + Piriqueta caroliniana + 22210 + + + kingdom + Plantae + plants + 202422 + + subkingdom + Viridiplantae + green plants + 954898 + + infrakingdom + Streptophyta + land plants + 846494 + + superdivision + Embryophyta + 954900 + + division + Tracheophyta + vascular plants + tracheophytes + 846496 + + subdivision + Polypodiophytina + 954903 + + class + Polypodiopsida + leptosporangiate ferns + 846528 + + subclass + Polypodiidae + 846532 + + order + Polypodiales + 500029 + + family + Lomariopsidaceae + fringedferns + 897571 + + genus + Nephrolepis + swordfern + Boston fern + 17601 + + species + Nephrolepis exaltata + Boston swordfern + 17605 + + + + + + + + + + + + + + kingdom + Plantae + plants + 202422 + + subkingdom + Viridiplantae + green plants + 954898 + + infrakingdom + Streptophyta + land plants + 846494 + + superdivision + Embryophyta + 954900 + + division + Tracheophyta + vascular plants + tracheophytes + 846496 + + subdivision + Polypodiophytina + 954903 + + class + Polypodiopsida + leptosporangiate ferns + 846528 + + subclass + Polypodiidae + 846532 + + order + Polypodiales + 500029 + + family + Blechnaceae + Chain Ferns + Deer Ferns + Blechnoids + 17861 + + genus + Woodwardia + chain fern + chainfern + 17748 + + species + Woodwardia virginica + Virginia chainfern + 17751 + + + + + + + + + + + + + + kingdom + Plantae + plants + 202422 + + subkingdom + Viridiplantae + green plants + 954898 + + infrakingdom + Streptophyta + land plants + 846494 + + superdivision + Embryophyta + 954900 + + division + Tracheophyta + vascular plants + tracheophytes + 846496 + + subdivision + Spermatophytina + spermatophytes + seed plants + 846504 + + class + Magnoliopsida + 18063 + + superorder + Magnolianae + 846543 + + order + Laurales + 500025 + + family + Lauraceae + laurels + 18145 + + genus + Persea + bay + 18148 + + species + Persea palustris + swamp bay + 504254 + + + + + + + + + + + + + + kingdom + Plantae + plants + 202422 + + subkingdom + Viridiplantae + green plants + 954898 + + infrakingdom + Streptophyta + land plants + 846494 + + superdivision + Embryophyta + 954900 + + division + Tracheophyta + vascular plants + tracheophytes + 846496 + + subdivision + Spermatophytina + spermatophytes + seed plants + 846504 + + class + Magnoliopsida + 18063 + + superorder + Lilianae + monocots + monocotyledons + 846542 + + order + Poales + 846620 + + family + Cyperaceae + sedges + 39357 + + genus + Rhynchospora + beaksedge + 40144 + + species + Rhynchospora divergens + spreading beaksedge + 40167 + + + + + + + + + + + + + + kingdom + Plantae + plants + 202422 + + subkingdom + Viridiplantae + green plants + 954898 + + infrakingdom + Streptophyta + land plants + 846494 + + superdivision + Embryophyta + 954900 + + division + Tracheophyta + vascular plants + tracheophytes + 846496 + + subdivision + Spermatophytina + spermatophytes + seed plants + 846504 + + class + Magnoliopsida + 18063 + + superorder + Lilianae + monocots + monocotyledons + 846542 + + order + Poales + 846620 + + family + Poaceae + 40351 + + genus + Eustachys + 41739 + + species + Eustachys glauca + 41741 + + + + + + + + + + + + + + kingdom + Plantae + plants + 202422 + + subkingdom + Viridiplantae + green plants + 954898 + + infrakingdom + Streptophyta + land plants + 846494 + + superdivision + Embryophyta + 954900 + + division + Tracheophyta + vascular plants + tracheophytes + 846496 + + subdivision + Spermatophytina + spermatophytes + seed plants + 846504 + + class + Magnoliopsida + 18063 + + superorder + Rosanae + 846548 + + order + Myrtales + 27072 + + family + Onagraceae + evening primroses + 27279 + + genus + Ludwigia + seedbox + primrose-willow + 27334 + + species + Ludwigia microcarpa + smallfruit primrose-willow + 27353 + + + + + + + + + + + + + + kingdom + Plantae + plants + 202422 + + subkingdom + Viridiplantae + green plants + 954898 + + infrakingdom + Streptophyta + land plants + 846494 + + superdivision + Embryophyta + 954900 + + division + Tracheophyta + vascular plants + tracheophytes + 846496 + + subdivision + Spermatophytina + spermatophytes + seed plants + 846504 + + class + Magnoliopsida + 18063 + + superorder + Lilianae + monocots + monocotyledons + 846542 + + order + Poales + 846620 + + family + Cyperaceae + sedges + 39357 + + genus + Rhynchospora + beaksedge + 40144 + + species + Rhynchospora microcarpa + southern beaksedge + 40186 + + + + + + + + + + + + + + species + Aster elliottii + 509275 + + + kingdom + Plantae + plants + 202422 + + subkingdom + Viridiplantae + green plants + 954898 + + infrakingdom + Streptophyta + land plants + 846494 + + superdivision + Embryophyta + 954900 + + division + Tracheophyta + vascular plants + tracheophytes + 846496 + + subdivision + Spermatophytina + spermatophytes + seed plants + 846504 + + class + Magnoliopsida + 18063 + + superorder + Asteranae + 846535 + + order + Apiales + 500017 + + family + Apiaceae + 500042 + + genus + Centella + 29611 + + species + Centella asiatica + spadeleaf + 29612 + + + + + + + + + + + + + + kingdom + Plantae + plants + 202422 + + subkingdom + Viridiplantae + green plants + 954898 + + infrakingdom + Streptophyta + land plants + 846494 + + superdivision + Embryophyta + 954900 + + division + Tracheophyta + vascular plants + tracheophytes + 846496 + + subdivision + Spermatophytina + spermatophytes + seed plants + 846504 + + class + Magnoliopsida + 18063 + + superorder + Lilianae + monocots + monocotyledons + 846542 + + order + Poales + 846620 + + family + Cyperaceae + sedges + 39357 + + genus + Rhynchospora + beaksedge + 40144 + + species + Rhynchospora inundata + narrowfruit horned beaksedge + 40182 + + + + + + + + + + + + + + kingdom + Plantae + plants + 202422 + + subkingdom + Viridiplantae + green plants + 954898 + + infrakingdom + Streptophyta + land plants + 846494 + + superdivision + Embryophyta + 954900 + + division + Tracheophyta + vascular plants + tracheophytes + 846496 + + subdivision + Spermatophytina + spermatophytes + seed plants + 846504 + + class + Magnoliopsida + 18063 + + superorder + Rosanae + 846548 + + order + Vitales + 846630 + + family + Vitaceae + grapes + 28600 + + genus + Vitis + grape + 28606 + + species + Vitis rotundifolia + muscadine + muscadine grape + 28609 + + + + + + + + + + + + + + kingdom + Plantae + plants + 202422 + + subkingdom + Viridiplantae + green plants + 954898 + + infrakingdom + Streptophyta + land plants + 846494 + + superdivision + Embryophyta + 954900 + + division + Tracheophyta + vascular plants + tracheophytes + 846496 + + subdivision + Spermatophytina + spermatophytes + seed plants + 846504 + + class + Magnoliopsida + 18063 + + superorder + Lilianae + monocots + monocotyledons + 846542 + + order + Liliales + 42612 + + family + Smilacaceae + catbrier + 43339 + + genus + Smilax + common greenbriar + greenbriar + sarsaparilla + catbrier + greenbrier + 43340 + + species + Smilax auriculata + earleaf greenbrier + wild-bamboo + 43349 + + + + + + + + + + + + + + kingdom + Plantae + plants + 202422 + + subkingdom + Viridiplantae + green plants + 954898 + + infrakingdom + Streptophyta + land plants + 846494 + + superdivision + Embryophyta + 954900 + + division + Tracheophyta + vascular plants + tracheophytes + 846496 + + subdivision + Spermatophytina + spermatophytes + seed plants + 846504 + + class + Magnoliopsida + 18063 + + superorder + Lilianae + monocots + monocotyledons + 846542 + + order + Poales + 846620 + + family + Cyperaceae + sedges + 39357 + + genus + Rhynchospora + beaksedge + 40144 + + species + Rhynchospora corniculata + shortbristle horned beaksedge + 40146 + + + + + + + + + + + + + + kingdom + Plantae + plants + 202422 + + subkingdom + Viridiplantae + green plants + 954898 + + infrakingdom + Streptophyta + land plants + 846494 + + superdivision + Embryophyta + 954900 + + division + Tracheophyta + vascular plants + tracheophytes + 846496 + + subdivision + Spermatophytina + spermatophytes + seed plants + 846504 + + class + Magnoliopsida + 18063 + + superorder + Magnolianae + 846543 + + order + Laurales + 500025 + + family + Lauraceae + laurels + 18145 + + genus + Cassytha + 18172 + + species + Cassytha filiformis + devil's gut + 18173 + + + + + + + + + + + + + + kingdom + Plantae + plants + 202422 + + subkingdom + Viridiplantae + green plants + 954898 + + infrakingdom + Streptophyta + land plants + 846494 + + superdivision + Embryophyta + 954900 + + division + Tracheophyta + vascular plants + tracheophytes + 846496 + + subdivision + Spermatophytina + spermatophytes + seed plants + 846504 + + class + Magnoliopsida + 18063 + + superorder + Rosanae + 846548 + + order + Sapindales + 28643 + + family + Anacardiaceae + cashews + 28771 + + genus + Schinus + peppertree + 28809 + + species + Schinus terebinthifolius + Brazilian pepper-tree + Christmas berry + Florida holly + warui + Christmasberry + Brazilian peppertree + 28812 + + + + + + + + + + + + + + kingdom + Plantae + plants + 202422 + + subkingdom + Viridiplantae + green plants + 954898 + + infrakingdom + Streptophyta + land plants + 846494 + + superdivision + Embryophyta + 954900 + + division + Tracheophyta + vascular plants + tracheophytes + 846496 + + subdivision + Spermatophytina + spermatophytes + seed plants + 846504 + + class + Magnoliopsida + 18063 + + superorder + Lilianae + monocots + monocotyledons + 846542 + + order + Poales + 846620 + + family + Poaceae + 40351 + + genus + Muhlenbergia + 41883 + + species + Muhlenbergia capillaris + 41902 + + + + + + + + + + + + + + kingdom + Plantae + plants + 202422 + + subkingdom + Viridiplantae + green plants + 954898 + + infrakingdom + Streptophyta + land plants + 846494 + + superdivision + Embryophyta + 954900 + + division + Tracheophyta + vascular plants + tracheophytes + 846496 + + subdivision + Spermatophytina + spermatophytes + seed plants + 846504 + + class + Magnoliopsida + 18063 + + superorder + Rosanae + 846548 + + order + Fagales + 19273 + + family + Fagaceae + 19275 + + genus + Quercus + oak + 19276 + + species + Quercus virginiana + live oak + 19283 + + + + + + + + + + + + + + kingdom + Plantae + plants + 202422 + + subkingdom + Viridiplantae + green plants + 954898 + + infrakingdom + Streptophyta + land plants + 846494 + + superdivision + Embryophyta + 954900 + + division + Tracheophyta + vascular plants + tracheophytes + 846496 + + subdivision + Spermatophytina + spermatophytes + seed plants + 846504 + + class + Magnoliopsida + 18063 + + superorder + Lilianae + monocots + monocotyledons + 846542 + + order + Poales + 846620 + + family + Cyperaceae + sedges + 39357 + + genus + Cyperus + flatsedge + 39882 + + species + Cyperus haspan + haspan flatsedge + 39930 + + + + + + + + + + + + + + kingdom + Plantae + plants + 202422 + + subkingdom + Viridiplantae + green plants + 954898 + + infrakingdom + Streptophyta + land plants + 846494 + + superdivision + Embryophyta + 954900 + + division + Tracheophyta + vascular plants + tracheophytes + 846496 + + subdivision + Spermatophytina + spermatophytes + seed plants + 846504 + + class + Magnoliopsida + 18063 + + superorder + Lilianae + monocots + monocotyledons + 846542 + + order + Poales + 846620 + + family + Eriocaulaceae + pipewort + 39193 + + genus + Eriocaulon + pipewort + 39194 + + species + Eriocaulon compressum + flattened pipewort + 39198 + + + + + + + + + + + + + + kingdom + Plantae + plants + 202422 + + subkingdom + Viridiplantae + green plants + 954898 + + infrakingdom + Streptophyta + land plants + 846494 + + superdivision + Embryophyta + 954900 + + division + Tracheophyta + vascular plants + tracheophytes + 846496 + + subdivision + Spermatophytina + spermatophytes + seed plants + 846504 + + class + Magnoliopsida + 18063 + + superorder + Rosanae + 846548 + + order + Malpighiales + 822428 + + family + Rhizophoraceae + mangroves + 27789 + + genus + Rhizophora + mangrove + 27790 + + species + Rhizophora mangle + American mangrove + red mangrove + 27791 + + + + + + + + + + + + + + kingdom + Plantae + plants + 202422 + + subkingdom + Viridiplantae + green plants + 954898 + + infrakingdom + Streptophyta + land plants + 846494 + + superdivision + Embryophyta + 954900 + + division + Tracheophyta + vascular plants + tracheophytes + 846496 + + subdivision + Spermatophytina + spermatophytes + seed plants + 846504 + + class + Magnoliopsida + 18063 + + superorder + Lilianae + monocots + monocotyledons + 846542 + + order + Asparagales + 897479 + + family + Amaryllidaceae + 182703 + + genus + Crinum + swamplily + 182708 + + species + Crinum americanum + seven sisters + 182710 + + + + + + + + + + + + + + kingdom + Plantae + plants + 202422 + + subkingdom + Viridiplantae + green plants + 954898 + + infrakingdom + Streptophyta + land plants + 846494 + + superdivision + Embryophyta + 954900 + + division + Tracheophyta + vascular plants + tracheophytes + 846496 + + subdivision + Spermatophytina + spermatophytes + seed plants + 846504 + + class + Magnoliopsida + 18063 + + superorder + Saxifraganae + 846550 + + order + Saxifragales + 846633 + + family + Haloragaceae + water milfoil + 27033 + + genus + Proserpinaca + mermaidweed + 27048 + + species + Proserpinaca palustris + marsh mermaid-weed + marsh mermaidweed + 27049 + + + + + + + + + + + + + + kingdom + Plantae + plants + 202422 + + subkingdom + Viridiplantae + green plants + 954898 + + infrakingdom + Streptophyta + land plants + 846494 + + superdivision + Embryophyta + 954900 + + division + Tracheophyta + vascular plants + tracheophytes + 846496 + + subdivision + Polypodiophytina + 954903 + + class + Polypodiopsida + leptosporangiate ferns + 846528 + + subclass + Polypodiidae + 846532 + + order + Polypodiales + 500029 + + family + Lomariopsidaceae + fringedferns + 897571 + + genus + Nephrolepis + swordfern + Boston fern + 17601 + + species + Nephrolepis biserrata + giant swordfern + 17603 + + + + + + + + + + + + + + kingdom + Plantae + plants + 202422 + + subkingdom + Viridiplantae + green plants + 954898 + + infrakingdom + Streptophyta + land plants + 846494 + + superdivision + Embryophyta + 954900 + + division + Tracheophyta + vascular plants + tracheophytes + 846496 + + subdivision + Spermatophytina + spermatophytes + seed plants + 846504 + + class + Magnoliopsida + 18063 + + superorder + Lilianae + monocots + monocotyledons + 846542 + + order + Poales + 846620 + + family + Bromeliaceae + 42330 + + genus + Tillandsia + air plant + airplant + 42359 + + species + Tillandsia variabilis + leatherleaf airplant + 505514 + + + + + + + + + + + + + + kingdom + Plantae + plants + 202422 + + subkingdom + Viridiplantae + green plants + 954898 + + infrakingdom + Streptophyta + land plants + 846494 + + superdivision + Embryophyta + 954900 + + division + Tracheophyta + vascular plants + tracheophytes + 846496 + + subdivision + Polypodiophytina + 954903 + + class + Polypodiopsida + leptosporangiate ferns + 846528 + + subclass + Polypodiidae + 846532 + + order + Polypodiales + 500029 + + family + Polypodiaceae + common ferns + licorice ferns + 17226 + + genus + Phlebodium + golden polypody + 17655 + + species + Phlebodium aureum + golden polypody + 17656 + + + + + + + + + + + + + + kingdom + Plantae + plants + 202422 + + subkingdom + Viridiplantae + green plants + 954898 + + infrakingdom + Streptophyta + land plants + 846494 + + superdivision + Embryophyta + 954900 + + division + Tracheophyta + vascular plants + tracheophytes + 846496 + + subdivision + Spermatophytina + spermatophytes + seed plants + 846504 + + class + Magnoliopsida + 18063 + + superorder + Asteranae + 846535 + + order + Asterales + 35419 + + family + Asteraceae + sunflowers + 35420 + + genus + Eupatorium + thoroughwort + 35977 + + species + Eupatorium leptophyllum + false fennel + 35991 + + + + + + + + + + + + + + kingdom + Plantae + plants + 202422 + + subkingdom + Viridiplantae + green plants + 954898 + + infrakingdom + Streptophyta + land plants + 846494 + + superdivision + Embryophyta + 954900 + + division + Tracheophyta + vascular plants + tracheophytes + 846496 + + subdivision + Spermatophytina + spermatophytes + seed plants + 846504 + + class + Magnoliopsida + 18063 + + superorder + Lilianae + monocots + monocotyledons + 846542 + + order + Poales + 846620 + + family + Cyperaceae + sedges + 39357 + + genus + Scleria + nutrush + 40303 + + species + Scleria baldwinii + Baldwin's nutrush + 40304 + + + + + + + + + + + + + + kingdom + Plantae + plants + 202422 + + subkingdom + Viridiplantae + green plants + 954898 + + infrakingdom + Streptophyta + land plants + 846494 + + superdivision + Embryophyta + 954900 + + division + Tracheophyta + vascular plants + tracheophytes + 846496 + + subdivision + Spermatophytina + spermatophytes + seed plants + 846504 + + class + Magnoliopsida + 18063 + + superorder + Lilianae + monocots + monocotyledons + 846542 + + order + Poales + 846620 + + family + Bromeliaceae + 42330 + + genus + Tillandsia + air plant + airplant + 42359 + + species + Tillandsia utriculata + spreading airplant + 42372 + + + + + + + + + + + + + + kingdom + Plantae + plants + 202422 + + subkingdom + Viridiplantae + green plants + 954898 + + infrakingdom + Streptophyta + land plants + 846494 + + superdivision + Embryophyta + 954900 + + division + Tracheophyta + vascular plants + tracheophytes + 846496 + + subdivision + Spermatophytina + spermatophytes + seed plants + 846504 + + class + Magnoliopsida + 18063 + + superorder + Lilianae + monocots + monocotyledons + 846542 + + order + Poales + 846620 + + family + Bromeliaceae + 42330 + + genus + Tillandsia + air plant + airplant + 42359 + + species + Tillandsia balbisiana + northern needleleaf + 42361 + + + + + + + + + + + + + + kingdom + Plantae + plants + 202422 + + subkingdom + Viridiplantae + green plants + 954898 + + infrakingdom + Streptophyta + land plants + 846494 + + superdivision + Embryophyta + 954900 + + division + Tracheophyta + vascular plants + tracheophytes + 846496 + + subdivision + Spermatophytina + spermatophytes + seed plants + 846504 + + class + Magnoliopsida + 18063 + + superorder + Asteranae + 846535 + + order + Asterales + 35419 + + family + Asteraceae + sunflowers + 35420 + + genus + Eupatorium + thoroughwort + 35977 + + species + Eupatorium mikanioides + semaphore thoroughwort + 35994 + + + + + + + + + + + + + + kingdom + Plantae + plants + 202422 + + subkingdom + Viridiplantae + green plants + 954898 + + infrakingdom + Streptophyta + land plants + 846494 + + superdivision + Embryophyta + 954900 + + division + Tracheophyta + vascular plants + tracheophytes + 846496 + + subdivision + Spermatophytina + spermatophytes + seed plants + 846504 + + class + Magnoliopsida + 18063 + + superorder + Asteranae + 846535 + + order + Asterales + 35419 + + family + Asteraceae + sunflowers + 35420 + + genus + Flaveria + yellowtops + 37375 + + species + Flaveria linearis + narrowleaf yellowtops + 502630 + + + + + + + + + + + + + + species + Panicum rigidulum + 40956 + + + kingdom + Plantae + plants + 202422 + + subkingdom + Viridiplantae + green plants + 954898 + + infrakingdom + Streptophyta + land plants + 846494 + + superdivision + Embryophyta + 954900 + + division + Tracheophyta + vascular plants + tracheophytes + 846496 + + subdivision + Spermatophytina + spermatophytes + seed plants + 846504 + + class + Magnoliopsida + 18063 + + superorder + Rosanae + 846548 + + order + Rosales + 24057 + + family + Cannabaceae + hemp + 19118 + + genus + Celtis + hackberry + 19039 + + species + Celtis laevigata + sugar hackberry + sugarberry + 19042 + + + + + + + + + + + + + + kingdom + Plantae + plants + 202422 + + subkingdom + Viridiplantae + green plants + 954898 + + infrakingdom + Streptophyta + land plants + 846494 + + superdivision + Embryophyta + 954900 + + division + Tracheophyta + vascular plants + tracheophytes + 846496 + + subdivision + Spermatophytina + spermatophytes + seed plants + 846504 + + class + Magnoliopsida + 18063 + + superorder + Asteranae + 846535 + + order + Asterales + 35419 + + family + Asteraceae + sunflowers + 35420 + + genus + Mikania + hempvine + 36042 + + species + Mikania scandens + climbing hempvine + 36043 + + + + + + + + + + + + + + kingdom + Plantae + plants + 202422 + + subkingdom + Viridiplantae + green plants + 954898 + + infrakingdom + Streptophyta + land plants + 846494 + + superdivision + Embryophyta + 954900 + + division + Tracheophyta + vascular plants + tracheophytes + 846496 + + subdivision + Spermatophytina + spermatophytes + seed plants + 846504 + + class + Magnoliopsida + 18063 + + superorder + Rosanae + 846548 + + order + Malvales + 21500 + + family + Malvaceae + mallows + 21608 + + genus + Sida + fanpetals + 21725 + + species + Sida acuta + common wireweed + 21726 + + + + + + + + + + + + + + kingdom + Plantae + plants + 202422 + + subkingdom + Viridiplantae + green plants + 954898 + + infrakingdom + Streptophyta + land plants + 846494 + + superdivision + Embryophyta + 954900 + + division + Tracheophyta + vascular plants + tracheophytes + 846496 + + subdivision + Spermatophytina + spermatophytes + seed plants + 846504 + + class + Magnoliopsida + 18063 + + superorder + Lilianae + monocots + monocotyledons + 846542 + + order + Poales + 846620 + + family + Cyperaceae + sedges + 39357 + + genus + Rhynchospora + beaksedge + 40144 + + species + Rhynchospora miliacea + millet beaksedge + 40188 + + + + + + + + + + + + + + kingdom + Plantae + plants + 202422 + + subkingdom + Viridiplantae + green plants + 954898 + + infrakingdom + Streptophyta + land plants + 846494 + + superdivision + Embryophyta + 954900 + + division + Tracheophyta + vascular plants + tracheophytes + 846496 + + subdivision + Spermatophytina + spermatophytes + seed plants + 846504 + + class + Magnoliopsida + 18063 + + superorder + Rosanae + 846548 + + order + Fagales + 19273 + + family + Fagaceae + 19275 + + genus + Quercus + oak + 19276 + + species + Quercus laurifolia + laurel oak + 19368 + + + + + + + + + + + + + + kingdom + Plantae + plants + 202422 + + subkingdom + Viridiplantae + green plants + 954898 + + infrakingdom + Streptophyta + land plants + 846494 + + superdivision + Embryophyta + 954900 + + division + Tracheophyta + vascular plants + tracheophytes + 846496 + + subdivision + Spermatophytina + spermatophytes + seed plants + 846504 + + class + Magnoliopsida + 18063 + + superorder + Asteranae + 846535 + + order + Solanales + 500033 + + family + Solanaceae + nightshades + 30411 + + genus + Physalis + groundcherry + 30587 + + species + Physalis walteri + Walter's groundcherry + 504376 + + + + + + + + + + + + + + kingdom + Plantae + plants + 202422 + + subkingdom + Viridiplantae + green plants + 954898 + + infrakingdom + Streptophyta + land plants + 846494 + + superdivision + Embryophyta + 954900 + + division + Tracheophyta + vascular plants + tracheophytes + 846496 + + subdivision + Spermatophytina + spermatophytes + seed plants + 846504 + + class + Magnoliopsida + 18063 + + superorder + Lilianae + monocots + monocotyledons + 846542 + + order + Poales + 846620 + + family + Cyperaceae + sedges + 39357 + + genus + Rhynchospora + beaksedge + 40144 + + species + Rhynchospora tracyi + Tracy's beaksedge + 40202 + + + + + + + + + + + + + + kingdom + Plantae + plants + 202422 + + subkingdom + Viridiplantae + green plants + 954898 + + infrakingdom + Streptophyta + land plants + 846494 + + superdivision + Embryophyta + 954900 + + division + Tracheophyta + vascular plants + tracheophytes + 846496 + + subdivision + Spermatophytina + spermatophytes + seed plants + 846504 + + class + Magnoliopsida + 18063 + + superorder + Lilianae + monocots + monocotyledons + 846542 + + order + Poales + 846620 + + family + Bromeliaceae + 42330 + + genus + Tillandsia + air plant + airplant + 42359 + + species + Tillandsia fasciculata + giant airplant + 42364 + + variety + Tillandsia fasciculata var. densispica + giant airplant + 530694 + + + + + + + + + + + + + + + kingdom + Plantae + plants + 202422 + + subkingdom + Viridiplantae + green plants + 954898 + + infrakingdom + Streptophyta + land plants + 846494 + + superdivision + Embryophyta + 954900 + + division + Tracheophyta + vascular plants + tracheophytes + 846496 + + subdivision + Spermatophytina + spermatophytes + seed plants + 846504 + + class + Magnoliopsida + 18063 + + superorder + Asteranae + 846535 + + order + Ericales + 23443 + + family + Ericaceae + heaths + 23463 + + genus + Lyonia + lyonias + staggerbush + 23558 + + species + Lyonia fruticosa + coastal plain staggerbush + 23562 + + + + + + + + + + + + + + kingdom + Plantae + 6 + + phylum + Tracheophyta + 7707728 + + class + Liliopsida + 196 + + order + Poales + 1369 + + family + Juncaceae + 5353 + + genus + Juncus + 2701072 + + species + Juncus polycephalos + 7310303 + + + + + + + + + kingdom + Plantae + plants + 202422 + + subkingdom + Viridiplantae + green plants + 954898 + + infrakingdom + Streptophyta + land plants + 846494 + + superdivision + Embryophyta + 954900 + + division + Tracheophyta + vascular plants + tracheophytes + 846496 + + subdivision + Spermatophytina + spermatophytes + seed plants + 846504 + + class + Magnoliopsida + 18063 + + superorder + Asteranae + 846535 + + order + Lamiales + 31632 + + family + Verbenaceae + verbenas + 32064 + + genus + Phyla + frogfruit + fogfruit + 32193 + + species + Phyla nodiflora + frog fruit + sawtooth fogfruit + turkey tangle + turkey tangle fogfruit + turkey tangle frogfruit + 32197 + + + + + + + + + + + + + + kingdom + Plantae + plants + 202422 + + subkingdom + Viridiplantae + green plants + 954898 + + infrakingdom + Streptophyta + land plants + 846494 + + superdivision + Embryophyta + 954900 + + division + Tracheophyta + vascular plants + tracheophytes + 846496 + + subdivision + Spermatophytina + spermatophytes + seed plants + 846504 + + class + Magnoliopsida + 18063 + + superorder + Asteranae + 846535 + + order + Lamiales + 31632 + + family + Lamiaceae + mints + 32251 + + genus + Piloblephis + 500487 + + species + Piloblephis rigida + wild pennyroyal + 504397 + + + + + + + + + + + + + + kingdom + Plantae + plants + 202422 + + subkingdom + Viridiplantae + green plants + 954898 + + infrakingdom + Streptophyta + land plants + 846494 + + superdivision + Embryophyta + 954900 + + division + Tracheophyta + vascular plants + tracheophytes + 846496 + + subdivision + Spermatophytina + spermatophytes + seed plants + 846504 + + class + Magnoliopsida + 18063 + + superorder + Rosanae + 846548 + + order + Fagales + 19273 + + family + Fagaceae + 19275 + + genus + Quercus + oak + 19276 + + species + Quercus chapmanii + Chapman's oak + 19310 + + + + + + + + + + + + + + kingdom + Plantae + plants + 202422 + + subkingdom + Viridiplantae + green plants + 954898 + + infrakingdom + Streptophyta + land plants + 846494 + + superdivision + Embryophyta + 954900 + + division + Tracheophyta + vascular plants + tracheophytes + 846496 + + subdivision + Spermatophytina + spermatophytes + seed plants + 846504 + + class + Magnoliopsida + 18063 + + superorder + Rosanae + 846548 + + order + Myrtales + 27072 + + family + Lythraceae + loosestrife + 27074 + + genus + Cuphea + waxweed + 27094 + + species + Cuphea carthagenensis + Colombian waxweed + 27103 + + + + + + + + + + + + + + kingdom + Plantae + plants + 202422 + + subkingdom + Viridiplantae + green plants + 954898 + + infrakingdom + Streptophyta + land plants + 846494 + + superdivision + Embryophyta + 954900 + + division + Tracheophyta + vascular plants + tracheophytes + 846496 + + subdivision + Spermatophytina + spermatophytes + seed plants + 846504 + + class + Magnoliopsida + 18063 + + superorder + Asteranae + 846535 + + order + Solanales + 500033 + + family + Hydroleaceae + 835373 + + genus + Hydrolea + false fiddleleaf + 31382 + + species + Hydrolea corymbosa + skyflower + 31383 + + + + + + + + + + + + + + species + Dichanthelium erectifolium + 41660 + + + kingdom + Plantae + plants + 202422 + + subkingdom + Viridiplantae + green plants + 954898 + + infrakingdom + Streptophyta + land plants + 846494 + + superdivision + Embryophyta + 954900 + + division + Tracheophyta + vascular plants + tracheophytes + 846496 + + subdivision + Spermatophytina + spermatophytes + seed plants + 846504 + + class + Magnoliopsida + 18063 + + superorder + Asteranae + 846535 + + order + Lamiales + 31632 + + family + Lamiaceae + mints + 32251 + + genus + Hyptis + bushmint + 32522 + + species + Hyptis alata + clustered bushmint + 32523 + + + + + + + + + + + + + + kingdom + Plantae + plants + 202422 + + subkingdom + Viridiplantae + green plants + 954898 + + infrakingdom + Streptophyta + land plants + 846494 + + superdivision + Embryophyta + 954900 + + division + Tracheophyta + vascular plants + tracheophytes + 846496 + + subdivision + Spermatophytina + spermatophytes + seed plants + 846504 + + class + Magnoliopsida + 18063 + + superorder + Lilianae + monocots + monocotyledons + 846542 + + order + Alismatales + 38883 + + family + Araceae + Arums + 42521 + + genus + Lemna + duckweed + 42588 + + species + Lemna obscura + little duckweed + 42593 + + + + + + + + + + + + + + kingdom + Plantae + plants + 202422 + + subkingdom + Viridiplantae + green plants + 954898 + + infrakingdom + Streptophyta + land plants + 846494 + + superdivision + Embryophyta + 954900 + + division + Tracheophyta + vascular plants + tracheophytes + 846496 + + subdivision + Spermatophytina + spermatophytes + seed plants + 846504 + + class + Magnoliopsida + 18063 + + superorder + Lilianae + monocots + monocotyledons + 846542 + + order + Dioscoreales + 810114 + + family + Nartheciaceae + 810128 + + genus + Aletris + colicroot + 42767 + + species + Aletris lutea + yellow colicroot + 42770 + + + + + + + + + + + + + + kingdom + Plantae + plants + 202422 + + subkingdom + Viridiplantae + green plants + 954898 + + infrakingdom + Streptophyta + land plants + 846494 + + superdivision + Embryophyta + 954900 + + division + Tracheophyta + vascular plants + tracheophytes + 846496 + + subdivision + Spermatophytina + spermatophytes + seed plants + 846504 + + class + Magnoliopsida + 18063 + + superorder + Asteranae + 846535 + + order + Lamiales + 31632 + + family + Acanthaceae + 34350 + + genus + Ruellia + wild petunia + 34371 + + species + Ruellia caroliniensis + Carolina wild petunia + 34373 + + + + + + + + + + + + + + kingdom + Plantae + plants + 202422 + + subkingdom + Viridiplantae + green plants + 954898 + + infrakingdom + Streptophyta + land plants + 846494 + + superdivision + Embryophyta + 954900 + + division + Tracheophyta + vascular plants + tracheophytes + 846496 + + subdivision + Spermatophytina + spermatophytes + seed plants + 846504 + + class + Magnoliopsida + 18063 + + superorder + Rosanae + 846548 + + order + Fabales + 500022 + + family + Fabaceae + peas + legumes + 500059 + + genus + Lysiloma + false tamarind + 26771 + + species + Lysiloma latisiliquum + false tamarind + 503631 + + + + + + + + + + + + + + kingdom + Plantae + plants + 202422 + + subkingdom + Viridiplantae + green plants + 954898 + + infrakingdom + Streptophyta + land plants + 846494 + + superdivision + Embryophyta + 954900 + + division + Tracheophyta + vascular plants + tracheophytes + 846496 + + subdivision + Spermatophytina + spermatophytes + seed plants + 846504 + + class + Magnoliopsida + 18063 + + superorder + Rosanae + 846548 + + order + Malpighiales + 822428 + + family + Hypericaceae + 822429 + + genus + Hypericum + St. Johnswort + 21416 + + species + Hypericum brachyphyllum + coastal plain St. Johnswort + 21428 + + + + + + + + + + + + + + species + Ocotea coriacea + lancewood + 503982 + + + kingdom + Plantae + plants + 202422 + + subkingdom + Viridiplantae + green plants + 954898 + + infrakingdom + Streptophyta + land plants + 846494 + + superdivision + Embryophyta + 954900 + + division + Tracheophyta + vascular plants + tracheophytes + 846496 + + subdivision + Spermatophytina + spermatophytes + seed plants + 846504 + + class + Magnoliopsida + 18063 + + superorder + Asteranae + 846535 + + order + Asterales + 35419 + + family + Asteraceae + sunflowers + 35420 + + genus + Solidago + goldenrod + 36223 + + species + Solidago gigantea + giant goldenrod + 36259 + + + + + + + + + + + + + + kingdom + Plantae + plants + 202422 + + subkingdom + Viridiplantae + green plants + 954898 + + infrakingdom + Streptophyta + land plants + 846494 + + superdivision + Embryophyta + 954900 + + division + Tracheophyta + vascular plants + tracheophytes + 846496 + + subdivision + Spermatophytina + spermatophytes + seed plants + 846504 + + class + Magnoliopsida + 18063 + + superorder + Rosanae + 846548 + + order + Vitales + 846630 + + family + Vitaceae + grapes + 28600 + + genus + Vitis + grape + 28606 + + species + Vitis cinerea + sweet grape + graybark grape + 28615 + + variety + Vitis cinerea var. floridana + Florida grape + 530856 + + + + + + + + + + + + + + + kingdom + Plantae + plants + 202422 + + subkingdom + Viridiplantae + green plants + 954898 + + infrakingdom + Streptophyta + land plants + 846494 + + superdivision + Embryophyta + 954900 + + division + Tracheophyta + vascular plants + tracheophytes + 846496 + + subdivision + Spermatophytina + spermatophytes + seed plants + 846504 + + class + Magnoliopsida + 18063 + + superorder + Lilianae + monocots + monocotyledons + 846542 + + order + Poales + 846620 + + family + Poaceae + 40351 + + genus + Panicum + 40901 + + species + Panicum repens + 504106 + + + + + + + + + + + + + + kingdom + Plantae + plants + 202422 + + subkingdom + Viridiplantae + green plants + 954898 + + infrakingdom + Streptophyta + land plants + 846494 + + superdivision + Embryophyta + 954900 + + division + Tracheophyta + vascular plants + tracheophytes + 846496 + + subdivision + Spermatophytina + spermatophytes + seed plants + 846504 + + class + Magnoliopsida + 18063 + + superorder + Asteranae + 846535 + + order + Gentianales + 29910 + + family + Rubiaceae + madders + 34784 + + genus + Cephalanthus + buttonbush + 34785 + + species + Cephalanthus occidentalis + buttonbush + common buttonbush + 34786 + + + + + + + + + + + + + + kingdom + Plantae + plants + 202422 + + subkingdom + Viridiplantae + green plants + 954898 + + infrakingdom + Streptophyta + land plants + 846494 + + superdivision + Embryophyta + 954900 + + division + Tracheophyta + vascular plants + tracheophytes + 846496 + + subdivision + Polypodiophytina + 954903 + + class + Polypodiopsida + leptosporangiate ferns + 846528 + + subclass + Polypodiidae + 846532 + + order + Polypodiales + 500029 + + family + Polypodiaceae + common ferns + licorice ferns + 17226 + + genus + Pleopeltis + scaly polypody + 17669 + + species + Pleopeltis polypodioides + resurrection fern + 504451 + + variety + Pleopeltis polypodioides var. michauxiana + resurrection fern + 897673 + + + + + + + + + + + + + + + kingdom + Plantae + plants + 202422 + + subkingdom + Viridiplantae + green plants + 954898 + + infrakingdom + Streptophyta + land plants + 846494 + + superdivision + Embryophyta + 954900 + + division + Tracheophyta + vascular plants + tracheophytes + 846496 + + subdivision + Spermatophytina + spermatophytes + seed plants + 846504 + + class + Magnoliopsida + 18063 + + superorder + Rosanae + 846548 + + order + Rosales + 24057 + + family + Rhamnaceae + buckthorns + 28445 + + genus + Berchemia + supplejack + 28446 + + species + Berchemia scandens + Alabama supplejack + 28447 + + + + + + + + + + + + + + kingdom + Plantae + plants + 202422 + + subkingdom + Viridiplantae + green plants + 954898 + + infrakingdom + Streptophyta + land plants + 846494 + + superdivision + Embryophyta + 954900 + + division + Tracheophyta + vascular plants + tracheophytes + 846496 + + subdivision + Spermatophytina + spermatophytes + seed plants + 846504 + + class + Magnoliopsida + 18063 + + superorder + Asteranae + 846535 + + order + Lamiales + 31632 + + family + Lentibulariaceae + bladderworts + 34432 + + genus + Utricularia + bladderwort + 34443 + + species + Utricularia purpurea + purple bladderwort + eastern purple bladderwort + 34461 + + + + + + + + + + + + + + kingdom + Plantae + plants + 202422 + + subkingdom + Viridiplantae + green plants + 954898 + + infrakingdom + Streptophyta + land plants + 846494 + + superdivision + Embryophyta + 954900 + + division + Tracheophyta + vascular plants + tracheophytes + 846496 + + subdivision + Spermatophytina + spermatophytes + seed plants + 846504 + + class + Magnoliopsida + 18063 + + superorder + Caryophyllanae + 846539 + + order + Caryophyllales + 19520 + + family + Caryophyllaceae + pinks + 19942 + + genus + Drymaria + drymary + 20281 + + species + Drymaria cordata + chickweed + whitesnow + 20282 + + + + + + + + + + + + + + kingdom + Plantae + plants + 202422 + + subkingdom + Viridiplantae + green plants + 954898 + + infrakingdom + Streptophyta + land plants + 846494 + + superdivision + Embryophyta + 954900 + + division + Tracheophyta + vascular plants + tracheophytes + 846496 + + subdivision + Spermatophytina + spermatophytes + seed plants + 846504 + + class + Magnoliopsida + 18063 + + superorder + Asteranae + 846535 + + order + Cornales + 27788 + + family + Cornaceae + dogwoods + 27796 + + genus + Cornus + dogwood + 27798 + + species + Cornus foemina + stiff dogwood + swamp dogwood + 27802 + + + + + + + + + + + + + + kingdom + Plantae + plants + 202422 + + subkingdom + Viridiplantae + green plants + 954898 + + infrakingdom + Streptophyta + land plants + 846494 + + superdivision + Embryophyta + 954900 + + division + Tracheophyta + vascular plants + tracheophytes + 846496 + + subdivision + Spermatophytina + spermatophytes + seed plants + 846504 + + class + Magnoliopsida + 18063 + + superorder + Rosanae + 846548 + + order + Malpighiales + 822428 + + family + Euphorbiaceae + spurge + 28031 + + genus + Stillingia + toothleaf + 28409 + + species + Stillingia aquatica + water toothleaf + 28410 + + + + + + + + + + + + + + kingdom + Plantae + plants + 202422 + + subkingdom + Viridiplantae + green plants + 954898 + + infrakingdom + Streptophyta + land plants + 846494 + + superdivision + Embryophyta + 954900 + + division + Tracheophyta + vascular plants + tracheophytes + 846496 + + subdivision + Spermatophytina + spermatophytes + seed plants + 846504 + + class + Magnoliopsida + 18063 + + superorder + Asteranae + 846535 + + order + Asterales + 35419 + + family + Asteraceae + sunflowers + 35420 + + genus + Pityopsis + silkgrass + 196340 + + species + Pityopsis graminifolia + narrowleaf silkgrass + 196349 + + + + + + + + + + + + + + kingdom + Plantae + plants + 202422 + + subkingdom + Viridiplantae + green plants + 954898 + + infrakingdom + Streptophyta + land plants + 846494 + + superdivision + Embryophyta + 954900 + + division + Tracheophyta + vascular plants + tracheophytes + 846496 + + subdivision + Polypodiophytina + 954903 + + class + Polypodiopsida + leptosporangiate ferns + 846528 + + subclass + Polypodiidae + 846532 + + order + Salviniales + water ferns + heterosporous ferns + 18004 + + family + Salviniaceae + water ferns + floating ferns + 18010 + + genus + Salvinia + watermoss + 18011 + + species + Salvinia minima + water fern + water spangles + 181822 + + + + + + + + + + + + + + kingdom + Plantae + plants + 202422 + + subkingdom + Viridiplantae + green plants + 954898 + + infrakingdom + Streptophyta + land plants + 846494 + + superdivision + Embryophyta + 954900 + + division + Tracheophyta + vascular plants + tracheophytes + 846496 + + subdivision + Spermatophytina + spermatophytes + seed plants + 846504 + + class + Magnoliopsida + 18063 + + superorder + Rosanae + 846548 + + order + Celastrales + 27931 + + family + Celastraceae + bittersweet + 27937 + + genus + Hippocratea + 27934 + + species + Hippocratea volubilis + medicine vine + 27936 + + + + + + + + + + + + + + kingdom + Plantae + plants + 202422 + + subkingdom + Viridiplantae + green plants + 954898 + + infrakingdom + Streptophyta + land plants + 846494 + + superdivision + Embryophyta + 954900 + + division + Tracheophyta + vascular plants + tracheophytes + 846496 + + subdivision + Spermatophytina + spermatophytes + seed plants + 846504 + + class + Magnoliopsida + 18063 + + superorder + Asteranae + 846535 + + order + Lamiales + 31632 + + family + Acanthaceae + 34350 + + genus + Avicennia + black mangrove + mangrove + 32136 + + species + Avicennia germinans + black mangrove + 32137 + + + + + + + + + + + + + + kingdom + Plantae + plants + 202422 + + subkingdom + Viridiplantae + green plants + 954898 + + infrakingdom + Streptophyta + land plants + 846494 + + superdivision + Embryophyta + 954900 + + division + Tracheophyta + vascular plants + tracheophytes + 846496 + + subdivision + Spermatophytina + spermatophytes + seed plants + 846504 + + class + Magnoliopsida + 18063 + + superorder + Rosanae + 846548 + + order + Malpighiales + 822428 + + family + Hypericaceae + 822429 + + genus + Hypericum + St. Johnswort + 21416 + + species + Hypericum hypericoides + St. Andrew's cross + 503138 + + + + + + + + + + + + + + kingdom + Plantae + plants + 202422 + + subkingdom + Viridiplantae + green plants + 954898 + + infrakingdom + Streptophyta + land plants + 846494 + + superdivision + Embryophyta + 954900 + + division + Tracheophyta + vascular plants + tracheophytes + 846496 + + subdivision + Spermatophytina + spermatophytes + seed plants + 846504 + + class + Magnoliopsida + 18063 + + superorder + Asteranae + 846535 + + order + Gentianales + 29910 + + family + Rubiaceae + madders + 34784 + + genus + Diodia + buttonweed + 34788 + + species + Diodia virginiana + Virginia buttonweed + 34790 + + + + + + + + + + + + + + kingdom + Plantae + plants + 202422 + + subkingdom + Viridiplantae + green plants + 954898 + + infrakingdom + Streptophyta + land plants + 846494 + + superdivision + Embryophyta + 954900 + + division + Tracheophyta + vascular plants + tracheophytes + 846496 + + subdivision + Spermatophytina + spermatophytes + seed plants + 846504 + + class + Magnoliopsida + 18063 + + superorder + Rosanae + 846548 + + order + Myrtales + 27072 + + family + Combretaceae + combretums + 27755 + + genus + Conocarpus + mangrove + 27765 + + species + Conocarpus erectus + button mangrove + 27766 + + + + + + + + + + + + + + kingdom + Plantae + plants + 202422 + + subkingdom + Viridiplantae + green plants + 954898 + + infrakingdom + Streptophyta + land plants + 846494 + + superdivision + Embryophyta + 954900 + + division + Tracheophyta + vascular plants + tracheophytes + 846496 + + subdivision + Spermatophytina + spermatophytes + seed plants + 846504 + + class + Magnoliopsida + 18063 + + superorder + Asteranae + 846535 + + order + Asterales + 35419 + + family + Asteraceae + sunflowers + 35420 + + genus + Helenium + sneezeweed + 36005 + + species + Helenium pinnatifidum + southeastern sneezeweed + 36019 + + + + + + + + + + + + + + kingdom + Plantae + plants + 202422 + + subkingdom + Viridiplantae + green plants + 954898 + + infrakingdom + Streptophyta + land plants + 846494 + + superdivision + Embryophyta + 954900 + + division + Tracheophyta + vascular plants + tracheophytes + 846496 + + subdivision + Spermatophytina + spermatophytes + seed plants + 846504 + + class + Magnoliopsida + 18063 + + superorder + Lilianae + monocots + monocotyledons + 846542 + + order + Liliales + 42612 + + family + Smilacaceae + catbrier + 43339 + + genus + Smilax + common greenbriar + greenbriar + sarsaparilla + catbrier + greenbrier + 43340 + + species + Smilax bona-nox + saw greenbrier + 43341 + + + + + + + + + + + + + + kingdom + Plantae + plants + 202422 + + subkingdom + Viridiplantae + green plants + 954898 + + infrakingdom + Streptophyta + land plants + 846494 + + superdivision + Embryophyta + 954900 + + division + Tracheophyta + vascular plants + tracheophytes + 846496 + + subdivision + Spermatophytina + spermatophytes + seed plants + 846504 + + class + Magnoliopsida + 18063 + + superorder + Lilianae + monocots + monocotyledons + 846542 + + order + Asparagales + 897479 + + family + Orchidaceae + orchids + 43397 + + genus + Encyclia + butterfly orchid + 43551 + + species + Encyclia tampensis + Tampa butterfly orchid + 43554 + + + + + + + + + + + + + + kingdom + Plantae + plants + 202422 + + subkingdom + Viridiplantae + green plants + 954898 + + infrakingdom + Streptophyta + land plants + 846494 + + superdivision + Embryophyta + 954900 + + division + Tracheophyta + vascular plants + tracheophytes + 846496 + + subdivision + Spermatophytina + spermatophytes + seed plants + 846504 + + class + Magnoliopsida + 18063 + + superorder + Rosanae + 846548 + + order + Rosales + 24057 + + family + Urticaceae + nettles + 19119 + + genus + Boehmeria + false nettle + 19120 + + species + Boehmeria cylindrica + small-spike false nettle + smallspike false nettle + 19121 + + + + + + + + + + + + + + kingdom + Plantae + plants + 202422 + + subkingdom + Viridiplantae + green plants + 954898 + + infrakingdom + Streptophyta + land plants + 846494 + + superdivision + Embryophyta + 954900 + + division + Tracheophyta + vascular plants + tracheophytes + 846496 + + subdivision + Spermatophytina + spermatophytes + seed plants + 846504 + + class + Magnoliopsida + 18063 + + superorder + Lilianae + monocots + monocotyledons + 846542 + + order + Alismatales + 38883 + + family + Hydrocharitaceae + frog's bit + tape-grass + waternymphs + 38935 + + genus + Hydrilla + 38973 + + species + Hydrilla verticillata + Florida elodea + water thyme + hydrilla + water-thyme + waterthyme + 38974 + + + + + + + + + + + + + + kingdom + Plantae + plants + 202422 + + subkingdom + Viridiplantae + green plants + 954898 + + infrakingdom + Streptophyta + land plants + 846494 + + superdivision + Embryophyta + 954900 + + division + Tracheophyta + vascular plants + tracheophytes + 846496 + + subdivision + Spermatophytina + spermatophytes + seed plants + 846504 + + class + Magnoliopsida + 18063 + + superorder + Lilianae + monocots + monocotyledons + 846542 + + order + Poales + 846620 + + family + Poaceae + 40351 + + genus + Sporobolus + 42115 + + species + Sporobolus virginicus + 42127 + + + + + + + + + + + + + + kingdom + Plantae + plants + 202422 + + subkingdom + Viridiplantae + green plants + 954898 + + infrakingdom + Streptophyta + land plants + 846494 + + superdivision + Embryophyta + 954900 + + division + Tracheophyta + vascular plants + tracheophytes + 846496 + + subdivision + Spermatophytina + spermatophytes + seed plants + 846504 + + class + Magnoliopsida + 18063 + + superorder + Lilianae + monocots + monocotyledons + 846542 + + order + Poales + 846620 + + family + Cyperaceae + sedges + 39357 + + genus + Scleria + nutrush + 40303 + + + + + + + + + + + + + kingdom + Plantae + plants + 202422 + + subkingdom + Viridiplantae + green plants + 954898 + + infrakingdom + Streptophyta + land plants + 846494 + + superdivision + Embryophyta + 954900 + + division + Tracheophyta + vascular plants + tracheophytes + 846496 + + subdivision + Spermatophytina + spermatophytes + seed plants + 846504 + + class + Magnoliopsida + 18063 + + superorder + Asteranae + 846535 + + order + Asterales + 35419 + + family + Asteraceae + sunflowers + 35420 + + genus + Eupatorium + thoroughwort + 35977 + + species + Eupatorium serotinum + lateflowering thoroughwort + 35981 + + + + + + + + + + + + + + kingdom + Plantae + plants + 202422 + + subkingdom + Viridiplantae + green plants + 954898 + + infrakingdom + Streptophyta + land plants + 846494 + + superdivision + Embryophyta + 954900 + + division + Tracheophyta + vascular plants + tracheophytes + 846496 + + subdivision + Polypodiophytina + 954903 + + class + Polypodiopsida + leptosporangiate ferns + 846528 + + subclass + Polypodiidae + 846532 + + order + Polypodiales + 500029 + + family + Polypodiaceae + common ferns + licorice ferns + 17226 + + genus + Campyloneurum + strapfern + 17425 + + species + Campyloneurum phyllitidis + long strapfern + 17429 + + + + + + + + + + + + + + kingdom + Plantae + plants + 202422 + + subkingdom + Viridiplantae + green plants + 954898 + + infrakingdom + Streptophyta + land plants + 846494 + + superdivision + Embryophyta + 954900 + + division + Tracheophyta + vascular plants + tracheophytes + 846496 + + subdivision + Spermatophytina + spermatophytes + seed plants + 846504 + + class + Magnoliopsida + 18063 + + superorder + Santalanae + 846549 + + order + Santalales + 27840 + + family + Ximeniaceae + 895563 + + genus + Ximenia + 27849 + + species + Ximenia americana + tallow wood + tallowwood + 27850 + + + + + + + + + + + + + + kingdom + Plantae + plants + 202422 + + subkingdom + Viridiplantae + green plants + 954898 + + infrakingdom + Streptophyta + land plants + 846494 + + superdivision + Embryophyta + 954900 + + division + Tracheophyta + vascular plants + tracheophytes + 846496 + + subdivision + Polypodiophytina + 954903 + + class + Polypodiopsida + leptosporangiate ferns + 846528 + + subclass + Polypodiidae + 846532 + + order + Polypodiales + 500029 + + family + Thelypteridaceae + marsh ferns + 500085 + + genus + Thelypteris + marsh ferns + wood ferns + maiden fern + 17250 + + species + Thelypteris kunthii + Kunth's maiden fern + 17258 + + + + + + + + + + + + + + kingdom + Plantae + plants + 202422 + + subkingdom + Viridiplantae + green plants + 954898 + + infrakingdom + Streptophyta + land plants + 846494 + + superdivision + Embryophyta + 954900 + + division + Tracheophyta + vascular plants + tracheophytes + 846496 + + subdivision + Spermatophytina + spermatophytes + seed plants + 846504 + + class + Magnoliopsida + 18063 + + superorder + Rosanae + 846548 + + order + Vitales + 846630 + + family + Vitaceae + grapes + 28600 + + genus + Parthenocissus + creeper + 28601 + + species + Parthenocissus quinquefolia + American ivy + fiveleaved ivy + woodbine + Virginia creeper + 28602 + + + + + + + + + + + + + + kingdom + Plantae + plants + 202422 + + subkingdom + Viridiplantae + green plants + 954898 + + infrakingdom + Streptophyta + land plants + 846494 + + superdivision + Embryophyta + 954900 + + division + Tracheophyta + vascular plants + tracheophytes + 846496 + + subdivision + Spermatophytina + spermatophytes + seed plants + 846504 + + class + Magnoliopsida + 18063 + + superorder + Asteranae + 846535 + + order + Lamiales + 31632 + + family + Acanthaceae + 34350 + + genus + Dyschoriste + snakeherb + 500252 + + species + Dyschoriste angusta + pineland snakeherb + 502189 + + + + + + + + + + + + + + kingdom + Plantae + plants + 202422 + + subkingdom + Viridiplantae + green plants + 954898 + + infrakingdom + Streptophyta + land plants + 846494 + + superdivision + Embryophyta + 954900 + + division + Tracheophyta + vascular plants + tracheophytes + 846496 + + subdivision + Spermatophytina + spermatophytes + seed plants + 846504 + + class + Magnoliopsida + 18063 + + superorder + Lilianae + monocots + monocotyledons + 846542 + + order + Poales + 846620 + + family + Poaceae + 40351 + + genus + Saccharum + 42054 + + species + Saccharum giganteum + 504933 + + + + + + + + + + + + + + kingdom + Plantae + plants + 202422 + + subkingdom + Viridiplantae + green plants + 954898 + + infrakingdom + Streptophyta + land plants + 846494 + + superdivision + Embryophyta + 954900 + + division + Tracheophyta + vascular plants + tracheophytes + 846496 + + subdivision + Spermatophytina + spermatophytes + seed plants + 846504 + + class + Magnoliopsida + 18063 + + superorder + Lilianae + monocots + monocotyledons + 846542 + + order + Poales + 846620 + + family + Eriocaulaceae + pipewort + 39193 + + genus + Eriocaulon + pipewort + 39194 + + species + Eriocaulon ravenelii + Ravenel's pipewort + 39201 + + + + + + + + + + + + + + kingdom + Plantae + plants + 202422 + + subkingdom + Viridiplantae + green plants + 954898 + + infrakingdom + Streptophyta + land plants + 846494 + + superdivision + Embryophyta + 954900 + + division + Tracheophyta + vascular plants + tracheophytes + 846496 + + subdivision + Spermatophytina + spermatophytes + seed plants + 846504 + + class + Magnoliopsida + 18063 + + superorder + Rosanae + 846548 + + order + Fabales + 500022 + + family + Fabaceae + peas + legumes + 500059 + + genus + Chamaecrista + sensitive pea + 500196 + + species + Chamaecrista fasciculata + partridge pea + sleepingplant + showy partridgepea + 501383 + + + + + + + + + + + + + + kingdom + Plantae + plants + 202422 + + subkingdom + Viridiplantae + green plants + 954898 + + infrakingdom + Streptophyta + land plants + 846494 + + superdivision + Embryophyta + 954900 + + division + Tracheophyta + vascular plants + tracheophytes + 846496 + + subdivision + Spermatophytina + spermatophytes + seed plants + 846504 + + class + Magnoliopsida + 18063 + + superorder + Lilianae + monocots + monocotyledons + 846542 + + order + Poales + 846620 + + family + Cyperaceae + sedges + 39357 + + genus + Fuirena + umbrella-sedge + 40130 + + species + Fuirena breviseta + saltmarsh umbrella-sedge + 40133 + + + + + + + + + + + + + + kingdom + Plantae + plants + 202422 + + subkingdom + Viridiplantae + green plants + 954898 + + infrakingdom + Streptophyta + land plants + 846494 + + superdivision + Embryophyta + 954900 + + division + Tracheophyta + vascular plants + tracheophytes + 846496 + + subdivision + Spermatophytina + spermatophytes + seed plants + 846504 + + class + Magnoliopsida + 18063 + + superorder + Rosanae + 846548 + + order + Rosales + 24057 + + family + Moraceae + mulberries + 19063 + + genus + Ficus + fig + 19081 + + species + Ficus aurea + Florida strangler + Florida strangler fig + 19092 + + + + + + + + + + + + + + kingdom + Plantae + plants + 202422 + + subkingdom + Viridiplantae + green plants + 954898 + + infrakingdom + Streptophyta + land plants + 846494 + + superdivision + Embryophyta + 954900 + + division + Tracheophyta + vascular plants + tracheophytes + 846496 + + subdivision + Spermatophytina + spermatophytes + seed plants + 846504 + + class + Magnoliopsida + 18063 + + superorder + Lilianae + monocots + monocotyledons + 846542 + + order + Poales + 846620 + + family + Bromeliaceae + 42330 + + genus + Tillandsia + air plant + airplant + 42359 + + species + Tillandsia setacea + southern needleleaf + 42370 + + + + + + + + + + + + + + kingdom + Plantae + plants + 202422 + + subkingdom + Viridiplantae + green plants + 954898 + + infrakingdom + Streptophyta + land plants + 846494 + + superdivision + Embryophyta + 954900 + + division + Tracheophyta + vascular plants + tracheophytes + 846496 + + subdivision + Spermatophytina + spermatophytes + seed plants + 846504 + + class + Magnoliopsida + 18063 + + superorder + Ranunculanae + 846547 + + order + Ranunculales + 18409 + + family + Ranunculaceae + buttercups + crowfoot + 18410 + + genus + Clematis + leather flower + 18685 + + species + Clematis baldwinii + pine hyacinth + 18689 + + + + + + + + + + + + + + kingdom + Plantae + plants + 202422 + + subkingdom + Viridiplantae + green plants + 954898 + + infrakingdom + Streptophyta + land plants + 846494 + + superdivision + Embryophyta + 954900 + + division + Tracheophyta + vascular plants + tracheophytes + 846496 + + subdivision + Spermatophytina + spermatophytes + seed plants + 846504 + + class + Magnoliopsida + 18063 + + superorder + Asteranae + 846535 + + order + Asterales + 35419 + + family + Asteraceae + sunflowers + 35420 + + genus + Solidago + goldenrod + 36223 + + species + Solidago stricta + wand goldenrod + 36315 + + + + + + + + + + + + + + kingdom + Plantae + plants + 202422 + + subkingdom + Viridiplantae + green plants + 954898 + + infrakingdom + Streptophyta + land plants + 846494 + + superdivision + Embryophyta + 954900 + + division + Tracheophyta + vascular plants + tracheophytes + 846496 + + subdivision + Spermatophytina + spermatophytes + seed plants + 846504 + + class + Magnoliopsida + 18063 + + superorder + Lilianae + monocots + monocotyledons + 846542 + + order + Poales + 846620 + + family + Juncaceae + rushes + Rush Family + 39219 + + genus + Juncus + rush + 39220 + + species + Juncus marginatus + grassleaf rush + 39289 + + + + + + + + + + + + + + kingdom + Plantae + plants + 202422 + + subkingdom + Viridiplantae + green plants + 954898 + + infrakingdom + Streptophyta + land plants + 846494 + + superdivision + Embryophyta + 954900 + + division + Tracheophyta + vascular plants + tracheophytes + 846496 + + subdivision + Spermatophytina + spermatophytes + seed plants + 846504 + + class + Magnoliopsida + 18063 + + superorder + Asteranae + 846535 + + order + Lamiales + 31632 + + family + Plantaginaceae + plantains + 32869 + + genus + Gratiola + hedge hyssop + hedgehyssop + 33189 + + species + Gratiola ramosa + branched hedgehyssop + 33199 + + + + + + + + + + + + + + kingdom + Plantae + plants + 202422 + + subkingdom + Viridiplantae + green plants + 954898 + + infrakingdom + Streptophyta + land plants + 846494 + + superdivision + Embryophyta + 954900 + + division + Tracheophyta + vascular plants + tracheophytes + 846496 + + subdivision + Spermatophytina + spermatophytes + seed plants + 846504 + + class + Magnoliopsida + 18063 + + superorder + Lilianae + monocots + monocotyledons + 846542 + + order + Poales + 846620 + + family + Juncaceae + rushes + Rush Family + 39219 + + genus + Juncus + rush + 39220 + + species + Juncus megacephalus + bighead rush + 39291 + + + + + + + + + + + + + + kingdom + Plantae + plants + 202422 + + subkingdom + Viridiplantae + green plants + 954898 + + infrakingdom + Streptophyta + land plants + 846494 + + superdivision + Embryophyta + 954900 + + division + Tracheophyta + vascular plants + tracheophytes + 846496 + + subdivision + Spermatophytina + spermatophytes + seed plants + 846504 + + class + Magnoliopsida + 18063 + + superorder + Asteranae + 846535 + + order + Asterales + 35419 + + family + Asteraceae + sunflowers + 35420 + + genus + Coreopsis + tickseed + 37123 + + species + Coreopsis leavenworthii + Leavenworth's tickseed + 37141 + + + + + + + + + + + + + + kingdom + Plantae + plants + 202422 + + subkingdom + Viridiplantae + green plants + 954898 + + infrakingdom + Streptophyta + land plants + 846494 + + superdivision + Embryophyta + 954900 + + division + Tracheophyta + vascular plants + tracheophytes + 846496 + + subdivision + Spermatophytina + spermatophytes + seed plants + 846504 + + class + Magnoliopsida + 18063 + + superorder + Lilianae + monocots + monocotyledons + 846542 + + order + Poales + 846620 + + family + Poaceae + 40351 + + genus + Stenotaphrum + 42156 + + species + Stenotaphrum secundatum + 42157 + + + + + + + + + + + + + + kingdom + Plantae + plants + 202422 + + subkingdom + Viridiplantae + green plants + 954898 + + infrakingdom + Streptophyta + land plants + 846494 + + superdivision + Embryophyta + 954900 + + division + Tracheophyta + vascular plants + tracheophytes + 846496 + + subdivision + Spermatophytina + spermatophytes + seed plants + 846504 + + class + Magnoliopsida + 18063 + + superorder + Lilianae + monocots + monocotyledons + 846542 + + order + Poales + 846620 + + family + Bromeliaceae + 42330 + + genus + Tillandsia + air plant + airplant + 42359 + + species + Tillandsia paucifolia + potbelly airplant + 505511 + + + + + + + + + + + + + + kingdom + Plantae + plants + 202422 + + subkingdom + Viridiplantae + green plants + 954898 + + infrakingdom + Streptophyta + land plants + 846494 + + superdivision + Embryophyta + 954900 + + division + Tracheophyta + vascular plants + tracheophytes + 846496 + + subdivision + Spermatophytina + spermatophytes + seed plants + 846504 + + class + Magnoliopsida + 18063 + + superorder + Rosanae + 846548 + + order + Malpighiales + 822428 + + family + Hypericaceae + 822429 + + genus + Hypericum + St. Johnswort + 21416 + + species + Hypericum cistifolium + roundpod St. Johnswort + 21432 + + + + + + + + + + + + + + kingdom + Plantae + plants + 202422 + + subkingdom + Viridiplantae + green plants + 954898 + + infrakingdom + Streptophyta + land plants + 846494 + + superdivision + Embryophyta + 954900 + + division + Tracheophyta + vascular plants + tracheophytes + 846496 + + subdivision + Spermatophytina + spermatophytes + seed plants + 846504 + + class + Magnoliopsida + 18063 + + superorder + Asteranae + 846535 + + order + Lamiales + 31632 + + family + Acanthaceae + 34350 + + genus + Elytraria + scalystem + 182353 + + species + Elytraria caroliniensis + Carolina scalystem + 502286 + + variety + Elytraria caroliniensis var. angustifolia + Carolina scalystem + 527871 + + + + + + + + + + + + + + + kingdom + Plantae + plants + 202422 + + subkingdom + Viridiplantae + green plants + 954898 + + infrakingdom + Streptophyta + land plants + 846494 + + superdivision + Embryophyta + 954900 + + division + Tracheophyta + vascular plants + tracheophytes + 846496 + + subdivision + Spermatophytina + spermatophytes + seed plants + 846504 + + class + Magnoliopsida + 18063 + + superorder + Lilianae + monocots + monocotyledons + 846542 + + order + Poales + 846620 + + family + Poaceae + 40351 + + genus + Eragrostis + 40716 + + species + Eragrostis elliottii + 40720 + + + + + + + + + + + + + + kingdom + Plantae + plants + 202422 + + subkingdom + Viridiplantae + green plants + 954898 + + infrakingdom + Streptophyta + land plants + 846494 + + superdivision + Embryophyta + 954900 + + division + Tracheophyta + vascular plants + tracheophytes + 846496 + + subdivision + Spermatophytina + spermatophytes + seed plants + 846504 + + class + Magnoliopsida + 18063 + + superorder + Lilianae + monocots + monocotyledons + 846542 + + order + Asparagales + 897479 + + family + Iridaceae + 43190 + + genus + Sisyrinchium + blue-eyed grass + 43237 + + species + Sisyrinchium angustifolium + blueeyed grass + common blue-eyed grass + common blue-eyedgrass + blue-eyed grass + narrowleaf blue-eyed grass + 43240 + + + + + + + + + + + + + + kingdom + Plantae + plants + 202422 + + subkingdom + Viridiplantae + green plants + 954898 + + infrakingdom + Streptophyta + land plants + 846494 + + superdivision + Embryophyta + 954900 + + division + Tracheophyta + vascular plants + tracheophytes + 846496 + + subdivision + Spermatophytina + spermatophytes + seed plants + 846504 + + class + Magnoliopsida + 18063 + + superorder + Rosanae + 846548 + + order + Malpighiales + 822428 + + family + Passifloraceae + 22218 + + genus + Passiflora + passionflower + 22219 + + species + Passiflora suberosa + corky passionflower + devil's pumpkin + huehue haole + indigo berry + wild passionfruit + maypop + corkystem passionflower + 22232 + + + + + + + + + + + + + + kingdom + Plantae + plants + 202422 + + subkingdom + Viridiplantae + green plants + 954898 + + infrakingdom + Streptophyta + land plants + 846494 + + superdivision + Embryophyta + 954900 + + division + Tracheophyta + vascular plants + tracheophytes + 846496 + + subdivision + Spermatophytina + spermatophytes + seed plants + 846504 + + class + Magnoliopsida + 18063 + + superorder + Lilianae + monocots + monocotyledons + 846542 + + order + Liliales + 42612 + + family + Smilacaceae + catbrier + 43339 + + genus + Smilax + common greenbriar + greenbriar + sarsaparilla + catbrier + greenbrier + 43340 + + species + Smilax tamnoides + bristly greenbrier + 43348 + + + + + + + + + + + + + + kingdom + Plantae + plants + 202422 + + subkingdom + Viridiplantae + green plants + 954898 + + infrakingdom + Streptophyta + land plants + 846494 + + superdivision + Embryophyta + 954900 + + division + Tracheophyta + vascular plants + tracheophytes + 846496 + + subdivision + Spermatophytina + spermatophytes + seed plants + 846504 + + class + Magnoliopsida + 18063 + + superorder + Lilianae + monocots + monocotyledons + 846542 + + order + Poales + 846620 + + family + Cyperaceae + sedges + 39357 + + genus + Eleocharis + spikerush + 40010 + + species + Eleocharis geniculata + Canada spikesedge + 40046 + + + + + + + + + + + + + + kingdom + Plantae + plants + 202422 + + subkingdom + Viridiplantae + green plants + 954898 + + infrakingdom + Streptophyta + land plants + 846494 + + superdivision + Embryophyta + 954900 + + division + Tracheophyta + vascular plants + tracheophytes + 846496 + + subdivision + Spermatophytina + spermatophytes + seed plants + 846504 + + class + Magnoliopsida + 18063 + + superorder + Asteranae + 846535 + + order + Solanales + 500033 + + family + Convolvulaceae + morningglories + morning-glories + 30648 + + genus + Ipomoea + morningglory + morning-glory + 30758 + + species + Ipomoea sagittata + saltmarsh morning-glory + 30792 + + + + + + + + + + + + + + kingdom + Plantae + plants + 202422 + + subkingdom + Viridiplantae + green plants + 954898 + + infrakingdom + Streptophyta + land plants + 846494 + + superdivision + Embryophyta + 954900 + + division + Tracheophyta + vascular plants + tracheophytes + 846496 + + subdivision + Spermatophytina + spermatophytes + seed plants + 846504 + + class + Magnoliopsida + 18063 + + superorder + Rosanae + 846548 + + order + Sapindales + 28643 + + family + Burseraceae + burseras + 28762 + + genus + Bursera + bursera + 28763 + + species + Bursera simaruba + West Indian birch + gumbo limbo + 28766 + + + + + + + + + + + + + + kingdom + Plantae + plants + 202422 + + subkingdom + Viridiplantae + green plants + 954898 + + infrakingdom + Streptophyta + land plants + 846494 + + superdivision + Embryophyta + 954900 + + division + Tracheophyta + vascular plants + tracheophytes + 846496 + + subdivision + Spermatophytina + spermatophytes + seed plants + 846504 + + class + Magnoliopsida + 18063 + + superorder + Lilianae + monocots + monocotyledons + 846542 + + order + Poales + 846620 + + family + Poaceae + 40351 + + genus + Aristida + 41400 + + species + Aristida purpurascens + 41428 + + + + + + + + + + + + + + kingdom + Plantae + plants + 202422 + + subkingdom + Viridiplantae + green plants + 954898 + + infrakingdom + Streptophyta + land plants + 846494 + + superdivision + Embryophyta + 954900 + + division + Tracheophyta + vascular plants + tracheophytes + 846496 + + subdivision + Spermatophytina + spermatophytes + seed plants + 846504 + + class + Magnoliopsida + 18063 + + superorder + Lilianae + monocots + monocotyledons + 846542 + + order + Liliales + 42612 + + family + Smilacaceae + catbrier + 43339 + + genus + Smilax + common greenbriar + greenbriar + sarsaparilla + catbrier + greenbrier + 43340 + + species + Smilax laurifolia + laurel greenbrier + 43345 + + + + + + + + + + + + + + species + Spermacoce assurgens + woodland false buttonweed + 35244 + + + variety + Sagittaria graminea var. chapmanii + Chapman's arrowhead + 530206 + + + kingdom + Plantae + plants + 202422 + + subkingdom + Viridiplantae + green plants + 954898 + + infrakingdom + Streptophyta + land plants + 846494 + + superdivision + Embryophyta + 954900 + + division + Tracheophyta + vascular plants + tracheophytes + 846496 + + subdivision + Spermatophytina + spermatophytes + seed plants + 846504 + + class + Magnoliopsida + 18063 + + superorder + Lilianae + monocots + monocotyledons + 846542 + + order + Poales + 846620 + + family + Cyperaceae + sedges + 39357 + + genus + Carex + sedge species + sedges + sedge + 39369 + + species + Carex lupuliformis + false hop sedge + 39412 + + + + + + + + + + + + + + species + Aster carolinianus + 35540 + + + species + Coelorachis rugosa + 41582 + + + kingdom + Plantae + plants + 202422 + + subkingdom + Viridiplantae + green plants + 954898 + + infrakingdom + Streptophyta + land plants + 846494 + + superdivision + Embryophyta + 954900 + + division + Tracheophyta + vascular plants + tracheophytes + 846496 + + subdivision + Spermatophytina + spermatophytes + seed plants + 846504 + + class + Magnoliopsida + 18063 + + superorder + Asteranae + 846535 + + order + Ericales + 23443 + + family + Sapotaceae + sapodillas + sapotes + 23802 + + genus + Sideroxylon + bumelia + bully + 500559 + + species + Sideroxylon salicifolium + white bully + 505224 + + + + + + + + + + + + + + kingdom + Plantae + plants + 202422 + + subkingdom + Viridiplantae + green plants + 954898 + + infrakingdom + Streptophyta + land plants + 846494 + + superdivision + Embryophyta + 954900 + + division + Tracheophyta + vascular plants + tracheophytes + 846496 + + subdivision + Spermatophytina + spermatophytes + seed plants + 846504 + + class + Magnoliopsida + 18063 + + superorder + Magnolianae + 846543 + + order + Magnoliales + 18065 + + family + Magnoliaceae + magnolias + 18068 + + genus + Magnolia + 18069 + + species + Magnolia virginiana + laurier doux + swamp-bay + sweetbay + 18070 + + + + + + + + + + + + + + kingdom + Plantae + plants + 202422 + + subkingdom + Viridiplantae + green plants + 954898 + + infrakingdom + Streptophyta + land plants + 846494 + + superdivision + Embryophyta + 954900 + + division + Tracheophyta + vascular plants + tracheophytes + 846496 + + subdivision + Spermatophytina + spermatophytes + seed plants + 846504 + + class + Magnoliopsida + 18063 + + superorder + Rosanae + 846548 + + order + Malpighiales + 822428 + + family + Hypericaceae + 822429 + + genus + Hypericum + St. Johnswort + 21416 + + species + Hypericum tetrapetalum + fourpetal St. Johnswort + 21463 + + + + + + + + + + + + + + kingdom + Plantae + plants + 202422 + + subkingdom + Viridiplantae + green plants + 954898 + + infrakingdom + Streptophyta + land plants + 846494 + + superdivision + Embryophyta + 954900 + + division + Tracheophyta + vascular plants + tracheophytes + 846496 + + subdivision + Spermatophytina + spermatophytes + seed plants + 846504 + + class + Magnoliopsida + 18063 + + superorder + Lilianae + monocots + monocotyledons + 846542 + + order + Poales + 846620 + + family + Poaceae + 40351 + + genus + Eustachys + 41739 + + species + Eustachys petraea + 41743 + + + + + + + + + + + + + + kingdom + Plantae + plants + 202422 + + subkingdom + Viridiplantae + green plants + 954898 + + infrakingdom + Streptophyta + land plants + 846494 + + superdivision + Embryophyta + 954900 + + division + Tracheophyta + vascular plants + tracheophytes + 846496 + + subdivision + Spermatophytina + spermatophytes + seed plants + 846504 + + class + Magnoliopsida + 18063 + + superorder + Asteranae + 846535 + + order + Gentianales + 29910 + + family + Apocynaceae + dogbane + 30124 + + genus + Asclepias + milkweed + 30240 + + species + Asclepias tuberosa + butterfly milkweed + 30313 + + + + + + + + + + + + + + kingdom + Plantae + plants + 202422 + + subkingdom + Viridiplantae + green plants + 954898 + + infrakingdom + Streptophyta + land plants + 846494 + + superdivision + Embryophyta + 954900 + + division + Tracheophyta + vascular plants + tracheophytes + 846496 + + subdivision + Polypodiophytina + 954903 + + class + Polypodiopsida + leptosporangiate ferns + 846528 + + subclass + Polypodiidae + 846532 + + order + Schizaeales + 846603 + + family + Anemiaceae + flowering ferns + 500039 + + genus + Anemia + 17974 + + species + Anemia adiantifolia + pineland fern + pine fern + 17975 + + + + + + + + + + + + + + kingdom + Plantae + plants + 202422 + + subkingdom + Viridiplantae + green plants + 954898 + + infrakingdom + Streptophyta + land plants + 846494 + + superdivision + Embryophyta + 954900 + + division + Tracheophyta + vascular plants + tracheophytes + 846496 + + subdivision + Spermatophytina + spermatophytes + seed plants + 846504 + + class + Magnoliopsida + 18063 + + superorder + Lilianae + monocots + monocotyledons + 846542 + + order + Poales + 846620 + + family + Poaceae + 40351 + + genus + Sacciolepis + 41226 + + species + Sacciolepis indica + 41228 + + + + + + + + + + + + + + kingdom + Plantae + plants + 202422 + + subkingdom + Viridiplantae + green plants + 954898 + + infrakingdom + Streptophyta + land plants + 846494 + + superdivision + Embryophyta + 954900 + + division + Tracheophyta + vascular plants + tracheophytes + 846496 + + subdivision + Spermatophytina + spermatophytes + seed plants + 846504 + + class + Magnoliopsida + 18063 + + superorder + Asteranae + 846535 + + order + Asterales + 35419 + + family + Asteraceae + sunflowers + 35420 + + genus + Pterocaulon + blackroot + 38318 + + species + Pterocaulon pycnostachyum + dense-spike blackroot + 519743 + + + + + + + + + + + + + + kingdom + Plantae + plants + 202422 + + subkingdom + Viridiplantae + green plants + 954898 + + infrakingdom + Streptophyta + land plants + 846494 + + superdivision + Embryophyta + 954900 + + division + Tracheophyta + vascular plants + tracheophytes + 846496 + + subdivision + Spermatophytina + spermatophytes + seed plants + 846504 + + class + Magnoliopsida + 18063 + + superorder + Lilianae + monocots + monocotyledons + 846542 + + order + Poales + 846620 + + family + Cyperaceae + sedges + 39357 + + genus + Fuirena + umbrella-sedge + 40130 + + species + Fuirena scirpoidea + southern umbrella-sedge + 40136 + + + + + + + + + + + + + + kingdom + Plantae + plants + 202422 + + subkingdom + Viridiplantae + green plants + 954898 + + infrakingdom + Streptophyta + land plants + 846494 + + superdivision + Embryophyta + 954900 + + division + Tracheophyta + vascular plants + tracheophytes + 846496 + + subdivision + Spermatophytina + spermatophytes + seed plants + 846504 + + class + Magnoliopsida + 18063 + + superorder + Asteranae + 846535 + + order + Solanales + 500033 + + family + Convolvulaceae + morningglories + morning-glories + 30648 + + genus + Evolvulus + dwarf morningglory + dwarf morning-glory + 30843 + + species + Evolvulus sericeus + silky evolvulus + silver dwarf morningglory + silver dwarf morning-glory + 30849 + + + + + + + + + + + + + + kingdom + Plantae + plants + 202422 + + subkingdom + Viridiplantae + green plants + 954898 + + infrakingdom + Streptophyta + land plants + 846494 + + superdivision + Embryophyta + 954900 + + division + Tracheophyta + vascular plants + tracheophytes + 846496 + + subdivision + Spermatophytina + spermatophytes + seed plants + 846504 + + class + Magnoliopsida + 18063 + + superorder + Lilianae + monocots + monocotyledons + 846542 + + order + Dioscoreales + 810114 + + family + Burmanniaceae + 43384 + + genus + Burmannia + bluethread + 43387 + + species + Burmannia capitata + southern bluethread + 43389 + + + + + + + + + + + + + + kingdom + Plantae + plants + 202422 + + subkingdom + Viridiplantae + green plants + 954898 + + infrakingdom + Streptophyta + land plants + 846494 + + superdivision + Embryophyta + 954900 + + division + Tracheophyta + vascular plants + tracheophytes + 846496 + + subdivision + Spermatophytina + spermatophytes + seed plants + 846504 + + class + Magnoliopsida + 18063 + + superorder + Asteranae + 846535 + + order + Asterales + 35419 + + family + Asteraceae + sunflowers + 35420 + + genus + Boltonia + doll's daisy + 36852 + + species + Boltonia diffusa + smallhead doll's daisy + 36855 + + + + + + + + + + + + + + kingdom + Plantae + plants + 202422 + + subkingdom + Viridiplantae + green plants + 954898 + + infrakingdom + Streptophyta + land plants + 846494 + + superdivision + Embryophyta + 954900 + + division + Tracheophyta + vascular plants + tracheophytes + 846496 + + subdivision + Spermatophytina + spermatophytes + seed plants + 846504 + + class + Magnoliopsida + 18063 + + superorder + Lilianae + monocots + monocotyledons + 846542 + + order + Poales + 846620 + + family + Poaceae + 40351 + + genus + Dichanthelium + 41645 + + species + Dichanthelium dichotomum + 41659 + + + + + + + + + + + + + + species + Chiococca parvifolia + pineland milkberry + 34959 + + + kingdom + Plantae + plants + 202422 + + subkingdom + Viridiplantae + green plants + 954898 + + infrakingdom + Streptophyta + land plants + 846494 + + superdivision + Embryophyta + 954900 + + division + Tracheophyta + vascular plants + tracheophytes + 846496 + + subdivision + Spermatophytina + spermatophytes + seed plants + 846504 + + class + Magnoliopsida + 18063 + + superorder + Lilianae + monocots + monocotyledons + 846542 + + order + Poales + 846620 + + family + Cyperaceae + sedges + 39357 + + genus + Carex + sedge species + sedges + sedge + 39369 + + species + Carex gigantea + giant sedge + 39394 + + + + + + + + + + + + + + kingdom + Plantae + plants + 202422 + + subkingdom + Viridiplantae + green plants + 954898 + + infrakingdom + Streptophyta + land plants + 846494 + + superdivision + Embryophyta + 954900 + + division + Tracheophyta + vascular plants + tracheophytes + 846496 + + subdivision + Spermatophytina + spermatophytes + seed plants + 846504 + + class + Magnoliopsida + 18063 + + superorder + Lilianae + monocots + monocotyledons + 846542 + + order + Poales + 846620 + + family + Poaceae + 40351 + + genus + Dichanthelium + 41645 + + species + Dichanthelium commutatum + 41647 + + + + + + + + + + + + + + kingdom + Plantae + plants + 202422 + + subkingdom + Viridiplantae + green plants + 954898 + + infrakingdom + Streptophyta + land plants + 846494 + + superdivision + Embryophyta + 954900 + + division + Tracheophyta + vascular plants + tracheophytes + 846496 + + subdivision + Spermatophytina + spermatophytes + seed plants + 846504 + + class + Magnoliopsida + 18063 + + superorder + Asteranae + 846535 + + order + Asterales + 35419 + + family + Asteraceae + sunflowers + 35420 + + genus + Iva + marsh elder + iva + marshelder + sumpweed + 36024 + + species + Iva microcephala + piedmont marsh elder + 36039 + + + + + + + + + + + + + + kingdom + Plantae + plants + 202422 + + subkingdom + Viridiplantae + green plants + 954898 + + infrakingdom + Streptophyta + land plants + 846494 + + superdivision + Embryophyta + 954900 + + division + Tracheophyta + vascular plants + tracheophytes + 846496 + + subdivision + Spermatophytina + spermatophytes + seed plants + 846504 + + class + Magnoliopsida + 18063 + + superorder + Lilianae + monocots + monocotyledons + 846542 + + order + Poales + 846620 + + family + Cyperaceae + sedges + 39357 + + genus + Schoenus + bogrush + 40300 + + species + Schoenus nigricans + black bogrush + 40302 + + + + + + + + + + + + + + kingdom + Plantae + plants + 202422 + + subkingdom + Viridiplantae + green plants + 954898 + + infrakingdom + Streptophyta + land plants + 846494 + + superdivision + Embryophyta + 954900 + + division + Tracheophyta + vascular plants + tracheophytes + 846496 + + subdivision + Spermatophytina + spermatophytes + seed plants + 846504 + + class + Magnoliopsida + 18063 + + superorder + Asteranae + 846535 + + order + Asterales + 35419 + + family + Asteraceae + sunflowers + 35420 + + genus + Solidago + goldenrod + 36223 + + species + Solidago fistulosa + pine barren goldenrod + 36254 + + + + + + + + + + + + + + kingdom + Plantae + plants + 202422 + + subkingdom + Viridiplantae + green plants + 954898 + + infrakingdom + Streptophyta + land plants + 846494 + + superdivision + Embryophyta + 954900 + + division + Tracheophyta + vascular plants + tracheophytes + 846496 + + subdivision + Spermatophytina + spermatophytes + seed plants + 846504 + + class + Magnoliopsida + 18063 + + superorder + Asteranae + 846535 + + order + Ericales + 23443 + + family + Primulaceae + primroses + 23929 + + genus + Ardisia + marlberry + 23888 + + species + Ardisia escallonioides + island marlberry + 836229 + + + + + + + + + + + + + + kingdom + Plantae + plants + 202422 + + subkingdom + Viridiplantae + green plants + 954898 + + infrakingdom + Streptophyta + land plants + 846494 + + superdivision + Embryophyta + 954900 + + division + Tracheophyta + vascular plants + tracheophytes + 846496 + + subdivision + Spermatophytina + spermatophytes + seed plants + 846504 + + class + Magnoliopsida + 18063 + + superorder + Lilianae + monocots + monocotyledons + 846542 + + order + Poales + 846620 + + family + Poaceae + 40351 + + genus + Paspalidium + 41996 + + species + Paspalidium geminatum + 41997 + + + + + + + + + + + + + + kingdom + Plantae + plants + 202422 + + subkingdom + Viridiplantae + green plants + 954898 + + infrakingdom + Streptophyta + land plants + 846494 + + superdivision + Embryophyta + 954900 + + division + Tracheophyta + vascular plants + tracheophytes + 846496 + + subdivision + Spermatophytina + spermatophytes + seed plants + 846504 + + class + Magnoliopsida + 18063 + + superorder + Lilianae + monocots + monocotyledons + 846542 + + order + Poales + 846620 + + family + Poaceae + 40351 + + genus + Paspalum + 40990 + + species + Paspalum conjugatum + 41015 + + + + + + + + + + + + + + variety + Pteridium aquilinum var. pseudocaudatum + tailed bracken + western brackenfern + 529921 + + + kingdom + Plantae + plants + 202422 + + subkingdom + Viridiplantae + green plants + 954898 + + infrakingdom + Streptophyta + land plants + 846494 + + superdivision + Embryophyta + 954900 + + division + Tracheophyta + vascular plants + tracheophytes + 846496 + + subdivision + Spermatophytina + spermatophytes + seed plants + 846504 + + class + Magnoliopsida + 18063 + + superorder + Asteranae + 846535 + + order + Lamiales + 31632 + + family + Lentibulariaceae + bladderworts + 34432 + + genus + Utricularia + bladderwort + 34443 + + species + Utricularia resupinata + northeastern bladderwort + lavender bladderwort + 34463 + + + + + + + + + + + + + + kingdom + Plantae + plants + 202422 + + subkingdom + Viridiplantae + green plants + 954898 + + infrakingdom + Streptophyta + land plants + 846494 + + superdivision + Embryophyta + 954900 + + division + Tracheophyta + vascular plants + tracheophytes + 846496 + + subdivision + Spermatophytina + spermatophytes + seed plants + 846504 + + class + Magnoliopsida + 18063 + + superorder + Lilianae + monocots + monocotyledons + 846542 + + order + Poales + 846620 + + family + Poaceae + 40351 + + genus + Dichanthelium + 41645 + + species + Dichanthelium strigosum + 502039 + + variety + Dichanthelium strigosum var. glabrescens + 527703 + + + + + + + + + + + + + + + kingdom + Plantae + plants + 202422 + + subkingdom + Viridiplantae + green plants + 954898 + + infrakingdom + Streptophyta + land plants + 846494 + + superdivision + Embryophyta + 954900 + + division + Tracheophyta + vascular plants + tracheophytes + 846496 + + subdivision + Spermatophytina + spermatophytes + seed plants + 846504 + + class + Magnoliopsida + 18063 + + superorder + Magnolianae + 846543 + + order + Piperales + 18217 + + family + Saururaceae + lizard tails + 18219 + + genus + Saururus + 18220 + + species + Saururus cernuus + lizard's tail + 18221 + + + + + + + + + + + + + + kingdom + Plantae + plants + 202422 + + subkingdom + Viridiplantae + green plants + 954898 + + infrakingdom + Streptophyta + land plants + 846494 + + superdivision + Embryophyta + 954900 + + division + Tracheophyta + vascular plants + tracheophytes + 846496 + + subdivision + Spermatophytina + spermatophytes + seed plants + 846504 + + class + Magnoliopsida + 18063 + + superorder + Asteranae + 846535 + + order + Lamiales + 31632 + + family + Plantaginaceae + plantains + 32869 + + genus + Bacopa + water hyssop + waterhyssop + 33037 + + species + Bacopa monnieri + herb-of-grace + coastal waterhyssop + herb of grace + 33038 + + + + + + + + + + + + + + kingdom + Plantae + plants + 202422 + + subkingdom + Viridiplantae + green plants + 954898 + + infrakingdom + Streptophyta + land plants + 846494 + + superdivision + Embryophyta + 954900 + + division + Tracheophyta + vascular plants + tracheophytes + 846496 + + subdivision + Spermatophytina + spermatophytes + seed plants + 846504 + + class + Magnoliopsida + 18063 + + superorder + Rosanae + 846548 + + order + Myrtales + 27072 + + family + Onagraceae + evening primroses + 27279 + + genus + Ludwigia + seedbox + primrose-willow + 27334 + + species + Ludwigia alata + winged primrose-willow + 27338 + + + + + + + + + + + + + + kingdom + Plantae + plants + 202422 + + subkingdom + Viridiplantae + green plants + 954898 + + infrakingdom + Streptophyta + land plants + 846494 + + superdivision + Embryophyta + 954900 + + division + Tracheophyta + vascular plants + tracheophytes + 846496 + + subdivision + Spermatophytina + spermatophytes + seed plants + 846504 + + class + Magnoliopsida + 18063 + + superorder + Caryophyllanae + 846539 + + order + Caryophyllales + 19520 + + family + Phytolaccaceae + pokeweed + 19521 + + genus + Phytolacca + pokeweed + 19522 + + species + Phytolacca americana + pokeweed + inkberry + pigeonberry + pokeberry + common pokeweed + poke + American pokeweed + 19523 + + + + + + + + + + + + + + kingdom + Plantae + plants + 202422 + + subkingdom + Viridiplantae + green plants + 954898 + + infrakingdom + Streptophyta + land plants + 846494 + + superdivision + Embryophyta + 954900 + + division + Tracheophyta + vascular plants + tracheophytes + 846496 + + subdivision + Spermatophytina + spermatophytes + seed plants + 846504 + + class + Magnoliopsida + 18063 + + superorder + Lilianae + monocots + monocotyledons + 846542 + + order + Poales + 846620 + + family + Cyperaceae + sedges + 39357 + + genus + Eleocharis + spikerush + 40010 + + species + Eleocharis baldwinii + Baldwin's spikerush + 40029 + + + + + + + + + + + + + + kingdom + Plantae + plants + 202422 + + subkingdom + Viridiplantae + green plants + 954898 + + infrakingdom + Streptophyta + land plants + 846494 + + superdivision + Embryophyta + 954900 + + division + Tracheophyta + vascular plants + tracheophytes + 846496 + + subdivision + Spermatophytina + spermatophytes + seed plants + 846504 + + class + Magnoliopsida + 18063 + + superorder + Lilianae + monocots + monocotyledons + 846542 + + order + Poales + 846620 + + family + Poaceae + 40351 + + genus + Eragrostis + 40716 + + species + Eragrostis atrovirens + 40718 + + + + + + + + + + + + + + kingdom + Plantae + plants + 202422 + + subkingdom + Viridiplantae + green plants + 954898 + + infrakingdom + Streptophyta + land plants + 846494 + + superdivision + Embryophyta + 954900 + + division + Tracheophyta + vascular plants + tracheophytes + 846496 + + subdivision + Spermatophytina + spermatophytes + seed plants + 846504 + + class + Magnoliopsida + 18063 + + superorder + Rosanae + 846548 + + order + Fabales + 500022 + + family + Fabaceae + peas + legumes + 500059 + + genus + Vigna + cowpea + 27015 + + species + Vigna luteola + hairypod cowpea + Dalrymple vigna + 27016 + + + + + + + + + + + + + + kingdom + Plantae + plants + 202422 + + subkingdom + Viridiplantae + green plants + 954898 + + infrakingdom + Streptophyta + land plants + 846494 + + superdivision + Embryophyta + 954900 + + division + Tracheophyta + vascular plants + tracheophytes + 846496 + + subdivision + Spermatophytina + spermatophytes + seed plants + 846504 + + class + Magnoliopsida + 18063 + + superorder + Asteranae + 846535 + + order + Asterales + 35419 + + family + Asteraceae + sunflowers + 35420 + + genus + Erigeron + fleabane + daisy + 35803 + + species + Erigeron quercifolius + oakleaf fleabane + 35940 + + + + + + + + + + + + + + kingdom + Plantae + plants + 202422 + + subkingdom + Viridiplantae + green plants + 954898 + + infrakingdom + Streptophyta + land plants + 846494 + + superdivision + Embryophyta + 954900 + + division + Tracheophyta + vascular plants + tracheophytes + 846496 + + subdivision + Spermatophytina + spermatophytes + seed plants + 846504 + + class + Magnoliopsida + 18063 + + superorder + Lilianae + monocots + monocotyledons + 846542 + + order + Poales + 846620 + + family + Poaceae + 40351 + + genus + Andropogon + 40450 + + species + Andropogon glomeratus + 40454 + + variety + Andropogon glomeratus var. pumilus + 182522 + + + + + + + + + + + + + + + kingdom + Plantae + plants + 202422 + + subkingdom + Viridiplantae + green plants + 954898 + + infrakingdom + Streptophyta + land plants + 846494 + + superdivision + Embryophyta + 954900 + + division + Tracheophyta + vascular plants + tracheophytes + 846496 + + subdivision + Spermatophytina + spermatophytes + seed plants + 846504 + + class + Magnoliopsida + 18063 + + superorder + Lilianae + monocots + monocotyledons + 846542 + + order + Poales + 846620 + + family + Bromeliaceae + 42330 + + genus + Tillandsia + air plant + airplant + 42359 + + species + Tillandsia usneoides + Spanish moss + 42371 + + + + + + + + + + + + + + kingdom + Plantae + plants + 202422 + + subkingdom + Viridiplantae + green plants + 954898 + + infrakingdom + Streptophyta + land plants + 846494 + + superdivision + Embryophyta + 954900 + + division + Tracheophyta + vascular plants + tracheophytes + 846496 + + subdivision + Spermatophytina + spermatophytes + seed plants + 846504 + + class + Magnoliopsida + 18063 + + superorder + Lilianae + monocots + monocotyledons + 846542 + + order + Poales + 846620 + + family + Cyperaceae + sedges + 39357 + + genus + Rhynchospora + beaksedge + 40144 + + species + Rhynchospora colorata + starrush whitetop + 504777 + + + + + + + + + + + + + + kingdom + Plantae + plants + 202422 + + subkingdom + Viridiplantae + green plants + 954898 + + infrakingdom + Streptophyta + land plants + 846494 + + superdivision + Embryophyta + 954900 + + division + Tracheophyta + vascular plants + tracheophytes + 846496 + + subdivision + Spermatophytina + spermatophytes + seed plants + 846504 + + class + Magnoliopsida + 18063 + + superorder + Lilianae + monocots + monocotyledons + 846542 + + order + Asparagales + 897479 + + family + Orchidaceae + orchids + 43397 + + genus + Oeceoclades + monk orchid + 43653 + + species + Oeceoclades maculata + monk orchid + 43654 + + + + + + + + + + + + + + species + Hedyotis uniflora + 514521 + + + kingdom + Plantae + plants + 202422 + + subkingdom + Viridiplantae + green plants + 954898 + + infrakingdom + Streptophyta + land plants + 846494 + + superdivision + Embryophyta + 954900 + + division + Tracheophyta + vascular plants + tracheophytes + 846496 + + subdivision + Spermatophytina + spermatophytes + seed plants + 846504 + + class + Magnoliopsida + 18063 + + superorder + Asteranae + 846535 + + order + Asterales + 35419 + + family + Campanulaceae + harebells + 34471 + + genus + Lobelia + 34503 + + species + Lobelia glandulosa + glade lobelia + 34522 + + + + + + + + + + + + + + kingdom + Plantae + plants + 202422 + + subkingdom + Viridiplantae + green plants + 954898 + + infrakingdom + Streptophyta + land plants + 846494 + + superdivision + Embryophyta + 954900 + + division + Tracheophyta + vascular plants + tracheophytes + 846496 + + subdivision + Spermatophytina + spermatophytes + seed plants + 846504 + + class + Magnoliopsida + 18063 + + superorder + Asteranae + 846535 + + order + Apiales + 500017 + + family + Apiaceae + 500042 + + genus + Oxypolis + cowbane + 29543 + + species + Oxypolis filiformis + water cowbane + 29547 + + + + + + + + + + + + + + kingdom + Plantae + plants + 202422 + + subkingdom + Viridiplantae + green plants + 954898 + + infrakingdom + Streptophyta + land plants + 846494 + + superdivision + Embryophyta + 954900 + + division + Tracheophyta + vascular plants + tracheophytes + 846496 + + subdivision + Spermatophytina + spermatophytes + seed plants + 846504 + + class + Magnoliopsida + 18063 + + superorder + Asteranae + 846535 + + order + Gentianales + 29910 + + family + Loganiaceae + loganias + 29911 + + genus + Mitreola + hornpod + 500424 + + species + Mitreola petiolata + lax hornpod + 503858 + + + + + + + + + + + + + + kingdom + Plantae + plants + 202422 + + subkingdom + Viridiplantae + green plants + 954898 + + infrakingdom + Streptophyta + land plants + 846494 + + superdivision + Embryophyta + 954900 + + division + Tracheophyta + vascular plants + tracheophytes + 846496 + + subdivision + Spermatophytina + spermatophytes + seed plants + 846504 + + class + Magnoliopsida + 18063 + + superorder + Lilianae + monocots + monocotyledons + 846542 + + order + Alismatales + 38883 + + family + Alismataceae + arrowhead + water-plantain + 38890 + + genus + Sagittaria + arrowhead + 38903 + + species + Sagittaria lancifolia + bulltongue + scythefruit arrowhead + bulltongue arrowhead + 38923 + + + + + + + + + + + + + + kingdom + Plantae + plants + 202422 + + subkingdom + Viridiplantae + green plants + 954898 + + infrakingdom + Streptophyta + land plants + 846494 + + superdivision + Embryophyta + 954900 + + division + Tracheophyta + vascular plants + tracheophytes + 846496 + + subdivision + Spermatophytina + spermatophytes + seed plants + 846504 + + class + Magnoliopsida + 18063 + + superorder + Lilianae + monocots + monocotyledons + 846542 + + order + Zingiberales + 42381 + + family + Marantaceae + arrowroot + prayer-plant + 42420 + + genus + Thalia + alligatorflag + alligator-flag + 42427 + + species + Thalia geniculata + bent alligator-flag + 42429 + + + + + + + + + + + + + + kingdom + Plantae + plants + 202422 + + subkingdom + Viridiplantae + green plants + 954898 + + infrakingdom + Streptophyta + land plants + 846494 + + superdivision + Embryophyta + 954900 + + division + Tracheophyta + vascular plants + tracheophytes + 846496 + + subdivision + Polypodiophytina + 954903 + + class + Polypodiopsida + leptosporangiate ferns + 846528 + + subclass + Polypodiidae + 846532 + + order + Polypodiales + 500029 + + family + Thelypteridaceae + marsh ferns + 500085 + + genus + Thelypteris + marsh ferns + wood ferns + maiden fern + 17250 + + species + Thelypteris palustris + marsh fern + meadow fern + eastern marsh fern + 17251 + + variety + Thelypteris palustris var. pubescens + eastern marsh fern + 530656 + + + + + + + + + + + + + + + kingdom + Plantae + plants + 202422 + + subkingdom + Viridiplantae + green plants + 954898 + + infrakingdom + Streptophyta + land plants + 846494 + + superdivision + Embryophyta + 954900 + + division + Tracheophyta + vascular plants + tracheophytes + 846496 + + subdivision + Spermatophytina + spermatophytes + seed plants + 846504 + + class + Magnoliopsida + 18063 + + superorder + Lilianae + monocots + monocotyledons + 846542 + + order + Commelinales + 39093 + + family + Pontederiaceae + pickerel-weed + 42614 + + genus + Pontederia + pontederia + pickerel-weed + pickerelweed + 42619 + + species + Pontederia cordata + pickerelweed + 42620 + + + + + + + + + + + + + + kingdom + Plantae + plants + 202422 + + subkingdom + Viridiplantae + green plants + 954898 + + infrakingdom + Streptophyta + land plants + 846494 + + superdivision + Embryophyta + 954900 + + division + Tracheophyta + vascular plants + tracheophytes + 846496 + + subdivision + Spermatophytina + spermatophytes + seed plants + 846504 + + class + Magnoliopsida + 18063 + + superorder + Caryophyllanae + 846539 + + order + Caryophyllales + 19520 + + family + Droseraceae + sundews + 22006 + + genus + Drosera + sundew + catch-fly + dew-threads + 22009 + + species + Drosera capillaris + pink sundew + 22011 + + + + + + + + + + + + + + kingdom + Plantae + plants + 202422 + + subkingdom + Viridiplantae + green plants + 954898 + + infrakingdom + Streptophyta + land plants + 846494 + + superdivision + Embryophyta + 954900 + + division + Tracheophyta + vascular plants + tracheophytes + 846496 + + subdivision + Polypodiophytina + 954903 + + class + Polypodiopsida + leptosporangiate ferns + 846528 + + subclass + Polypodiidae + 846532 + + order + Polypodiales + 500029 + + family + Pteridaceae + maidenhair ferns + 500073 + + genus + Vittaria + shoestring ferns + 17730 + + species + Vittaria lineata + shoestring fern + 17731 + + + + + + + + + + + + + + kingdom + Plantae + plants + 202422 + + subkingdom + Viridiplantae + green plants + 954898 + + infrakingdom + Streptophyta + land plants + 846494 + + superdivision + Embryophyta + 954900 + + division + Tracheophyta + vascular plants + tracheophytes + 846496 + + subdivision + Spermatophytina + spermatophytes + seed plants + 846504 + + class + Magnoliopsida + 18063 + + superorder + Asteranae + 846535 + + order + Ericales + 23443 + + family + Ericaceae + heaths + 23463 + + genus + Vaccinium + blueberries + huckleberry + blueberry + 23571 + + species + Vaccinium darrowii + Darrow's blueberry + 23590 + + + + + + + + + + + + + + kingdom + Plantae + plants + 202422 + + subkingdom + Viridiplantae + green plants + 954898 + + infrakingdom + Streptophyta + land plants + 846494 + + superdivision + Embryophyta + 954900 + + division + Tracheophyta + vascular plants + tracheophytes + 846496 + + subdivision + Spermatophytina + spermatophytes + seed plants + 846504 + + class + Magnoliopsida + 18063 + + superorder + Lilianae + monocots + monocotyledons + 846542 + + order + Poales + 846620 + + family + Xyridaceae + Yellow-eyed-grass Family + 39095 + + genus + Xyris + yellow-eyed-grass + yelloweyed grass + 39096 + + + + + + + + + + + + + kingdom + Plantae + plants + 202422 + + subkingdom + Viridiplantae + green plants + 954898 + + infrakingdom + Streptophyta + land plants + 846494 + + superdivision + Embryophyta + 954900 + + division + Tracheophyta + vascular plants + tracheophytes + 846496 + + subdivision + Polypodiophytina + 954903 + + class + Polypodiopsida + leptosporangiate ferns + 846528 + + subclass + Ophioglossidae + 846533 + + order + Psilotales + 17004 + + family + Psilotaceae + 17005 + + genus + Psilotum + whisk fern + 17006 + + species + Psilotum nudum + whisk fern + 17008 + + + + + + + + + + + + + + species + Aster bracei + 193313 + + + kingdom + Plantae + plants + 202422 + + subkingdom + Viridiplantae + green plants + 954898 + + infrakingdom + Streptophyta + land plants + 846494 + + superdivision + Embryophyta + 954900 + + division + Tracheophyta + vascular plants + tracheophytes + 846496 + + subdivision + Spermatophytina + spermatophytes + seed plants + 846504 + + class + Magnoliopsida + 18063 + + superorder + Lilianae + monocots + monocotyledons + 846542 + + order + Asparagales + 897479 + + family + Amaryllidaceae + 182703 + + genus + Hymenocallis + spiderlily + 500341 + + species + Hymenocallis palmeri + alligatorlily + 503112 + + + + + + + + + + + + + + kingdom + Plantae + plants + 202422 + + subkingdom + Viridiplantae + green plants + 954898 + + infrakingdom + Streptophyta + land plants + 846494 + + superdivision + Embryophyta + 954900 + + division + Tracheophyta + vascular plants + tracheophytes + 846496 + + subdivision + Spermatophytina + spermatophytes + seed plants + 846504 + + class + Magnoliopsida + 18063 + + superorder + Caryophyllanae + 846539 + + order + Caryophyllales + 19520 + + family + Cactaceae + cacti + 19685 + + genus + Opuntia + pricklypear + cholla + 19686 + + species + Opuntia humifusa + 19710 + + + + + + + + + + + + + + kingdom + Plantae + plants + 202422 + + subkingdom + Viridiplantae + green plants + 954898 + + infrakingdom + Streptophyta + land plants + 846494 + + superdivision + Embryophyta + 954900 + + division + Tracheophyta + vascular plants + tracheophytes + 846496 + + subdivision + Spermatophytina + spermatophytes + seed plants + 846504 + + class + Magnoliopsida + 18063 + + superorder + Rosanae + 846548 + + order + Malvales + 21500 + + family + Malvaceae + mallows + 21608 + + genus + Melochia + broom-wood + 21547 + + species + Melochia spicata + bretonica peluda + 503747 + + + + + + + + + + + + + + kingdom + Plantae + plants + 202422 + + subkingdom + Viridiplantae + green plants + 954898 + + infrakingdom + Streptophyta + land plants + 846494 + + superdivision + Embryophyta + 954900 + + division + Tracheophyta + vascular plants + tracheophytes + 846496 + + subdivision + Spermatophytina + spermatophytes + seed plants + 846504 + + class + Magnoliopsida + 18063 + + superorder + Asteranae + 846535 + + order + Asterales + 35419 + + family + Asteraceae + sunflowers + 35420 + + genus + Verbesina + crownbeard + 38594 + + species + Verbesina virginica + white crownbeard + 38613 + + + + + + + + + + + + + + kingdom + Plantae + plants + 202422 + + subkingdom + Viridiplantae + green plants + 954898 + + infrakingdom + Streptophyta + land plants + 846494 + + superdivision + Embryophyta + 954900 + + division + Tracheophyta + vascular plants + tracheophytes + 846496 + + subdivision + Spermatophytina + spermatophytes + seed plants + 846504 + + class + Magnoliopsida + 18063 + + superorder + Asteranae + 846535 + + order + Lamiales + 31632 + + family + Lamiaceae + mints + 32251 + + genus + Teucrium + germander + 32351 + + species + Teucrium canadense + wood sage + hairy germander + American germander + Canada germander + 32352 + + + + + + + + + + + + + + kingdom + Plantae + plants + 202422 + + subkingdom + Viridiplantae + green plants + 954898 + + infrakingdom + Streptophyta + land plants + 846494 + + superdivision + Embryophyta + 954900 + + division + Tracheophyta + vascular plants + tracheophytes + 846496 + + subdivision + Spermatophytina + spermatophytes + seed plants + 846504 + + class + Magnoliopsida + 18063 + + superorder + Lilianae + monocots + monocotyledons + 846542 + + order + Poales + 846620 + + family + Poaceae + 40351 + + genus + Paspalum + 40990 + + species + Paspalum caespitosum + 40996 + + + + + + + + + + + + + + kingdom + Plantae + plants + 202422 + + subkingdom + Viridiplantae + green plants + 954898 + + infrakingdom + Streptophyta + land plants + 846494 + + superdivision + Embryophyta + 954900 + + division + Tracheophyta + vascular plants + tracheophytes + 846496 + + subdivision + Spermatophytina + spermatophytes + seed plants + 846504 + + class + Magnoliopsida + 18063 + + superorder + Asteranae + 846535 + + order + Lamiales + 31632 + + family + Acanthaceae + 34350 + + genus + Justicia + water-willow + 34351 + + species + Justicia angusta + pineland water-willow + 182329 + + + + + + + + + + + + + + kingdom + Plantae + plants + 202422 + + subkingdom + Viridiplantae + green plants + 954898 + + infrakingdom + Streptophyta + land plants + 846494 + + superdivision + Embryophyta + 954900 + + division + Tracheophyta + vascular plants + tracheophytes + 846496 + + subdivision + Spermatophytina + spermatophytes + seed plants + 846504 + + class + Magnoliopsida + 18063 + + superorder + Asteranae + 846535 + + order + Lamiales + 31632 + + family + Lentibulariaceae + bladderworts + 34432 + + genus + Utricularia + bladderwort + 34443 + + species + Utricularia subulata + zigzag bladderwort + 34465 + + + + + + + + + + + + + + kingdom + Plantae + plants + 202422 + + subkingdom + Viridiplantae + green plants + 954898 + + infrakingdom + Streptophyta + land plants + 846494 + + superdivision + Embryophyta + 954900 + + division + Tracheophyta + vascular plants + tracheophytes + 846496 + + subdivision + Spermatophytina + spermatophytes + seed plants + 846504 + + class + Magnoliopsida + 18063 + + superorder + Lilianae + monocots + monocotyledons + 846542 + + order + Poales + 846620 + + family + Poaceae + 40351 + + genus + Dichanthelium + 41645 + + species + Dichanthelium laxiflorum + 41661 + + + + + + + + + + + + + + species + Sabatia bartramii + Bartram's rose gentian + 30007 + + + kingdom + Plantae + plants + 202422 + + subkingdom + Viridiplantae + green plants + 954898 + + infrakingdom + Streptophyta + land plants + 846494 + + superdivision + Embryophyta + 954900 + + division + Tracheophyta + vascular plants + tracheophytes + 846496 + + subdivision + Spermatophytina + spermatophytes + seed plants + 846504 + + class + Magnoliopsida + 18063 + + superorder + Lilianae + monocots + monocotyledons + 846542 + + order + Poales + 846620 + + family + Poaceae + 40351 + + genus + Andropogon + 40450 + + species + Andropogon virginicus + 40456 + + variety + Andropogon virginicus var. glaucus + 182525 + + + + + + + + + + + + + + + kingdom + Plantae + plants + 202422 + + subkingdom + Viridiplantae + green plants + 954898 + + infrakingdom + Streptophyta + land plants + 846494 + + superdivision + Embryophyta + 954900 + + division + Tracheophyta + vascular plants + tracheophytes + 846496 + + subdivision + Spermatophytina + spermatophytes + seed plants + 846504 + + class + Magnoliopsida + 18063 + + superorder + Rosanae + 846548 + + order + Malpighiales + 822428 + + family + Phyllanthaceae + 845434 + + genus + Phyllanthus + leaf flower + leafflower + 28364 + + species + Phyllanthus caroliniensis + Carolina leaf-flower + 28368 + + subspecies + Phyllanthus caroliniensis ssp. saxicola + Carolina leaf-flower + 28370 + + + + + + + + + + + + + + + kingdom + Plantae + plants + 202422 + + subkingdom + Viridiplantae + green plants + 954898 + + infrakingdom + Streptophyta + land plants + 846494 + + superdivision + Embryophyta + 954900 + + division + Tracheophyta + vascular plants + tracheophytes + 846496 + + subdivision + Spermatophytina + spermatophytes + seed plants + 846504 + + class + Magnoliopsida + 18063 + + superorder + Lilianae + monocots + monocotyledons + 846542 + + order + Poales + 846620 + + family + Cyperaceae + sedges + 39357 + + genus + Rhynchospora + beaksedge + 40144 + + species + Rhynchospora fascicularis + fascicled beaksedge + 40169 + + + + + + + + + + + + + + kingdom + Plantae + plants + 202422 + + subkingdom + Viridiplantae + green plants + 954898 + + infrakingdom + Streptophyta + land plants + 846494 + + superdivision + Embryophyta + 954900 + + division + Tracheophyta + vascular plants + tracheophytes + 846496 + + subdivision + Spermatophytina + spermatophytes + seed plants + 846504 + + class + Magnoliopsida + 18063 + + superorder + Asteranae + 846535 + + order + Lamiales + 31632 + + family + Lentibulariaceae + bladderworts + 34432 + + genus + Pinguicula + butterwort + 34433 + + species + Pinguicula pumila + small butterwort + 34441 + + + + + + + + + + + + + + kingdom + Plantae + plants + 202422 + + subkingdom + Viridiplantae + green plants + 954898 + + infrakingdom + Streptophyta + land plants + 846494 + + superdivision + Embryophyta + 954900 + + division + Tracheophyta + vascular plants + tracheophytes + 846496 + + subdivision + Spermatophytina + spermatophytes + seed plants + 846504 + + class + Magnoliopsida + 18063 + + superorder + Asteranae + 846535 + + order + Asterales + 35419 + + family + Asteraceae + sunflowers + 35420 + + genus + Eupatorium + thoroughwort + 35977 + + species + Eupatorium mohrii + Mohr's thoroughwort + 502518 + + + + + + + + + + + + + + kingdom + Plantae + plants + 202422 + + subkingdom + Viridiplantae + green plants + 954898 + + infrakingdom + Streptophyta + land plants + 846494 + + superdivision + Embryophyta + 954900 + + division + Tracheophyta + vascular plants + tracheophytes + 846496 + + subdivision + Spermatophytina + spermatophytes + seed plants + 846504 + + class + Magnoliopsida + 18063 + + superorder + Rosanae + 846548 + + order + Fabales + 500022 + + family + Fabaceae + peas + legumes + 500059 + + genus + Galactia + milkpea + 26683 + + species + Galactia volubilis + downy milkpea + 26703 + + + + + + + + + + + + + + kingdom + Plantae + plants + 202422 + + subkingdom + Viridiplantae + green plants + 954898 + + infrakingdom + Streptophyta + land plants + 846494 + + superdivision + Embryophyta + 954900 + + division + Tracheophyta + vascular plants + tracheophytes + 846496 + + subdivision + Spermatophytina + spermatophytes + seed plants + 846504 + + class + Magnoliopsida + 18063 + + superorder + Asteranae + 846535 + + order + Asterales + 35419 + + family + Menyanthaceae + bog beans + 30895 + + genus + Nymphoides + floatingheart + 29995 + + species + Nymphoides aquatica + big floatingheart + 29996 + + + + + + + + + + + + + + kingdom + Plantae + plants + 202422 + + subkingdom + Viridiplantae + green plants + 954898 + + infrakingdom + Streptophyta + land plants + 846494 + + superdivision + Embryophyta + 954900 + + division + Tracheophyta + vascular plants + tracheophytes + 846496 + + subdivision + Spermatophytina + spermatophytes + seed plants + 846504 + + class + Magnoliopsida + 18063 + + superorder + Asteranae + 846535 + + order + Asterales + 35419 + + family + Asteraceae + sunflowers + 35420 + + genus + Eupatorium + thoroughwort + 35977 + + species + Eupatorium capillifolium + dogfennel + 35978 + + + + + + + + + + + + + + kingdom + Plantae + plants + 202422 + + subkingdom + Viridiplantae + green plants + 954898 + + infrakingdom + Streptophyta + land plants + 846494 + + superdivision + Embryophyta + 954900 + + division + Tracheophyta + vascular plants + tracheophytes + 846496 + + subdivision + Spermatophytina + spermatophytes + seed plants + 846504 + + class + Magnoliopsida + 18063 + + superorder + Rosanae + 846548 + + order + Fabales + 500022 + + family + Fabaceae + peas + legumes + 500059 + + genus + Erythrina + coraltrees + 26675 + + species + Erythrina herbacea + redcardinal + eastern coralbean + 26678 + + + + + + + + + + + + + + species + Polygala grandiflora + showy milkwort + 29336 + + + kingdom + Plantae + plants + 202422 + + subkingdom + Viridiplantae + green plants + 954898 + + infrakingdom + Streptophyta + land plants + 846494 + + superdivision + Embryophyta + 954900 + + division + Tracheophyta + vascular plants + tracheophytes + 846496 + + subdivision + Spermatophytina + spermatophytes + seed plants + 846504 + + class + Magnoliopsida + 18063 + + superorder + Lilianae + monocots + monocotyledons + 846542 + + order + Poales + 846620 + + family + Cyperaceae + sedges + 39357 + + genus + Scleria + nutrush + 40303 + + species + Scleria ciliata + fringed nutrush + 40305 + + + + + + + + + + + + + + kingdom + Plantae + plants + 202422 + + subkingdom + Viridiplantae + green plants + 954898 + + infrakingdom + Streptophyta + land plants + 846494 + + superdivision + Embryophyta + 954900 + + division + Tracheophyta + vascular plants + tracheophytes + 846496 + + subdivision + Spermatophytina + spermatophytes + seed plants + 846504 + + class + Magnoliopsida + 18063 + + superorder + Asteranae + 846535 + + order + Gentianales + 29910 + + family + Gentianaceae + gentians + 29962 + + genus + Sabatia + rose gentian + 30000 + + species + Sabatia stellaris + rose of Plymouth + 30004 + + + + + + + + + + + + + + kingdom + Plantae + plants + 202422 + + subkingdom + Viridiplantae + green plants + 954898 + + infrakingdom + Streptophyta + land plants + 846494 + + superdivision + Embryophyta + 954900 + + division + Tracheophyta + vascular plants + tracheophytes + 846496 + + subdivision + Spermatophytina + spermatophytes + seed plants + 846504 + + class + Magnoliopsida + 18063 + + superorder + Asteranae + 846535 + + order + Asterales + 35419 + + family + Asteraceae + sunflowers + 35420 + + genus + Baccharis + baccharis + 35681 + + species + Baccharis halimifolia + eastern baccharis + 35682 + + + + + + + + + + + + + + kingdom + Plantae + plants + 202422 + + subkingdom + Viridiplantae + green plants + 954898 + + infrakingdom + Streptophyta + land plants + 846494 + + superdivision + Embryophyta + 954900 + + division + Tracheophyta + vascular plants + tracheophytes + 846496 + + subdivision + Spermatophytina + spermatophytes + seed plants + 846504 + + class + Magnoliopsida + 18063 + + superorder + Asteranae + 846535 + + order + Lamiales + 31632 + + family + Linderniaceae + 834076 + + genus + Lindernia + false pimpernel + 33220 + + species + Lindernia grandiflora + savannah false pimpernel + 33224 + + + + + + + + + + + + + + kingdom + Plantae + plants + 202422 + + subkingdom + Viridiplantae + green plants + 954898 + + infrakingdom + Streptophyta + land plants + 846494 + + superdivision + Embryophyta + 954900 + + division + Tracheophyta + vascular plants + tracheophytes + 846496 + + subdivision + Spermatophytina + spermatophytes + seed plants + 846504 + + class + Magnoliopsida + 18063 + + superorder + Asteranae + 846535 + + order + Lamiales + 31632 + + family + Lentibulariaceae + bladderworts + 34432 + + genus + Utricularia + bladderwort + 34443 + + species + Utricularia cornuta + horned bladderwort + 34447 + + + + + + + + + + + + + + kingdom + Plantae + plants + 202422 + + subkingdom + Viridiplantae + green plants + 954898 + + infrakingdom + Streptophyta + land plants + 846494 + + superdivision + Embryophyta + 954900 + + division + Tracheophyta + vascular plants + tracheophytes + 846496 + + subdivision + Spermatophytina + spermatophytes + seed plants + 846504 + + class + Magnoliopsida + 18063 + + superorder + Asteranae + 846535 + + order + Lamiales + 31632 + + family + Lentibulariaceae + bladderworts + 34432 + + genus + Utricularia + bladderwort + 34443 + + species + Utricularia foliosa + leafy bladderwort + 34450 + + + + + + + + + + + + + + kingdom + Plantae + plants + 202422 + + subkingdom + Viridiplantae + green plants + 954898 + + infrakingdom + Streptophyta + land plants + 846494 + + superdivision + Embryophyta + 954900 + + division + Tracheophyta + vascular plants + tracheophytes + 846496 + + subdivision + Spermatophytina + spermatophytes + seed plants + 846504 + + class + Magnoliopsida + 18063 + + superorder + Lilianae + monocots + monocotyledons + 846542 + + order + Poales + 846620 + + family + Cyperaceae + sedges + 39357 + + genus + Scleria + nutrush + 40303 + + species + Scleria verticillata + low nutrush + 40319 + + + + + + + + + + + + + + kingdom + Plantae + plants + 202422 + + subkingdom + Viridiplantae + green plants + 954898 + + infrakingdom + Streptophyta + land plants + 846494 + + superdivision + Embryophyta + 954900 + + division + Tracheophyta + vascular plants + tracheophytes + 846496 + + subdivision + Spermatophytina + spermatophytes + seed plants + 846504 + + class + Magnoliopsida + 18063 + + superorder + Asteranae + 846535 + + order + Gentianales + 29910 + + family + Rubiaceae + madders + 34784 + + genus + Psychotria + wild coffee + 35090 + + species + Psychotria nervosa + Seminole balsamo + 35092 + + + + + + + + + + + + + + kingdom + Plantae + plants + 202422 + + subkingdom + Viridiplantae + green plants + 954898 + + infrakingdom + Streptophyta + land plants + 846494 + + superdivision + Embryophyta + 954900 + + division + Tracheophyta + vascular plants + tracheophytes + 846496 + + subdivision + Spermatophytina + spermatophytes + seed plants + 846504 + + class + Magnoliopsida + 18063 + + superorder + Lilianae + monocots + monocotyledons + 846542 + + order + Poales + 846620 + + family + Poaceae + 40351 + + genus + Setaria + 41229 + + species + Setaria parviflora + 505191 + + + + + + + + + + + + + + kingdom + Plantae + plants + 202422 + + subkingdom + Viridiplantae + green plants + 954898 + + infrakingdom + Streptophyta + land plants + 846494 + + superdivision + Embryophyta + 954900 + + division + Tracheophyta + vascular plants + tracheophytes + 846496 + + subdivision + Spermatophytina + spermatophytes + seed plants + 846504 + + class + Magnoliopsida + 18063 + + superorder + Lilianae + monocots + monocotyledons + 846542 + + order + Poales + 846620 + + family + Cyperaceae + sedges + 39357 + + genus + Eleocharis + spikerush + 40010 + + species + Eleocharis interstincta + knotted spikerush + 40048 + + + + + + + + + + + + + + kingdom + Plantae + plants + 202422 + + subkingdom + Viridiplantae + green plants + 954898 + + infrakingdom + Streptophyta + land plants + 846494 + + superdivision + Embryophyta + 954900 + + division + Tracheophyta + vascular plants + tracheophytes + 846496 + + subdivision + Spermatophytina + spermatophytes + seed plants + 846504 + + class + Magnoliopsida + 18063 + + superorder + Asteranae + 846535 + + order + Aquifoliales + 835356 + + family + Aquifoliaceae + hollies + 27979 + + genus + Ilex + hollies + holly + 27980 + + species + Ilex cassine + dahoon + 27992 + + + + + + + + + + + + + + kingdom + Plantae + plants + 202422 + + subkingdom + Viridiplantae + green plants + 954898 + + infrakingdom + Streptophyta + land plants + 846494 + + superdivision + Embryophyta + 954900 + + division + Tracheophyta + vascular plants + tracheophytes + 846496 + + subdivision + Spermatophytina + spermatophytes + seed plants + 846504 + + class + Magnoliopsida + 18063 + + superorder + Asteranae + 846535 + + order + Lamiales + 31632 + + family + Plantaginaceae + plantains + 32869 + + genus + Limnophila + marshweed + 33634 + + species + Limnophila sessiliflora + ambulia + Asian marshweed + 33635 + + + + + + + + + + + + + + kingdom + Plantae + plants + 202422 + + subkingdom + Viridiplantae + green plants + 954898 + + infrakingdom + Streptophyta + land plants + 846494 + + superdivision + Embryophyta + 954900 + + division + Tracheophyta + vascular plants + tracheophytes + 846496 + + subdivision + Spermatophytina + spermatophytes + seed plants + 846504 + + class + Magnoliopsida + 18063 + + superorder + Lilianae + monocots + monocotyledons + 846542 + + order + Poales + 846620 + + family + Xyridaceae + Yellow-eyed-grass Family + 39095 + + genus + Xyris + yellow-eyed-grass + yelloweyed grass + 39096 + + species + Xyris difformis + southern yelloweyed grass + bog yelloweyed grass + 39102 + + variety + Xyris difformis var. floridana + Florida yelloweyed grass + 530882 + + + + + + + + + + + + + + + kingdom + Plantae + plants + 202422 + + subkingdom + Viridiplantae + green plants + 954898 + + infrakingdom + Streptophyta + land plants + 846494 + + superdivision + Embryophyta + 954900 + + division + Tracheophyta + vascular plants + tracheophytes + 846496 + + subdivision + Spermatophytina + spermatophytes + seed plants + 846504 + + class + Magnoliopsida + 18063 + + superorder + Lilianae + monocots + monocotyledons + 846542 + + order + Asparagales + 897479 + + family + Orchidaceae + orchids + 43397 + + genus + Polystachya + yellowspike orchid + 43683 + + species + Polystachya concreta + greater yellowspike orchid + 165838 + + + + + + + + + + + + + + kingdom + Plantae + plants + 202422 + + subkingdom + Viridiplantae + green plants + 954898 + + infrakingdom + Streptophyta + land plants + 846494 + + superdivision + Embryophyta + 954900 + + division + Tracheophyta + vascular plants + tracheophytes + 846496 + + subdivision + Spermatophytina + spermatophytes + seed plants + 846504 + + class + Magnoliopsida + 18063 + + superorder + Lilianae + monocots + monocotyledons + 846542 + + order + Poales + 846620 + + family + Poaceae + 40351 + + genus + Axonopus + 41463 + + species + Axonopus furcatus + 41466 + + + + + + + + + + + + + + kingdom + Plantae + plants + 202422 + + subkingdom + Viridiplantae + green plants + 954898 + + infrakingdom + Streptophyta + land plants + 846494 + + superdivision + Embryophyta + 954900 + + division + Tracheophyta + vascular plants + tracheophytes + 846496 + + subdivision + Spermatophytina + spermatophytes + seed plants + 846504 + + class + Magnoliopsida + 18063 + + superorder + Rosanae + 846548 + + order + Fagales + 19273 + + family + Fagaceae + 19275 + + genus + Quercus + oak + 19276 + + species + Quercus minima + dwarf live oak + 19377 + + + + + + + + + + + + + + kingdom + Plantae + plants + 202422 + + subkingdom + Viridiplantae + green plants + 954898 + + infrakingdom + Streptophyta + land plants + 846494 + + superdivision + Embryophyta + 954900 + + division + Tracheophyta + vascular plants + tracheophytes + 846496 + + subdivision + Spermatophytina + spermatophytes + seed plants + 846504 + + class + Magnoliopsida + 18063 + + superorder + Asteranae + 846535 + + order + Lamiales + 31632 + + family + Plantaginaceae + plantains + 32869 + + genus + Mecardonia + 33644 + + species + Mecardonia acuminata + axilflower + 33645 + + variety + Mecardonia acuminata var. peninsularis + axilflower + 529113 + + + + + + + + + + + + + + + kingdom + Plantae + plants + 202422 + + subkingdom + Viridiplantae + green plants + 954898 + + infrakingdom + Streptophyta + land plants + 846494 + + superdivision + Embryophyta + 954900 + + division + Tracheophyta + vascular plants + tracheophytes + 846496 + + subdivision + Spermatophytina + spermatophytes + seed plants + 846504 + + class + Magnoliopsida + 18063 + + superorder + Lilianae + monocots + monocotyledons + 846542 + + order + Poales + 846620 + + family + Cyperaceae + sedges + 39357 + + genus + Rhynchospora + beaksedge + 40144 + + species + Rhynchospora odorata + fragrant beaksedge + 40190 + + + + + + + + + + + + + + species + Harrisella porrecta + needleroot airplant orchid + 43602 + + + kingdom + Plantae + plants + 202422 + + subkingdom + Viridiplantae + green plants + 954898 + + infrakingdom + Streptophyta + land plants + 846494 + + superdivision + Embryophyta + 954900 + + division + Tracheophyta + vascular plants + tracheophytes + 846496 + + subdivision + Spermatophytina + spermatophytes + seed plants + 846504 + + class + Magnoliopsida + 18063 + + superorder + Asteranae + 846535 + + order + Lamiales + 31632 + + family + Plantaginaceae + plantains + 32869 + + genus + Scoparia + licorice weed + 34028 + + species + Scoparia dulcis + licorice weed + 34029 + + + + + + + + + + + + + + kingdom + Plantae + plants + 202422 + + subkingdom + Viridiplantae + green plants + 954898 + + infrakingdom + Streptophyta + land plants + 846494 + + superdivision + Embryophyta + 954900 + + division + Tracheophyta + vascular plants + tracheophytes + 846496 + + subdivision + Spermatophytina + spermatophytes + seed plants + 846504 + + class + Magnoliopsida + 18063 + + superorder + Lilianae + monocots + monocotyledons + 846542 + + order + Poales + 846620 + + family + Poaceae + 40351 + + genus + Phragmites + 41071 + + species + Phragmites australis + 41072 + + + + + + + + + + + + + + kingdom + Plantae + plants + 202422 + + subkingdom + Viridiplantae + green plants + 954898 + + infrakingdom + Streptophyta + land plants + 846494 + + superdivision + Embryophyta + 954900 + + division + Tracheophyta + vascular plants + tracheophytes + 846496 + + subdivision + Spermatophytina + spermatophytes + seed plants + 846504 + + class + Magnoliopsida + 18063 + + superorder + Lilianae + monocots + monocotyledons + 846542 + + order + Poales + 846620 + + family + Poaceae + 40351 + + genus + Andropogon + 40450 + + + + + + + + + + + + + kingdom + Plantae + plants + 202422 + + subkingdom + Viridiplantae + green plants + 954898 + + infrakingdom + Streptophyta + land plants + 846494 + + superdivision + Embryophyta + 954900 + + division + Tracheophyta + vascular plants + tracheophytes + 846496 + + subdivision + Spermatophytina + spermatophytes + seed plants + 846504 + + class + Magnoliopsida + 18063 + + superorder + Rosanae + 846548 + + order + Sapindales + 28643 + + family + Anacardiaceae + cashews + 28771 + + genus + Rhus + sumac + 28772 + + species + Rhus copallinum + flameleaf sumac + winged sumac + shining sumac + 504754 + + + + + + + + + + + + + + kingdom + Plantae + plants + 202422 + + subkingdom + Viridiplantae + green plants + 954898 + + infrakingdom + Streptophyta + land plants + 846494 + + superdivision + Embryophyta + 954900 + + division + Tracheophyta + vascular plants + tracheophytes + 846496 + + subdivision + Spermatophytina + spermatophytes + seed plants + 846504 + + class + Magnoliopsida + 18063 + + superorder + Asteranae + 846535 + + order + Asterales + 35419 + + family + Asteraceae + sunflowers + 35420 + + genus + Vernonia + ironweed + 38615 + + species + Vernonia blodgettii + Florida ironweed + 38625 + + + + + + + + + + + + + + + + complete + + + + Judd + Patterson + + NPS + judd_patterson@nps.gov + https://orcid.org/0000-0002-0951-7917 + + + National Park Service +
+ 1201 Oakridge Drive, Suite 150 + Fort Collins + CO + 80525 + USA +
+ irma@nps.gov + http://www.nps.gov + https://ror.org/044zqqy65 +
+ + + + "Citation: Bradley KA, Woodmansee SW, Sadle JL, Gann GD. 2005. A quantitative plant inventory of the Big Cypress National Preserve. The Institute for Regional Conservation. Homestead, Florida. Available at: https://irma.nps.gov/DataStore/Reference/Profile/646691"&#13; + + + + + + Example Intercept Observations + Paired down, example species observation table from plants found on intercept points. + + Mini_BICY_Veg_Intercept_Cleaned.csv + 191995 + d2f8fe468e393c41c6dccf30bab1a91a + + + 1 + \n + column + + , + + + + + + https://irma.nps.gov/DataStore/Reference/Profile/2295086 + + + + + + scientificName + The full scientific name for the observed species according to the Guide to the Vascular Plants of Florida, Second Edition published by Richard P. Wunderlin and Bruce F. Hansen in 2003. University Press of Florida. + string + + + + + The full scientific name for the observed species according to the Guide to the Vascular Plants of Florida, Second Edition published by Richard P. Wunderlin and Bruce F. Hansen in 2003. University Press of Florida. + + + + + + + vernacularName + The common name in English. + string + + + + + The common name in English. + + + + + + + namePublishedIn + A reference for the publication in which the scientificName was originally established. + string + + + + + A reference for the publication in which the scientificName was originally established. + + + + + + + custom_TaxonAsRecorded + The species code used by the researchers who conducted the study. + string + + + + + The species code used by the researchers who conducted the study. + + + + + + + basisOfRecord + The specific nature of the data record. + string + + + + + The specific nature of the data record. + + + + + + + eventDate + The date during which the species occurrence was observed. + date + + + YYYY-MM-DD + + + + + locality + The specific description of the place where the study occurred. + string + + + + + The specific description of the place where the study occurred. + + + + + + + locationID + An identifier for the set of transects. + string + + + + + An identifier for the set of transects. + + + + + + + fieldNotes + Notes taken in the field about the study. + string + + + + + Notes taken in the field about the study. + + + + + + + custom_TransectStartLatitude + The geographic latitude (in decimal degrees, using the spatial reference system WGS84) of the beginning of the transect on which the species occurrence was observed. + float + + + + degree + + + real + + 25.6988 + 26.2539 + + + + + + + custom_TransectStartLongitude + The geographic longitude (in decimal degrees, using the spatial reference system WGS84) of the beginning of the transect on which the species occurrence was observed. + float + + + + degree + + + real + + -81.3738 + -80.8414 + + + + + + + custom_TransectEndLatitude + The geographic latitude (in decimal degrees, using the spatial reference system WGS84) of the end of the transect on which the species occurrence was observed. + float + + + + degree + + + real + + 25.6966 + 26.2547 + + + + + + + custom_TransectEndLongitude + The geographic longitude (in decimal degrees, using the spatial reference system WGS84) of the end of the transect on which the species occurrence was observed. + float + + + + degree + + + real + + -81.3763 + -80.8422 + + + + + + + geodeticDatum + The ellipsoid, geodetic datum, or spatial reference system (SRS) upon which the geographic coordinates given in decimalLatitude and decimalLongitude as based. + string + + + + + The ellipsoid, geodetic datum, or spatial reference system (SRS) upon which the geographic coordinates given in decimalLatitude and decimalLongitude as based. + + + + + + + coordinateUncertaintyInMeters + The horizontal distance (in meters) from the given decimalLatitude and decimalLongitude describing the smallest circle containing the whole of the Location. + float + + + + meter + + + natural + + 314 + 314 + + + + + + + locationRemarks + Comments or notes about the Location. + string + + + + + Comments or notes about the Location. + + + + + + + verbatimCoordinates + The verbatim original spatial coordinates of the transects in UTM's. + string + + + + + The verbatim original spatial coordinates of the transects in UTM's. + + + + + + + verbatimCoordinateSystem + The coordinate format for the verbatimCoordinates of the transects. + string + + + + + The coordinate format for the verbatimCoordinates of the transects. + + + + + + + verbatimSRS + The ellipsoid, geodetic datum, or spatial reference system (SRS) upon which coordinates given in verbatimCoordinates are based. + string + + + + + The ellipsoid, geodetic datum, or spatial reference system (SRS) upon which coordinates given in verbatimCoordinates are based. + + + + + + + individualCount + The number of individuals present at the time of the Occurrence. + float + + + + dimensionless + + + natural + + 1 + 1 + + + + + + + custom_CoordinateBearing + The coordinate bearing of the transects in degrees. + float + + + + degree + + + whole + + 0 + 355 + + + + + + + custom_Transect + An identifier for the set of transects. + float + + + + dimensionless + + + natural + + 129 + 613 + + + + + + + custom_InterceptPoint + An identifier for the intercept point lying on the transect where the species occurrence was observed. + float + + + + dimensionless + + + natural + + 1 + 100 + + + + + + + decimalLongitude + The geographic longitude (in decimal degrees, using the spatial reference system WGS84) of the intercept point on which the species occurrence was observed. + float + + + + degree + + + real + + -81.3753211893717 + -80.841811227046 + + + + + + + decimalLatitude + The geographic latitude (in decimal degrees, using the spatial reference system WGS84) of the intercept point on which the species occurrence was observed. + float + + + + degree + + + real + + 25.6982486534736 + 26.2548346243243 + + + + + + + taxonRank + The taxonomic rank of the most specific name in the scientificName. + string + + + + + The taxonomic rank of the most specific name in the scientificName. + + + + + + + coordinate_flag + A data quality flag indicating uncertainty regarding geographic coverage. + string + + + + + A data quality flag indicating uncertainty regarding geographic coverage. + + + + + + + taxonomic_flag + A data quality flag indicating uncertainty regarding taxonomic coverage. + string + + + + + A data quality flag indicating uncertainty regarding taxonomic coverage. + + + + + + + eventDate_flag + A data quality flag indicating uncertainty regarding temporal coverage. + string + + + + + A data quality flag indicating uncertainty regarding temporal coverage. + + + + + + + 500 + + + Example Transect Observations + Paired down, example species observation table from plants found on transects. + + Mini_BICY_Veg_Transect_Cleaned.csv + 172831 + 1121726158224578eb5a1125f5c35624 + + + 1 + \n + column + + , + + + + + + https://irma.nps.gov/DataStore/Reference/Profile/2295086 + + + + + + scientificName + The full scientific name for the observed species according to the Guide to the Vascular Plants of Florida, Second Edition published by Richard P. Wunderlin and Bruce F. Hansen in 2003. University Press of Florida. + string + + + + + The full scientific name for the observed species according to the Guide to the Vascular Plants of Florida, Second Edition published by Richard P. Wunderlin and Bruce F. Hansen in 2003. University Press of Florida. + + + + + + + vernacularName + The common name in English. + string + + + + + The common name in English. + + + + + + + namePublishedIn + A reference for the publication in which the scientificName was originally established. + string + + + + + A reference for the publication in which the scientificName was originally established. + + + + + + + custom_TaxonAsRecorded + The species code used by the researchers who conducted the study. + string + + + + + The species code used by the researchers who conducted the study. + + + + + + + basisOfRecord + The specific nature of the data record. + string + + + + + The specific nature of the data record. + + + + + + + eventDate + The date during which the species occurrence was observed. + date + + + YYYY-MM-DD + + + + + locality + The specific description of the place where the study occurred. + string + + + + + The specific description of the place where the study occurred. + + + + + + + locationID + An identifier for the set of transects. + float + + + + dimensionless + + + natural + + 128 + 746 + + + + + + + fieldNotes + Notes taken in the field about the study. + string + + + + + Notes taken in the field about the study. + + + + + + + decimalLatitude + The geographic latitude (in decimal degrees, using the spatial reference system WGS84) of the beginning of the transect on which the species occurrence was observed. + float + + + + degree + + + real + + 25.6363 + 26.2547 + + + + + + + decimalLongitude + The geographic longitude (in decimal degrees, using the spatial reference system WGS84) of the beginning of the transect on which the species occurrence was observed. + float + + + + degree + + + real + + -81.353 + -80.8441 + + + + + + + custom_TransectEndLatitude + The geographic latitude (in decimal degrees, using the spatial reference system WGS84) of the end of the transect on which the species occurrence was observed. + float + + + + degree + + + real + + 25.638 + 26.255 + + + + + + + custom_TransectEndLongitude + The geographic longitude (in decimal degrees, using the spatial reference system WGS84) of the end of the transect on which the species occurrence was observed. + float + + + + degree + + + real + + -81.3513 + -80.8422 + + + + + + + geodeticDatum + The ellipsoid, geodetic datum, or spatial reference system (SRS) upon which the geographic coordinates given in decimalLatitude and decimalLongitude as based. + string + + + + + The ellipsoid, geodetic datum, or spatial reference system (SRS) upon which the geographic coordinates given in decimalLatitude and decimalLongitude as based. + + + + + + + coordinateUncertaintyInMeters + The horizontal distance (in meters) from the given decimalLatitude and decimalLongitude describing the smallest circle containing the whole of the Location. + float + + + + meter + + + natural + + 314 + 314 + + + + + + + locationRemarks + Comments or notes about the Location. + string + + + + + Comments or notes about the Location. + + + + + + + verbatimCoordinates + The verbatim original spatial coordinates of the transects in UTM's. + string + + + + + The verbatim original spatial coordinates of the transects in UTM's. + + + + + + + verbatimCoordinateSystem + The coordinate format for the verbatimCoordinates of the transects. + string + + + + + The coordinate format for the verbatimCoordinates of the transects. + + + + + + + verbatimSRS + The ellipsoid, geodetic datum, or spatial reference system (SRS) upon which coordinates given in verbatimCoordinates are based. + string + + + + + The ellipsoid, geodetic datum, or spatial reference system (SRS) upon which coordinates given in verbatimCoordinates are based. + + + + + + + individualCount + The number of individuals present at the time of the Occurrence. + float + + + + dimensionless + + + natural + + 1 + 1 + + + + + + + custom_CoordinateBearing + The coordinate bearing of the transects in degrees. + float + + + + degree + + + whole + + 0 + 355 + + + + + + + custom_Transect + An identifier for the set of transects. + float + + + + dimensionless + + + natural + + 128 + 746 + + + + + + + taxonRank + The taxonomic rank of the most specific name in the scientificName. + string + + + + + The taxonomic rank of the most specific name in the scientificName. + + + + + + + coordinate_flag + A data quality flag indicating uncertainty regarding geographic coverage. + string + + + + + A data quality flag indicating uncertainty regarding geographic coverage. + + + + + + + taxonomic_flag + A data quality flag indicating uncertainty regarding taxonomic coverage. + string + + + + + A data quality flag indicating uncertainty regarding taxonomic coverage. + + + + + + + eventDate_flag + A data quality flag indicating uncertainty regarding temporal coverage. + string + + + + + A data quality flag indicating uncertainty regarding temporal coverage. + + + + + + + 500 + + + Example Geographic Coverage + Aggregated coordinates from the observation tables. Used for metadata coverage, NOT intended for analysis or mapping. + + Mini_BICY_Veg_Geography.csv + 31549 + 9c3c24a106e50fca2231b63c4dba12cf + + + 1 + \n + column + + , + + + + + + https://irma.nps.gov/DataStore/Reference/Profile/2295086 + + + + + + decimalLongitude + The geographic longitude (in decimal degrees, using the spatial reference system WGS84) of the beginning of the transect on which the species occurrence was observed. + float + + + + degree + + + real + + -81.3757451273932 + -80.8414 + + + + + + + decimalLatitude + The geographic latitude (in decimal degrees, using the spatial reference system WGS84) of the beginning of the transect on which the species occurrence was observed. + float + + + + degree + + + real + + 25.6363 + 26.2547 + + + + + + + parkID + The specific description of the place where the study occurred. + string + + + + + The specific description of the place where the study occurred. + + + + + + + 1000 + + + DRR: https://doi.org/10.36967/2294558 + DRR: Quantitative Plant Inventory of Big Cypress National Preserve + + NPS + + + 2294558 + + +
+ + + + NPS + TRUE + + + + + + + EMLassemblyline + 3.5.4 + + + + + + + EMLeditor + 0.0.1.1 + + + + + + PUBVER + + +
diff --git a/inst/rmarkdown/templates/nps-data-release-report-template/skeleton/BICY_Example/Mini_BICY_Veg_Geography.csv b/inst/rmarkdown/templates/nps-data-release-report-template/skeleton/BICY_Example/Mini_BICY_Veg_Geography.csv new file mode 100644 index 0000000..4f2785c --- /dev/null +++ b/inst/rmarkdown/templates/nps-data-release-report-template/skeleton/BICY_Example/Mini_BICY_Veg_Geography.csv @@ -0,0 +1,1001 @@ +decimalLongitude,decimalLatitude,parkID +-80.97776918830147,25.78989998667144,BICY +-81.02640878567064,25.869433786410116,BICY +-81.10148574559359,25.81876674132327,BICY +-81.15519939435676,26.01966196606359,BICY +-81.0341,26.24095795407766,BICY +-81.06637607888453,26.224199992422047,BICY +-81.34272778849552,26.0498725707323,BICY +-80.9316740344725,26.204244442916583,BICY +-80.90921910046579,25.825514505250354,BICY +-81.00229270442178,25.85563648097944,BICY +-81.03761376750028,25.77314428426216,BICY +-81.25729625713711,26.169601703324048,BICY +-81.03198690324248,25.820544287863715,BICY +-81.33518649599183,25.972046836345577,BICY +-80.91399956150791,26.18137601867971,BICY +-81.34325211965287,26.05001576723129,BICY +-80.96913254006661,25.706277629813822,BICY +-81.03587956860889,26.252952265654304,BICY +-81.02298576280829,25.825525392229217,BICY +-81.0428,25.760763716629725,BICY +-80.90971571421059,25.82589164086822,BICY +-81.1556739081313,26.018919354014972,BICY +-81.0189476420472,25.959099991728863,BICY +-81.0302,25.96324822311091,BICY +-81.34685626546391,25.86541610366107,BICY +-80.96720285734604,25.707143651844007,BICY +-81.082251139649415,25.814478981621118,BICY +-81.341173264778,26.045029538848816,BICY +-80.896952677597,26.01388447773325,BICY +-80.9083393178566,26.004826943310178,BICY +-81.35020612326586,25.951494451631547,BICY +-81.25506564444507,26.16758888397366,BICY +-81.21655687333919,26.19714444660695,BICY +-81.2369,26.179334424337203,BICY +-81.2530663130332,26.249097395898882,BICY +-81.01595435942323,25.838072085375583,BICY +-81.2265,26.2494389625475,BICY +-81.08509408745203,26.218049637164295,BICY +-81.17518266477126,25.881343254938653,BICY +-80.94181602446716,26.17906780247105,BICY +-80.88492380497705,25.80553553991766,BICY +-81.03155006060328,25.81975163219544,BICY +-81.10292307765535,25.86299999766673,BICY +-81.27821433664504,26.163976392654273,BICY +-81.06417960034935,26.205777915024452,BICY +-81.04623528945983,26.25264309240912,BICY +-81.04419779489125,25.707330477495013,BICY +-81.00633255128012,25.75624890422693,BICY +-81.0063218578107,26.17896792884389,BICY +-80.88617871122761,26.191788227147086,BICY +-81.2971,25.944414210253708,BICY +-81.04304877222211,25.815499999307264,BICY +-80.99308201086562,25.860360946756188,BICY +-81.09228309615268,26.180233335195503,BICY +-81.0498,26.216148214409028,BICY +-81.33418008831023,26.153199033274618,BICY +-81.3522655653241,25.8675836207437,BICY +-81.2265,26.248536368836863,BICY +-81.13718907399281,25.863675501945455,BICY +-81.09456030854723,26.215504853505628,BICY +-81.2265,26.251379538641306,BICY +-81.08557571613514,26.17899998503272,BICY +-81.27687487150511,26.17048373547479,BICY +-81.154486901717,26.02329133249349,BICY +-81.30595024073045,26.18984015593357,BICY +-80.9356645278652,25.74783870883999,BICY +-80.93681194743668,26.24861846007464,BICY +-81.15517347438731,26.024114101664427,BICY +-80.8441,25.92377525826558,BICY +-81.25088336994861,25.86360528571452,BICY +-81.05059968302581,26.241165965984084,BICY +-81.2548,26.24869123918479,BICY +-81.34384925910435,26.044890613646448,BICY +-80.8868,26.181516877463924,BICY +-80.93337485216344,26.203082906834013,BICY +-81.0821,25.816340692943694,BICY +-80.91651638013427,25.76419932842486,BICY +-80.93401731534485,25.801088893637264,BICY +-81.07617734503953,25.783937365862343,BICY +-81.2168261617484,26.198522222792864,BICY +-81.26516091887683,26.169399999494892,BICY +-81.2548,26.24866867434106,BICY +-81.343,26.18577434959173,BICY +-80.908645001946,25.827374561520745,BICY +-81.23827933462675,26.179044554366335,BICY +-80.9334300451251,26.002102614340075,BICY +-81.08517557808504,26.178999990247046,BICY +-81.2972497557416,25.946399999922583,BICY +-81.10013497910782,25.862686502430783,BICY +-80.9317,25.999958890870545,BICY +-80.89594431840243,26.01404514098799,BICY +-81.34231875677754,25.953777361958526,BICY +-80.90835536909725,26.00484422972947,BICY +-80.93900377215019,25.95374979943003,BICY +-81.09377197922451,26.216801640144634,BICY +-81.17557572995331,25.8812805550498,BICY +-81.08639726302091,26.219035929344443,BICY +-80.88160944394934,26.251863075469767,BICY +-81.09806927025775,26.233470427464347,BICY +-80.8523422475383,25.838452820939565,BICY +-81.02286939216309,25.82505022287882,BICY +-80.9107,25.98173585803894,BICY +-81.06692648118039,26.224199985717046,BICY +-81.25858741017328,25.874538023072468,BICY +-81.27747727080357,26.169318036197964,BICY +-81.02820571729477,25.930305704952588,BICY +-80.9575651925183,25.85409272238122,BICY +-81.24767556155587,26.07984119907523,BICY +-81.0390261448975,25.773168246753944,BICY +-80.97608594519266,25.790269703933053,BICY +-81.07660027501518,26.24997693933734,BICY +-81.049701454171,26.215915673413686,BICY +-80.84238177270349,25.77324325262261,BICY +-81.04710216737847,26.253094378950557,BICY +-81.07285019492382,26.16259999686498,BICY +-80.88773502835238,26.191022822878566,BICY +-81.2852351679285,26.126399845117952,BICY +-81.2265,26.25108619577704,BICY +-80.9208,25.725360185350493,BICY +-81.09228309615268,26.180233335195503,BICY +-80.89860960726624,25.97895670348656,BICY +-81.19592676262532,26.149662632249722,BICY +-81.2735794957252,25.907229202388272,BICY +-81.33347777625235,25.97689998587159,BICY +-81.0282914388929,26.042544144115176,BICY +-80.99489018200448,26.177736907319193,BICY +-81.17331804465172,25.880702168994365,BICY +-81.34191891921527,26.185644981805165,BICY +-80.87484123101981,25.979872349140365,BICY +-81.0320337614411,25.8205288511354,BICY +-81.33542510274988,25.977017254767308,BICY +-81.09387937496321,25.785167101017937,BICY +-81.04439211387226,25.816436486052194,BICY +-80.84191091778165,25.772598735539653,BICY +-81.04329348702353,25.707967441972723,BICY +-81.00505859548628,25.95428730707949,BICY +-81.0042684160642,25.842448304166435,BICY +-81.09680054881076,26.222631996039027,BICY +-81.02610098767184,25.9293666117024,BICY +-80.9230670463235,25.723599982366725,BICY +-80.91443722582734,26.180692054752456,BICY +-80.88163319386999,26.25049012077153,BICY +-81.09620554501743,26.22327157073157,BICY +-80.91822211707485,25.723799997681095,BICY +-81.2653,26.161667214010762,BICY +-80.90763570993514,26.006228879002087,BICY +-81.0302,25.964241115469424,BICY +-80.8868,26.182351784433216,BICY +-81.25608954692055,26.16940971319088,BICY +-81.25667177695426,25.898091947545417,BICY +-80.94821786965396,25.955799003220662,BICY +-81.27760409018195,26.16907262547866,BICY +-81.34622343801118,25.8652077180391,BICY +-81.27787828845217,26.16838888859329,BICY +-81.19430779493895,26.149534783450544,BICY +-81.19125578208714,26.21711242826671,BICY +-81.22594724698685,25.85539793257325,BICY +-80.93834098120453,25.95117134998437,BICY +-81.19635658374091,26.14992222337868,BICY +-81.04484386111034,25.815499982681626,BICY +-81.3341641890941,25.973988195475073,BICY +-81.05060622538305,26.241233402991792,BICY +-81.02655135891709,26.04159999059302,BICY +-81.02837390584338,26.252358750412395,BICY +-81.09064930824294,26.178099985391786,BICY +-81.3350048157936,26.138413056456866,BICY +-81.25107443460028,25.86346023280113,BICY +-80.99674038889376,25.850134326390666,BICY +-81.10220721360558,25.84311393376789,BICY +-81.07640523280219,26.249875399191065,BICY +-81.34324627115544,25.953386367402246,BICY +-81.33300342747214,25.97689997846608,BICY +-80.9144122165753,26.180731138443054,BICY +-81.07462386125593,26.250975115423405,BICY +-81.34444933164718,26.050409369382674,BICY +-81.264791825957,26.16751110503829,BICY +-81.08452535375356,26.178999996347805,BICY +-81.03243205563874,25.820397638333425,BICY +-81.1122417273034,25.833560110025378,BICY +-81.09570631050082,25.78576912746846,BICY +-81.00011342794521,25.85530582607666,BICY +-80.85469644771594,25.838299993288228,BICY +-81.01597432954247,25.92805553237365,BICY +-81.06570058515773,26.224199997770803,BICY +-81.18636266197247,26.154634056179297,BICY +-81.06620543147051,26.02468146163527,BICY +-81.02730074122746,26.04159999720123,BICY +-80.9224997182025,25.804799999965812,BICY +-81.2799,26.160443488293947,BICY +-81.02966575204721,26.248891597853458,BICY +-81.3345762681646,25.976899997052,BICY +-80.84309355630042,25.7731296066304,BICY +-80.84235952285887,25.771895184705812,BICY +-81.30508349269203,26.189915444646847,BICY +-80.9317,26.000410203305904,BICY +-81.23822628275319,26.17899668713911,BICY +-80.88795595081925,26.142190286189734,BICY +-81.3333279819007,25.976899983700978,BICY +-80.88584188194295,26.142467282181986,BICY +-81.0954720869651,25.785691945875076,BICY +-80.93407387078932,25.80023566735209,BICY +-81.00417468147933,25.84241743314565,BICY +-81.2499,26.25019123945812,BICY +-81.02691592107557,25.9307302037161,BICY +-81.00571903043934,25.75615094159223,BICY +-81.23225162671055,26.194421022371323,BICY +-81.18580966229574,26.154284595816822,BICY +-80.97791874690662,25.78989998456997,BICY +-81.09668249150165,25.986513908997782,BICY +-80.87700041725782,25.781634234001483,BICY +-81.07234790484092,25.85627612540441,BICY +-81.10174059938306,25.84303947454229,BICY +-80.8441,25.925106643880458,BICY +-80.94269243167463,26.252891993670055,BICY +-80.9248929550623,25.80479997862944,BICY +-80.91667773072305,26.179735095312136,BICY +-81.0443952003454,25.75975470084696,BICY +-81.0237331181736,25.8245988929803,BICY +-81.29279964623254,26.077268115343315,BICY +-80.94380142314266,26.25271567333336,BICY +-81.33471357146443,25.978131173028768,BICY +-80.9951125656037,26.177185596328794,BICY +-81.34255821078055,26.045315103430777,BICY +-80.93715456341776,25.74935714990406,BICY +-81.15510306614055,26.024137255833814,BICY +-80.9437498539752,26.25246549931409,BICY +-81.00278628046715,25.842562169469137,BICY +-81.3462,25.86513230187306,BICY +-81.09334883269285,26.216940552999823,BICY +-81.06667789927053,26.040050830843857,BICY +-80.9222891885051,25.805946498151666,BICY +-81.35117918810147,25.867199988580094,BICY +-81.2587933328786,25.89726350236039,BICY +-81.00697061402245,25.756350782623244,BICY +-81.19637395026427,26.1498333340296,BICY +-81.00746143225746,25.756429148716713,BICY +-81.09253932010668,26.17892222315785,BICY +-81.2729861611388,26.077024144872336,BICY +-81.33420178228539,25.976899994177224,BICY +-80.905,26.05257434542182,BICY +-81.17660752408113,25.88111596277297,BICY +-81.08214969688234,26.177547982902592,BICY +-81.06927569268153,26.007977117750453,BICY +-80.96895952596789,25.707166578123577,BICY +-81.00697408551223,26.179125607702527,BICY +-81.0302,25.96435394413792,BICY +-81.07653526090651,26.2499430926515,BICY +-81.04682043132013,26.252947711401507,BICY +-81.00719149513613,26.179178166664517,BICY +-80.88506753655217,26.141469125861192,BICY +-80.92229570688737,25.80587905709126,BICY +-81.24930485081788,26.250860429083218,BICY +-80.85357430222993,25.838299999741032,BICY +-81.23432463501656,26.187432064859603,BICY +-81.24867506052797,26.081599999945922,BICY +-81.0631,26.134589303459283,BICY +-81.2799,26.160736834855722,BICY +-81.07400628893713,25.7840296070307,BICY +-80.92696192672778,25.95196673299566,BICY +-81.235950741592,26.221258484939327,BICY +-81.03626693389633,26.23967174014857,BICY +-81.09438597819238,26.222454140181465,BICY +-80.94256921019371,26.252911584289826,BICY +-81.0821,25.814783625390426,BICY +-80.9222,26.018009737736033,BICY +-80.93548053417193,26.247851419686846,BICY +-80.85807411142665,25.736888532625127,BICY +-81.00152755571308,25.755835109222218,BICY +-80.88753307764526,26.142329210431363,BICY +-81.03034514177463,25.962639517345206,BICY +-81.0631,26.135356520272705,BICY +-81.27434152490387,25.906508538901825,BICY +-81.2369,26.17827386637435,BICY +-81.00578224450649,25.9549415245659,BICY +-80.92154737790891,25.723599998083575,BICY +-80.905,26.051400941501612,BICY +-81.2499,26.250462017520828,BICY +-81.34760628605996,25.86566307563291,BICY +-81.26503499172043,26.168755553312927,BICY +-80.93556523668217,25.74783084025071,BICY +-81.04643033640747,26.25274463233952,BICY +-81.2265,26.24919074928838,BICY +-81.24919225575981,26.250739428896278,BICY +-80.85165462886886,25.838562534641177,BICY +-80.87708470067163,25.784129379027178,BICY +-81.0388100478026,25.935649296901406,BICY +-81.02937488010164,26.25079541716967,BICY +-81.27373207642286,25.907165427014068,BICY +-81.17596879472025,25.88121785409562,BICY +-81.06559759955677,26.20470459374853,BICY +-80.92737818919693,25.951806181828,BICY +-81.27283236789684,25.9074102549576,BICY +-81.03890943244107,26.253136378326317,BICY +-81.26593301781763,25.91617073639281,BICY +-81.0774454618564,26.25041694356134,BICY +-81.34961707410586,25.952957590225814,BICY +-81.26526320500342,26.170251897478966,BICY +-80.95873025849055,25.855048871451753,BICY +-81.09452814827738,26.215470281830605,BICY +-81.28577394411825,26.097910066860045,BICY +-80.89526289406577,26.013736988644162,BICY +-80.9317,26.00081638447364,BICY +-81.01785892181624,25.959514865525012,BICY +-81.29287804637126,26.07645885292138,BICY +-81.19109811386045,26.21634719870573,BICY +-81.13737657489725,25.86361375581825,BICY +-81.06711930021719,26.041965808821153,BICY +-81.30170434336556,26.196877777806765,BICY +-80.90745133933889,26.042999990592442,BICY +-81.2548,26.24844302589984,BICY +-81.26526538449883,26.170274376700835,BICY +-80.93243526594708,26.001583613637003,BICY +-81.10328779615332,25.843286359900773,BICY +-81.302025747842265,26.195233334952928,BICY +-81.2282,25.868972151761373,BICY +-81.1885502047765,26.15509999269893,BICY +-81.24424232110377,26.14553871744409,BICY +-80.91304688537342,25.98229998096809,BICY +-81.06303505111671,26.133066152175893,BICY +-80.89418737946892,26.012578804180386,BICY +-81.066,26.204061525250722,BICY +-80.89045195320614,25.817533319685605,BICY +-81.22120975407312,25.846539306596654,BICY +-81.30177383699034,26.19652222268782,BICY +-81.34124368552189,26.045052692928792,BICY +-81.154398982152955,26.024368795637184,BICY +-80.86237349983195,25.764099999229916,BICY +-80.94717798798115,26.232533320983713,BICY +-81.33450517671429,26.081771564280366,BICY +-81.02963085728227,26.24925126151292,BICY +-81.02750057651025,26.04159999830692,BICY +-81.08134850921489,26.251099991621945,BICY +-80.99288783264768,25.849736980847233,BICY +-80.88752350284918,26.19109228230516,BICY +-81.28557009478729,26.097824239458664,BICY +-81.24358656425004,25.914646585265242,BICY +-80.8988174940237,25.83625535966986,BICY +-80.97789382047243,25.78989998493089,BICY +-81.0972186556913,26.222182563666752,BICY +-80.9208,25.72454779216464,BICY +-80.9086643626375,25.827309169883616,BICY +-81.03114940323665,25.820183802561555,BICY +-81.0375172889779,26.0429099031723,BICY +-81.09827473807886,26.232899999631957,BICY +-81.13582826294372,25.86484184571971,BICY +-81.25506564444507,26.16758888397366,BICY +-81.27723419884421,26.16978840640765,BICY +-81.00147194467498,25.855207733413422,BICY +-80.88508584680721,25.805281481308384,BICY +-81.06503555583791,26.039921011399233,BICY +-81.24234943831989,26.145688199819258,BICY +-81.26503933401311,26.168777775597857,BICY +-81.23550042737841,26.22196199238014,BICY +-80.91869545720883,25.723799994242142,BICY +-81.05523817226279,26.133565563020284,BICY +-81.08421387026439,25.718794161578234,BICY +-81.27353129399866,25.9072408833155,BICY +-81.0379,26.0424553388754,BICY +-81.08274985573046,26.25109999992154,BICY +-80.88572716327623,26.142319407442834,BICY +-80.90800886294704,26.00625838493369,BICY +-81.0631,26.13488265107406,BICY +-81.27757238538713,26.16913397816974,BICY +-80.92864568301975,26.250302254247465,BICY +-81.34240796734274,26.049821630118682,BICY +-81.0370715143949,26.253572808621335,BICY +-80.94268553530692,26.178782236773685,BICY +-81.25085764845235,26.00606723440128,BICY +-81.24227500450759,26.145582747933418,BICY +-80.8916495217111,26.253915404057718,BICY +-81.07528270815551,25.784233383273794,BICY +-81.02304213788915,25.824959957312036,BICY +-81.27491775919167,25.897509897347433,BICY +-81.10350882478768,25.843321627891672,BICY +-81.20146087651624,25.99549373316308,BICY +-81.29279964623254,26.077268115343315,BICY +-81.3350581207404,25.97190854514071,BICY +-81.09687178470885,25.78411929963287,BICY +-80.94328389420758,26.252797957223123,BICY +-81.0211786743017,25.982994545589648,BICY +-81.05907493586443,26.134899985061683,BICY +-81.08486176400993,26.22162196595814,BICY +-81.13681407159936,25.863798993471768,BICY +-81.08178655698063,25.99743116974226,BICY +-80.91257251492567,25.98229998788428,BICY +-80.8818918856454,26.251163344063432,BICY +-81.22339610756086,25.852866595632975,BICY +-81.2282,25.86867879335921,BICY +-81.00162571884594,25.75581943573756,BICY +-81.33490022808417,26.137334049018232,BICY +-81.09594824406422,26.22354814279126,BICY +-81.07275017440553,26.162599997490243,BICY +-80.88207694887718,25.789667038584504,BICY +-81.18695662825813,26.155009400110636,BICY +-81.09062429980689,26.178099985033317,BICY +-80.9233722524744,25.804799996749544,BICY +-80.9431853171849,26.252813630133485,BICY +-81.25522630758445,26.168411108705428,BICY +-81.23346463303209,26.193789195558068,BICY +-81.0022279073844,25.855602632656982,BICY +-81.2799,26.16134609306123,BICY +-81.2282,25.86962656661576,BICY +-81.2499,26.249807637185125,BICY +-81.25648357431177,26.169472404959272,BICY +-80.97402593842705,25.697739717882865,BICY +-81.37557056467845,25.842899989208888,BICY +-80.8441,25.923955785142944,BICY +-81.34130089625654,26.049645291754217,BICY +-81.0379,26.043087172561812,BICY +-81.05148854472448,26.24232538495612,BICY +-80.89416305392679,26.253779376081727,BICY +-81.22165074855151,25.90550380653316,BICY +-81.33485088556357,25.9779162066325,BICY +-81.10071798385974,25.998641527936094,BICY +-80.92852386634512,25.95240416409018,BICY +-81.05764997990939,26.134899998534138,BICY +-80.88601396048506,26.14268909411376,BICY +-80.92479323685983,25.804799980304892,BICY +-81.13812657656648,25.86336676888245,BICY +-80.8441,25.923797824125494,BICY +-81.02868671317738,26.251870209559836,BICY +-81.27967013897609,26.162874054719047,BICY +-81.34227144483813,26.185760749502112,BICY +-81.20115342850531,25.996257103720268,BICY +-80.95929459108015,25.85453826331083,BICY +-81.25091765887035,25.865081613918232,BICY +-81.0379,26.041981463574324,BICY +-81.27756564672654,26.166788883783507,BICY +-81.2552002539493,26.1682777749837,BICY +-81.03845688178664,25.77342214457861,BICY +-81.00444139364315,26.178137894087378,BICY +-81.13574348163144,25.865718572335915,BICY +-81.34053947932792,26.04482115058082,BICY +-81.3462,25.86506460374549,BICY +-81.02785628461855,25.868883893481513,BICY +-81.04302384043199,25.815499999382098,BICY +-81.2653,26.162141081447157,BICY +-81.0498,26.21678003286605,BICY +-81.19186684761958,26.217769282191693,BICY +-80.9767222780653,25.789899997076304,BICY +-81.37574512739322,25.84289998697617,BICY +-81.18715000706126,26.155099999991315,BICY +-81.23719509624881,26.189117374669358,BICY +-81.27215754080092,25.907573782997723,BICY +-81.08503199635854,25.720860435728586,BICY +-81.18511329701921,26.153844531575242,BICY +-81.2282,25.87061947179939,BICY +-81.33558767058773,25.972478995609883,BICY +-80.89591972424144,26.014049059516054,BICY +-80.91015502899263,25.826225259406883,BICY +-81.27771762427732,26.16756666402859,BICY +-81.0286011757578,25.971118264104657,BICY +-81.31190566176836,25.95855425587283,BICY +-80.9060495689903,26.230299998946077,BICY +-80.90853193305455,26.005034380221293,BICY +-81.17432283323829,25.881480407231454,BICY +-80.94647498467003,26.230769236384415,BICY +-81.37516057357885,25.842189161080313,BICY +-81.04424549814766,25.81549999068656,BICY +-81.35097964707151,25.867199985939944,BICY +-81.09369199800237,25.785105353415325,BICY +-80.94160036818475,26.177780306985593,BICY +-81.2201,25.845702644168398,BICY +-81.2837222439069,26.104277761221198,BICY +-81.02802035540013,25.868829866387237,BICY +-80.92225225086621,25.80632866414327,BICY +-81.08468663702888,26.22189554980252,BICY +-80.9595943907966,25.854267001829292,BICY +-80.94173130302734,26.253044797699676,BICY +-81.06584325817973,26.024528877664224,BICY +-80.93934700539269,25.95208087137192,BICY +-80.88647098426839,26.182491951794766,BICY +-81.09258709004023,26.1786777784638,BICY +-81.07245879531507,25.856551792904437,BICY +-81.15558649814787,26.019056151094066,BICY +-81.03734506963247,26.04277935926526,BICY +-80.93874004533293,25.954261086153114,BICY +-81.04708049534885,26.253083096851118,BICY +-80.91782351485675,25.7237999993846,BICY +-80.88608566006955,26.142781515689315,BICY +-81.09687360980328,26.232899989631605,BICY +-81.00634601436094,26.178973768854384,BICY +-81.25604586094902,25.873920648446415,BICY +-81.05544882347132,26.133725116414592,BICY +-81.3462,25.863755773155056,BICY +-81.35215195062256,25.867199997522718,BICY +-81.25199153843546,25.862763975276156,BICY +-81.05198138603662,26.242403748355084,BICY +-81.25091765887035,25.865081613918232,BICY +-81.32755401957344,25.892443409733445,BICY +-80.90869374237062,26.043366992241296,BICY +-81.03158324353065,25.725524160637622,BICY +-80.94685213553002,26.230866665053295,BICY +-81.05175960736435,26.24236848503484,BICY +-81.25043060607342,26.00712747218553,BICY +-81.04496852006089,25.81549998070391,BICY +-81.19109497650861,26.216939571529075,BICY +-81.3352410258059,25.973014864750823,BICY +-81.2499,26.250574841710616,BICY +-81.27512738271719,25.905661495098673,BICY +-81.0858,26.1979,BICY +-81.272,26.0767,BICY +-81.3355,25.9769,BICY +-80.8737,25.7601,BICY +-81.0252,26.0746,BICY +-80.9886,25.935,BICY +-81.2848,26.0975,BICY +-80.9468,26.2306,BICY +-81.2501,25.8642,BICY +-81.2674,26.2265,BICY +-81.2488,26.0816,BICY +-81.1021,25.863,BICY +-81.2349,26.2229,BICY +-81.2644,25.9152,BICY +-80.9177,25.7633,BICY +-80.9622,25.9273,BICY +-81.0622,26.2547,BICY +-81.0943,26.0296,BICY +-81.057,26.1349,BICY +-81.0449,26.2321,BICY +-81.343,26.1818,BICY +-81.1982,25.9812,BICY +-81.2548,26.25,BICY +-81.0892,26.21,BICY +-81.1641,26.1004,BICY +-80.9152,26.1795,BICY +-81.1655,26.045,BICY +-81.1057,26.2456,BICY +-81.0229,25.9843,BICY +-80.899,25.9782,BICY +-81.1551,26.0881,BICY +-81.0631,26.1331,BICY +-81.0927,26.1781,BICY +-81.0264,25.9309,BICY +-81.2779,26.1685,BICY +-81.0986,26.2329,BICY +-80.9758,25.7899,BICY +-80.905,26.0528,BICY +-80.9812,25.7817,BICY +-80.9093,25.9999,BICY +-81.1057,26.2456,BICY +-81.3423,26.0454,BICY +-81.0264,25.9309,BICY +-81.0764,25.7102,BICY +-80.9871,25.944,BICY +-81.0379,26.0432,BICY +-81.0622,26.2547,BICY +-80.9758,25.7899,BICY +-81.1057,26.2456,BICY +-81.0302,25.963,BICY +-81.1252,26.0397,BICY +-81.0753,26.2493,BICY +-81.0283,26.1624,BICY +-80.947,25.9569,BICY +-81.1627,26.1806,BICY +-81.1001,25.9992,BICY +-81.2319,25.9988,BICY +-81.1252,26.0397,BICY +-80.9303,25.7535,BICY +-81.0631,26.1331,BICY +-81.3054,26.1907,BICY +-80.9871,25.944,BICY +-81.22,25.9062,BICY +-80.947,25.9569,BICY +-81.2554,26.1693,BICY +-81.0845,26.2176,BICY +-80.9686,26.1307,BICY +-80.8861,26.1428,BICY +-81.0182,25.7474,BICY +-81.1158,25.9166,BICY +-81.0642,25.6901,BICY +-81.0341,26.2408,BICY +-81.2248,25.8536,BICY +-81.3357,25.9726,BICY +-80.9002,25.8358,BICY +-81.0147,26.2374,BICY +-81.098,26.079,BICY +-80.8533,25.8383,BICY +-80.9266,25.9514,BICY +-81.2025,25.9603,BICY +-81.0507,26.2422,BICY +-81.1119,26.0408,BICY +-80.9177,25.7633,BICY +-80.8461,25.8843,BICY +-80.9377,25.748,BICY +-80.926,26.2201,BICY +-80.9274,25.7538,BICY +-81.0341,26.2408,BICY +-81.293,26.0752,BICY +-81.0986,26.2329,BICY +-81.32,26.0974,BICY +-81.285,26.2346,BICY +-81.3348,26.1363,BICY +-81.0426,25.8155,BICY +-80.8571,25.6851,BICY +-80.9177,25.7633,BICY +-81.0271,26.065,BICY +-81.2554,26.1693,BICY +-81.045,26.252,BICY +-81.0174,25.9591,BICY +-81.0377,26.2539,BICY +-81.0764,25.7102,BICY +-81.343,26.1818,BICY +-81.0622,26.2547,BICY +-81.0608,26.0698,BICY +-81.2025,25.9603,BICY +-81.0653,26.0243,BICY +-81.154,26.0245,BICY +-81.2282,25.8708,BICY +-80.9377,25.748,BICY +-81.0341,26.2408,BICY +-81.2418,25.9154,BICY +-81.0986,26.2329,BICY +-80.9066,26.2303,BICY +-81.0005,25.8547,BICY +-81.1145,26.0211,BICY +-81.0048,26.1786,BICY +-81.1883,25.96,BICY +-81.2653,26.1609,BICY +-81.3357,25.9726,BICY +-81.003,25.7556,BICY +-81.1132,26.0167,BICY +-81.0379,26.0432,BICY +-81.1881,26.0039,BICY +-81.0846,25.7194,BICY +-81.2737,25.9072,BICY +-81.036,26.0663,BICY +-81.0772,25.8148,BICY +-80.9002,25.8358,BICY +-80.8875,26.1911,BICY +-81.0252,26.0746,BICY +-80.9002,25.8358,BICY +-81.0958,25.7858,BICY +-81.2848,26.0975,BICY +-81.2971,25.9464,BICY +-81.2737,25.9072,BICY +-81.098,26.079,BICY +-80.947,25.9569,BICY +-81.1132,26.0167,BICY +-80.8845,25.8062,BICY +-81.165,26.0603,BICY +-80.9439,26.2527,BICY +-81.0064,25.9555,BICY +-81.0252,26.0746,BICY +-81.343,26.1818,BICY +-80.934,25.801,BICY +-80.9622,25.9273,BICY +-81.1525,26.0673,BICY +-81.1422,25.8115,BICY +-81.1881,26.0039,BICY +-80.8461,25.8843,BICY +-81.0859,26.22,BICY +-81.2418,25.9154,BICY +-81.0653,26.0243,BICY +-81.0341,26.2408,BICY +-80.8461,25.8843,BICY +-81.0309,26.0617,BICY +-81.081,25.9962,BICY +-81.2319,25.9988,BICY +-81.2415,25.9059,BICY +-81.0986,26.2329,BICY +-81.2554,26.1693,BICY +-81.3348,26.1363,BICY +-81.1871,26.1551,BICY +-80.9224,25.8048,BICY +-81.0283,26.1624,BICY +-81.0341,26.2408,BICY +-81.284,26.1057,BICY +-81.1676,25.7995,BICY +-81.1845,26.0927,BICY +-81.2352,26.1888,BICY +-81.1845,26.0927,BICY +-81.22,25.9062,BICY +-80.9107,25.9823,BICY +-81.0752,25.8993,BICY +-81.1145,26.0211,BICY +-81.3496,25.953,BICY +-81.2501,25.8642,BICY +-81.1038,25.8982,BICY +-81.1982,25.9812,BICY +-80.8861,26.1428,BICY +-81.1845,26.0927,BICY +-80.9886,25.935,BICY +-81.3355,25.9769,BICY +-80.9066,26.2303,BICY +-81.1762,26.047,BICY +-81.0653,26.0243,BICY +-81.3462,25.8652,BICY +-81.3052,26.2322,BICY +-81.0845,26.2176,BICY +-80.9177,25.7633,BICY +-81.0699,26.007,BICY +-81.2321,26.1945,BICY +-80.9525,26.2428,BICY +-81.0005,25.8547,BICY +-81.244,26.1814,BICY +-81.1762,26.047,BICY +-81.1021,25.863,BICY +-80.8861,26.1428,BICY +-81.0023,25.8418,BICY +-81.3116,26.2119,BICY +-80.9028,25.7563,BICY +-80.905,26.0528,BICY +-81.3394,26.0467,BICY +-81.2501,25.8642,BICY +-80.8747,25.98,BICY +-81.2501,25.8642,BICY +-80.9439,26.2527,BICY +-81.0631,26.1331,BICY +-81.036,26.0663,BICY +-80.8913,26.1527,BICY +-81.3429,26.0499,BICY +-81.1883,25.96,BICY +-81.0264,25.9309,BICY +-80.9093,25.9999,BICY +-80.9687,25.7085,BICY +-81.1525,26.0673,BICY +-81.289,26.2268,BICY +-81.0859,26.22,BICY +-81.0272,25.8691,BICY +-81.1123,26.0342,BICY +-81.1627,26.1806,BICY +-80.9317,26.0012,BICY +-81.0752,25.8993,BICY +-80.9446,26.1338,BICY +-81.2169,26.1989,BICY +-81.0449,26.2321,BICY +-81.067,25.8891,BICY +-81.1641,26.1004,BICY +-81.1132,26.0167,BICY +-81.0673,26.0401,BICY +-81.2554,26.1693,BICY +-81.1871,26.1551,BICY +-81.0295,26.2506,BICY +-80.9107,25.9823,BICY +-81.2282,25.8708,BICY +-81.0341,26.2408,BICY +-80.8861,26.1428,BICY +-81.2179,26.0014,BICY +-81.0368,25.9346,BICY +-81.3129,25.9578,BICY +-80.9374,26.2477,BICY +-80.9318,26.2036,BICY +-80.9274,25.7538,BICY +-81.1845,26.0927,BICY +-81.244,26.1814,BICY +-80.9307,25.7616,BICY +-81.2352,26.1888,BICY +-81.0846,25.7194,BICY +-81.0884,25.7272,BICY +-81.0048,26.1786,BICY +-81.0368,25.9346,BICY +-81.0498,26.2159,BICY +-81.0943,26.0296,BICY +-81.0302,25.963,BICY +-81.0341,26.2408,BICY +-81.2046,25.9562,BICY +-80.947,25.9569,BICY +-81.1605,26.0691,BICY +-81.2169,26.1989,BICY +-81.1905,26.2163,BICY +-81.1038,25.8982,BICY +-81.1905,26.2163,BICY +-81.0604,25.9163,BICY +-80.9318,26.2036,BICY +-81.0271,26.065,BICY +-81.1627,26.1806,BICY +-81.0653,26.0243,BICY +-81.1845,26.0927,BICY +-81.3056,26.2131,BICY +-80.9152,26.1795,BICY +-80.9397,25.9524,BICY +-80.8861,26.1428,BICY +-81.2169,26.1989,BICY +-81.0859,26.22,BICY +-81.1982,25.9812,BICY +-81.0368,25.9346,BICY +-81.0064,25.9555,BICY +-81.2499,26.2515,BICY +-81.0625,25.9,BICY +-80.9224,25.8048,BICY +-81.0147,26.2374,BICY +-81.2799,26.1627,BICY +-81.2369,26.1778,BICY +-81.0507,26.2422,BICY +-81.3056,26.2131,BICY +-81.1738,26.1729,BICY +-80.8861,26.1428,BICY +-81.1655,26.045,BICY +-81.0978,26.2061,BICY +-81.0943,26.0296,BICY +-81.1821,26.2207,BICY +-81.244,26.1814,BICY +-81.036,26.0663,BICY +-81.1422,25.8115,BICY +-80.9274,25.7538,BICY +-81.066,26.2044,BICY +-81.1907,25.9997,BICY +-81.1883,25.96,BICY +-81.3052,26.2322,BICY +-81.289,26.2268,BICY +-81.1038,25.8982,BICY +-81.2758,25.8842,BICY +-80.9266,25.9514,BICY +-80.8414,25.7734,BICY +-80.9303,25.7535,BICY +-81.1821,26.2207,BICY +-81.2349,26.2229,BICY +-80.899,25.9782,BICY +-81.1738,26.1729,BICY +-80.8619,25.7641,BICY +-81.0452,25.6888,BICY +-80.9758,25.7899,BICY +-81.2857,26.1255,BICY +-80.9812,25.7817,BICY +-80.9066,26.2303,BICY +-81.3348,26.1363,BICY +-81.1871,26.1551,BICY +-80.8861,26.1428,BICY +-81.066,26.2044,BICY +-80.9374,26.2477,BICY +-80.9405,26.1795,BICY +-81.1641,26.1004,BICY +-81.1158,25.9166,BICY +-81.0753,26.2493,BICY +-81.0625,25.9,BICY +-81.1123,26.0342,BICY +-80.9174,25.7238,BICY +-81.0295,26.2506,BICY +-81.0449,26.2321,BICY +-81.1305,25.9539,BICY +-80.8414,25.7734,BICY +-81.2017,25.9949,BICY +-81.3423,26.0454,BICY +-80.9224,25.8048,BICY +-81.0608,26.0698,BICY +-81.0631,26.1331,BICY +-81.0377,26.2539,BICY +-81.3738,25.8429,BICY +-81.1145,26.0211,BICY +-81.2758,25.8842,BICY +-81.1627,26.1806,BICY +-81.1655,26.045,BICY +-81.098,26.079,BICY +-80.9405,26.1795,BICY +-81.2418,25.9154,BICY +-81.2779,26.1685,BICY +-80.9812,25.7817,BICY +-81.1738,26.1729,BICY +-81.0295,26.2506,BICY +-81.285,26.2346,BICY +-81.1215,25.9827,BICY +-81.1907,25.9997,BICY +-81.2369,26.1778,BICY +-81.1132,26.0167,BICY +-81.3116,26.2119,BICY +-80.9871,25.944,BICY +-81.1012,25.8173,BICY +-81.1883,25.96,BICY +-81.1132,26.0167,BICY +-81.1881,26.0039,BICY +-81.0341,26.2408,BICY +-81.1215,25.9827,BICY +-81.1551,26.0881,BICY +-81.1305,25.9539,BICY +-80.899,25.9782,BICY +-81.1762,26.047,BICY +-81.0653,26.0243,BICY +-81.1551,26.0881,BICY +-80.9943,26.1792,BICY +-80.926,26.2201,BICY +-81.0449,26.2321,BICY +-81.3107,26.0769,BICY +-80.9303,25.7535,BICY +-80.9386,25.7091,BICY +-81.1123,26.0342,BICY +-81.0845,26.2176,BICY +-81.016,25.8376,BICY +-81.0943,26.0296,BICY +-81.036,26.0663,BICY +-81.0978,26.2061,BICY +-81.0452,25.6888,BICY +-81.3054,26.1907,BICY +-81.0829,26.2511,BICY +-81.0764,25.7102,BICY +-81.2674,26.2265,BICY +-80.8875,26.1911,BICY +-81.2219,25.8803,BICY +-80.9028,25.7563,BICY +-81.1012,25.8173,BICY +-81.098,26.079,BICY +-81.2441,26.2036,BICY +-81.1916,26.2526,BICY +-81.1738,26.1729,BICY +-81.129,25.9962,BICY +-81.0507,26.2422,BICY +-81.2422,26.1457,BICY +-81.0452,25.6888,BICY +-81.1057,26.2456,BICY +-81.0048,26.1786,BICY +-81.036,26.0663,BICY +-81.1574,25.9996,BICY +-81.0858,26.1979,BICY +-81.2321,26.1945,BICY +-81.2321,26.1945,BICY +-81.2025,25.9603,BICY +-81.0845,26.2176,BICY +-81.1676,25.7995,BICY +-80.8884,25.6363,BICY +-81.0958,25.7858,BICY +-80.9443,25.8396,BICY +-81.293,26.0752,BICY +-81.2971,25.9464,BICY +-81.2857,26.1255,BICY +-80.8868,26.1826,BICY +-81.343,26.1818,BICY +-81.1132,26.0167,BICY +-81.0884,25.7272,BICY +-81.1546,26.0206,BICY +-81.0835,26.179,BICY +-81.0927,26.1781,BICY +-81.0752,25.8993,BICY +-81.1881,26.0039,BICY +-81.0271,26.065,BICY +-80.9266,25.9514,BICY +-81.1905,26.2163,BICY +-81.0622,26.2547,BICY +-81.0302,25.963,BICY +-80.8414,25.7734,BICY +-80.9405,26.1795,BICY +-81.0161,25.9287,BICY +-81.272,26.0767,BICY +-80.8956,26.0141,BICY +-81.2758,25.8842,BICY +-81.2753,25.8978,BICY +-81.3129,25.9578,BICY +-81.0772,25.8148,BICY +-81.0283,26.1624,BICY +-81.0772,25.8148,BICY +-80.8746,25.749,BICY +-80.9377,25.748,BICY +-81.0668,26.0488,BICY +-81.081,25.9962,BICY +-80.8936,26.2529,BICY +-81.0341,26.2408,BICY +-81.0829,26.2511,BICY +-81.1845,26.0927,BICY +-81.0449,26.2321,BICY +-81.0147,26.2374,BICY +-81.1057,26.2456,BICY +-80.8837,25.7909,BICY +-80.9505,25.6812,BICY +-80.9152,26.1795,BICY +-81.2488,26.0816,BICY +-81.2653,26.1609,BICY +-81.0649,26.2242,BICY +-81.0943,26.0296,BICY +-81.0959,26.2236,BICY +-81.0719,26.1626,BICY +-80.8936,26.2529,BICY +-80.9871,25.944,BICY +-81.0283,26.1624,BICY +-81.2476,25.9646,BICY +-81.0295,25.971800000000002,BICY +-81.016,25.8376,BICY +-81.2779,26.1685,BICY +-80.9297,26.2511,BICY +-81.1769,25.8002,BICY +-81.1964,26.1497,BICY +-80.9297,26.2511,BICY +-81.0673,26.1841,BICY +-81.0282,26.0416,BICY +-81.3129,25.9578,BICY +-81.2753,25.8978,BICY +-81.1145,26.0211,BICY +-81.0859,26.22,BICY +-81.22,25.9062,BICY +-81.0222,25.8254,BICY +-81.2265,26.2498,BICY +-81.257,25.8982,BICY +-81.0283,26.1624,BICY +-81.0642,25.6901,BICY +-81.1215,25.9827,BICY +-81.0295,26.2506,BICY +-81.1145,26.0211,BICY +-80.9758,25.7899,BICY +-81.0147,26.2374,BICY +-81.0295,26.2506,BICY +-81.0379,26.0432,BICY +-81.0507,26.2422,BICY +-81.2906,26.1134,BICY +-81.1145,26.0211,BICY +-81.1845,26.0927,BICY +-81.1769,25.8002,BICY +-81.2418,25.9154,BICY +-81.0341,26.2408,BICY +-81.1605,26.0691,BICY +-81.32,26.0974,BICY +-81.1883,25.96,BICY +-81.0845,26.2176,BICY diff --git a/inst/rmarkdown/templates/nps-data-release-report-template/skeleton/BICY_Example/Mini_BICY_Veg_Intercept_Cleaned.csv b/inst/rmarkdown/templates/nps-data-release-report-template/skeleton/BICY_Example/Mini_BICY_Veg_Intercept_Cleaned.csv new file mode 100644 index 0000000..54c9029 --- /dev/null +++ b/inst/rmarkdown/templates/nps-data-release-report-template/skeleton/BICY_Example/Mini_BICY_Veg_Intercept_Cleaned.csv @@ -0,0 +1,501 @@ +scientificName,vernacularName,namePublishedIn,custom_TaxonAsRecorded,basisOfRecord,eventDate,locality,locationID,fieldNotes,custom_TransectStartLatitude,custom_TransectStartLongitude,custom_TransectEndLatitude,custom_TransectEndLongitude,geodeticDatum,coordinateUncertaintyInMeters,locationRemarks,verbatimCoordinates,verbatimCoordinateSystem,verbatimSRS,individualCount,custom_CoordinateBearing,custom_Transect,custom_InterceptPoint,decimalLongitude,decimalLatitude,taxonRank,coordinate_flag,taxonomic_flag,eventDate_flag +Ipomoea sagittata,Everglades morningglory,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,ipomsagi,Human Observation,2002-07-12,BICY,158-63,NA,25.7641,-80.8619,25.7619,-80.8615,WGS84,314,"Cell #BA56, Lysiloma Hammock","17N 2849565 E, 513849 N",UTM,WGS84,1,180,158,63,-80.8619,25.76267831942774,species,A,A,A +Panicum rigidulum,Redtop panicum,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,panirigi,Human Observation,2002-08-28,BICY,226-53,NA,26.0181,-80.9222,26.0162,-80.9219,WGS84,314,Cell #AU28,"17N 2877690 E, 507785 N",UTM,WGS84,1,180,226,53,-80.9222,26.016904024911025,species,A,A,A +Fuirena scirpoidea,Southern umbrellasedge,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,fuirscir,Human Observation,2002-08-27,BICY,230-8,NA,26.043,-80.9091,26.0433,-80.9065,WGS84,314,Cell #AW25,"17N 2880453 E, 509098 N",UTM,WGS84,1,90,230,8,-80.9089001623441,26.042999999861784,species,A,A,A +Taxodium ascendens,Pond cypress,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,taxoasce,Human Observation,2004-06-08,BICY,348-52,NA,25.8547,-81.0005,25.8568,-81.0001,WGS84,314,Cell #AM46,"17N 2859588 E, 499945 N",UTM,WGS84,1,30,348,52,-80.99985155431462,25.855716223773204,species,A,A,A +Panicum hemitomon,Maidencane,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,panihemi,Human Observation,2002-08-07,BICY,258-21,NA,26.1609,-81.2653,26.1615,-81.263,WGS84,314,Cell #M12,"17N 2893533 E, 473488 N",UTM,WGS84,1,80,258,21,-81.26478287697877,26.160982285299287,species,A,A,A +Sabal palmetto,Cabbage palm,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,sabapalm,Human Observation,2004-04-15,BICY,338-71,NA,26.252,-81.045,26.2528,-81.0473,WGS84,314,Cell #AI02,"17N 2903598 E, 495510 N",UTM,WGS84,1,300,338,71,-81.04653869596935,26.25280104329691,species,A,A,A +Capparis flexuosa,"Limber caper, Bayleaf capertree",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,cappflex,Human Observation,2004-03-25,BICY,375-38,NA,25.8429,-81.3738,25.8434,-81.3763,WGS84,314,"Cell #B47,endpoint estimated using arcmap","17N 2858345 E, 462537 N",UTM,WGS84,1,240,375,38,-81.37462066537475,25.842471241550214,species,A,A,A +Rhynchospora inundata,Narrowfruit horned beaksedge,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,rhyninun,Human Observation,2002-07-10,BICY,151-82,NA,26.0769,-81.3107,26.0763,-81.3134,WGS84,314,Cell #H21,"17N 2884234 E, 468923 N",UTM,WGS84,1,265,151,82,-81.31274112594434,26.076738715948864,species,A,A,A +Rapanea punctata,"Myrsine, Colicwood",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,rapapunc,Human Observation,2002-08-02,BICY,199-100,NA,25.8494,-80.995,25.8502,-80.9974,WGS84,314,Cell #AN46,"17N 2859003 E, 500497 N",UTM,WGS84,1,295,199,100,-80.99726024948605,25.850353666577362,species,A,A,A +Sarcostemma clausum,"Whitevine, White twinevine",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,sarcclau,Human Observation,2002-11-15,BICY,286-13,NA,25.8652,-81.3462,25.8636,-81.3461,WGS84,314,Cell #E45,"17N 2860800 E, 465316 N",UTM,WGS84,1,180,286,13,-81.3462,25.864906641445376,species,A,A,A +Taxodium ascendens,Pond cypress,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,taxoasce,Human Observation,2003-02-13,BICY,478-15,NA,25.9287,-81.0161,25.9302,-81.0177,WGS84,314,Cell #AL38,"17N 2867787 E, 498386 N",UTM,WGS84,1,320,478,15,-81.01634061740384,25.92895929639368,species,A,A,A +Spiranthes odorata,"Fragrant lady's-tresses, Marsh lady's-tresses",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,spirodor,Human Observation,2003-02-20,BICY,496-85,NA,25.9524,-80.9397,25.9546,-80.9388,WGS84,314,Cell #AT35,"17N 2870419 E, 506034 N",UTM,WGS84,1,25,496,85,-80.93880333997689,25.95413837738667,species,A,A,A +Ficus aurea,"Strangler fig, Golden fig",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,ficuaure,Human Observation,2004-04-29,BICY,418-38,NA,25.8155,-81.0426,25.8146,-81.0412,WGS84,314,Cell #AI50,"17N 2855253 E, 495730 N",UTM,WGS84,1,270,418,38,-81.04354740802444,25.815499996912624,species,A,A,A +Taxodium ascendens,Pond cypress,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,taxoasce,Human Observation,2004-05-18,BICY,365-61,NA,26.2236,-81.0959,26.2228,-81.0936,WGS84,314,Cell #AD05,"17N 2900452 E, 490421 N",UTM,WGS84,1,130,365,61,-81.09473094257677,26.22271522358408,species,A,A,A +Paspalum monostachyum,Gulfdune paspalum,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,paspmono,Human Observation,2004-03-03,BICY,381-88,NA,26.1969,-81.3017,26.1979,-81.3003,WGS84,314,Cell #I08,"17N 2897525 E, 469858 N",UTM,WGS84,1,80,381,88,-81.29953233759228,26.19724480041664,species,A,A,A +Cladium jamaicense,"Saw-grass, Jamaica swamp sawgrass",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,cladjama,Human Observation,2003-01-03,BICY,461-80,NA,26.1999,-80.9036,26.1995,-80.9062,WGS84,314,Cell #AW08,"17N 2897822 E, 509630 N",UTM,WGS84,1,260,461,80,-80.90557064160309,26.199586516848427,species,A,A,A +Taxodium ascendens,Pond cypress,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,taxoasce,Human Observation,2003-02-13,BICY,479-91,NA,25.9309,-81.0264,25.9302,-81.0289,WGS84,314,Cell #AK37,"17N 2868028 E, 497353 N",UTM,WGS84,1,250,479,91,-81.0285340275839,25.93019764888485,species,A,A,A +Eupatorium capillifolium,Dog-fennel,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,eupacapi,Human Observation,2004-05-06,BICY,340-22,NA,26.2422,-81.0507,26.2425,-81.0531,WGS84,314,Cell #AH03,"17N 2902502 E, 494939 N",UTM,WGS84,1,280,340,22,-81.0512421243163,26.242286202622427,species,A,A,A +Hyptis alata,"Musky mint, Clustered bushmint",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,hyptalat,Human Observation,2002-07-17,BICY,163-16,NA,26.0432,-81.0379,26.0411,-81.0375,WGS84,314,"Cell #AJ25, Central Pines","17N 2880474 E, 496209 N",UTM,WGS84,1,180,163,16,-81.0379,26.042838952191598,species,A,A,A +Rhizophora mangle,Red mangrove,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,rhizmang,Human Observation,2004-03-25,BICY,375-32,NA,25.8429,-81.3738,25.8434,-81.3763,WGS84,314,"Cell #B47,endpoint estimated using arcmap","17N 2858345 E, 462537 N",UTM,WGS84,1,240,375,32,-81.37449108702471,25.842538940562743,species,A,A,A +Pluchea rosea,Rosy camphorweed,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,plucrose,Human Observation,2003-02-11,BICY,492-89,NA,25.8735,-81.2566,25.8756,-81.2553,WGS84,314,Cell #N44,"17N 2861698 E, 474294 N",UTM,WGS84,1,50,492,89,-81.25489935389973,25.8747909487821,species,A,A,A +Ocotea coriacea,Lancewood,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,ocotcori,Human Observation,2003-11-26,BICY,475-20,NA,25.8062,-80.8845,25.8065,-80.8823,WGS84,314,Cell #AY51,"17N 2854223 E, 511582 N",UTM,WGS84,1,250,475,20,-80.88496852719378,25.80604563716998,species,A,A,A +Taxodium ascendens,Pond cypress,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,taxoasce,Human Observation,2004-04-01,BICY,403-78,NA,26.1781,-81.0927,26.1803,-81.0924,WGS84,314,Cell #AD10,"17N 2895406 E, 490734 N",UTM,WGS84,1,10,403,78,-81.09236126678036,26.179833334986505,species,A,A,A +Aristida purpurascens,Arrowfeather threeawn,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,arispurp,Human Observation,2004-03-11,BICY,397-3,NA,25.7899,-80.9758,25.7898,-80.9782,WGS84,314,Cell #AP53,"17N 2852419 E, 502423 N",UTM,WGS84,1,270,397,3,-80.9758747793026,25.78989999998078,species,A,A,A +NA,NA,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,NA,Human Observation,2002-05-17,BICY,186-69,NA,26.0077,-81.2502,26.0099,-81.2509,WGS84,314,Cell #N29/185,"17N 2876558 E, 474962 N",UTM,WGS84,1,350,186,69,-81.25049921430934,26.0092333710836,NA,A,R,A +Coccoloba diversifolia,"Pigeonplum, Tietongue",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,coccdive,Human Observation,2003-11-26,BICY,476-69,NA,25.8062,-80.8845,25.804,-80.8852,WGS84,314,Cell #AY51,"17N 2854223 E, 511582 N",UTM,WGS84,1,210,476,69,-80.88536006986855,25.804851535538003,species,A,A,A +Rapanea punctata,"Myrsine, Colicwood",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,rapapunc,Human Observation,2004-04-01,BICY,327-73,NA,26.179,-81.0835,26.1788,-81.0859,WGS84,314,Cell #AE10,"17N 2895514 E, 491661 N",UTM,WGS84,1,270,327,73,-81.08532562985383,26.178999988422035,species,A,A,A +Quercus virginiana,Virginia live oak,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,quervirg,Human Observation,2004-05-05,BICY,328-87,NA,26.2408,-81.0341,26.243,-81.0343,WGS84,314,Cell #AJ03,"17N 2902357 E, 496596 N",UTM,WGS84,1,0,328,87,-81.0341,26.24276314328995,species,A,A,A +Hymenocallis palmeri,Alligatorlily,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,hymepalm,Human Observation,2002-05-28,BICY,208-13,NA,26.2207,-81.1821,26.2226,-81.1838,WGS84,314,Cell #U05,"17N 2900139 E, 481814 N",UTM,WGS84,1,325,208,13,-81.18228654349332,26.220940293302988,species,A,A,A +Chrysobalanus icaco,Coco-plum,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,chryicac,Human Observation,2002-11-05,BICY,272-72,NA,25.9062,-81.22,25.9078,-81.2214,WGS84,314,Cell #Q40,"17N 2865313 E, 477963 N",UTM,WGS84,1,325,272,72,-81.22103041832507,25.907530910106082,species,A,A,A +Panicum virgatum,Switchgrass,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,panivirg,Human Observation,2002-05-22,BICY,213-2,NA,25.7595,-81.0428,25.7604,-81.0449,WGS84,314,Cell #AI56,"17N 2849056 E, 495705 N",UTM,WGS84,1,280,213,2,-81.04284908298605,25.7595078372099,species,A,A,A +Myrica cerifera,"Wax myrtle, Southern Bayberry",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,myriceri,Human Observation,2002-06-05,BICY,265-16,NA,26.0206,-81.1546,26.0204,-81.1545,WGS84,314,Cell #X28,"17N 2877975 E, 484532 N",UTM,WGS84,1,210,265,16,-81.15479979917771,26.02028732231089,species,A,A,A +Sabal palmetto,Cabbage palm,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,sabapalm,Human Observation,2004-03-17,BICY,379-12,NA,26.186,-81.343,26.1838,-81.3428,WGS84,314,Cell #E09,"17N 2896326 E, 465728 N",UTM,WGS84,1,180,379,12,-81.343,26.18572921950922,species,A,A,A +Taxodium ascendens,Pond cypress,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,taxoasce,Human Observation,2004-06-02,BICY,356-85,NA,25.9555,-81.0064,25.9541,-81.0043,WGS84,314,Cell #AM35,"17N 2870752 E, 499364 N",UTM,WGS84,1,135,356,85,-81.00489974677217,25.95414369787102,species,A,A,A +Sabal palmetto,Cabbage palm,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,sabapalm,Human Observation,2002-08-01,BICY,254-62,NA,26.1693,-81.2554,26.1694,-81.2578,WGS84,314,Cell #N11,"17N 2894454 E, 474478 N",UTM,WGS84,1,280,254,62,-81.25692685563064,26.16954293190904,species,A,A,A +Quercus laurifolia,"Laurel oak, Diamond oak",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,querlaur,Human Observation,2002-07-31,BICY,253-67,NA,26.0454,-81.3423,26.0451,-81.3397,WGS84,314,Cell #E25,"17N 2880757 E, 465755 N",UTM,WGS84,1,110,253,67,-81.34072726737581,26.044882895543335,species,A,A,A +Taxodium ascendens,Pond cypress,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,taxoasce,Human Observation,2004-03-26,BICY,415-52,NA,26.2242,-81.0649,26.2219,-81.0648,WGS84,314,Cell #AG05,"17N 2900516 E, 493515 N",UTM,WGS84,1,175,415,52,-81.06478661579294,26.223031089037942,species,A,A,A +Mikania scandens,"Climbing hempweed, Climbing hempvine",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,mikascan,Human Observation,2003-02-06,BICY,456-34,NA,25.9529,-81.3444,25.9545,-81.3457,WGS84,314,Cell #E35,"17N 2870515 E, 465524 N",UTM,WGS84,1,325,456,34,-81.34488677537823,25.953528482218267,species,A,A,A +Toxicodendron radicans,Eastern poison-ivy,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,toxiradi,Human Observation,2002-08-07,BICY,258-3,NA,26.1609,-81.2653,26.1615,-81.263,WGS84,314,Cell #M12,"17N 2893533 E, 473488 N",UTM,WGS84,1,80,258,3,-81.2652261253271,26.16091175515651,species,A,A,A +Laguncularia racemosa,White mangrove,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,lagurace,Human Observation,2004-03-25,BICY,374-47,NA,25.8429,-81.3738,25.8427,-81.3759,WGS84,314,Cell #B47,"17N 2858345 E, 462537 N",UTM,WGS84,1,270,374,47,-81.37497206394212,25.84289999527126,species,A,A,A +Tillandsia fasciculata var. densispica,"Stiff-leaved wild-pine, Cardinal airplant",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,tillfascdens,Human Observation,2002-06-05,BICY,264-19,NA,26.0206,-81.1546,26.0206,-81.1546,WGS84,314,Cell #X28,"17N 2877975 E, 484532 N",UTM,WGS84,1,160,264,19,-81.15443770368351,26.02019711081848,species,A,A,A +Panicum tenerum,Bluejoint panicum,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,panitene,Human Observation,2002-09-17,BICY,197-39,NA,25.7085,-80.9687,25.7065,-80.9691,WGS84,314,Cell #AQ62,"17N 2843408 E, 503144 N",UTM,WGS84,1,190,197,39,-80.96886869253706,25.707633275860616,species,A,A,A +Fraxinus caroliniana,"Water ash, Carolina ash, Pop ash",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,fraxcaro,Human Observation,2004-04-06,BICY,435-47,NA,25.8173,-81.1012,25.8194,-81.102,WGS84,314,"Cell #AC50, endpoint corrected using arcmap","17N 2855456 E, 489854 N",UTM,WGS84,1,350,435,47,-81.10140348477688,25.81834449769692,species,A,A,A +NA,NA,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,NA,Human Observation,2003-02-20,BICY,496-51,NA,25.9524,-80.9397,25.9546,-80.9388,WGS84,314,Cell #AT35,"17N 2870419 E, 506034 N",UTM,WGS84,1,25,496,51,-80.93916200714683,25.953443027148317,NA,A,R,A +Nephrolepis exaltata,Wild Boston fern,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,nephexal,Human Observation,2004-04-09,BICY,442-84,NA,25.7911,-81.0952,25.7893,-81.0965,WGS84,314,Cell #AD53,"17N 2852556 E, 490453 N",UTM,WGS84,1,215,442,84,-81.09640096253148,25.789547237394085,species,A,A,A +Pluchea rosea,Rosy camphorweed,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,plucrose,Human Observation,2004-06-08,BICY,348-68,NA,25.8547,-81.0005,25.8568,-81.0001,WGS84,314,Cell #AM46,"17N 2859588 E, 499945 N",UTM,WGS84,1,30,348,68,-80.99965203033479,25.8560289073999,species,A,A,A +Blechnum serrulatum,"Swamp fern, Toothed midsorus fern",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,blecserr,Human Observation,2002-07-31,BICY,195-97,NA,26.0499,-81.3429,26.0497,-81.3404,WGS84,314,"Cell #E24, Deep Lake","17N 2881252 E, 465701 N",UTM,WGS84,1,100,195,97,-81.34051364772196,26.049519890418832,species,A,A,A +Rhynchospora divergens,Spreading beaksedge,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,rhyndive,Human Observation,2004-06-01,BICY,317-54,NA,25.9346,-81.0368,25.9348,-81.0343,WGS84,314,Cell #AJ37,"17N 2868446 E, 496319 N",UTM,WGS84,1,85,317,54,-81.03545745969187,25.934706197811966,species,A,A,A +Cladium jamaicense,"Saw-grass, Jamaica swamp sawgrass",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,cladjama,Human Observation,2002-04-09,BICY,180-93,NA,26.1888,-81.2352,26.1866,-81.2357,WGS84,314,Cell #3893; P09,"17N 2896616 E, 476496 N",UTM,WGS84,1,150,180,93,-81.23403701955594,26.18698259923732,species,A,A,A +Sagittaria graminea var. chapmanii,Chapman's arrowhead,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,sagigramchap,Human Observation,2004-04-29,BICY,404-34,NA,25.8211,-81.0303,25.8192,-81.0318,WGS84,314,Cell #AJ50,"17N 2855868 E, 496959 N",UTM,WGS84,1,220,404,34,-81.03084490169276,25.820512251283947,species,A,A,A +Rhynchospora divergens,Spreading beaksedge,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,rhyndive,Human Observation,2003-02-07,BICY,493-73,NA,25.8691,-81.0272,25.8679,-81.0294,WGS84,314,Cell #AK44,"17N 2861184 E, 497273 N",UTM,WGS84,1,250,493,73,-81.02891102275343,25.86853657320384,species,A,A,A +Taxodium ascendens,Pond cypress,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,taxoasce,Human Observation,2004-03-31,BICY,320-11,NA,26.1331,-81.0631,26.1321,-81.0609,WGS84,314,Cell #AG15,"17N 2890423 E, 493688 N",UTM,WGS84,1,120,320,11,-81.06286185427768,26.13297589116773,species,A,A,A +Paspalum monostachyum,Gulfdune paspalum,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,paspmono,Human Observation,2003-02-13,BICY,477-12,NA,25.9287,-81.0161,25.9266,-81.0156,WGS84,314,Cell #AL38,"17N 2867787 E, 498386 N",UTM,WGS84,1,170,477,12,-81.01604799826556,25.928433323760995,species,A,A,A +Rhynchospora divergens,Spreading beaksedge,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,rhyndive,Human Observation,2004-05-12,BICY,360-79,NA,25.9514,-80.9266,25.9531,-80.928,WGS84,314,Cell #AU35,"17N 2870304 E, 507352 N",UTM,WGS84,1,330,360,79,-80.92758594646658,25.9529438566219,species,A,A,A +Hydrilla verticillata,Water-thyme,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,hydrvert1,Human Observation,2004-05-07,BICY,297-17,NA,25.7238,-80.9174,25.7236,-80.9199,WGS84,314,"Cell #AV60, Hess Hammock","17N 2845103 E, 508290 N",UTM,WGS84,1,270,297,17,-80.91782351485675,25.7237999993846,species,A,A,A +Cladium jamaicense,"Saw-grass, Jamaica swamp sawgrass",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,cladjama,Human Observation,2002-07-11,BICY,159-96,NA,26.0975,-81.2848,26.0982,-81.2872,WGS84,314,Cell #K19,"17N 2886508 E, 471520 N",UTM,WGS84,1,295,159,96,-81.28697439621374,26.098415489026312,species,A,A,A +Taxodium ascendens,Pond cypress,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,taxoasce,Human Observation,2004-03-31,BICY,321-83,NA,26.1331,-81.0631,26.1352,-81.0633,WGS84,314,Cell #AG15,"17N 2890423 E, 493688 N",UTM,WGS84,1,0,321,83,-81.0631,26.1349729118762,species,A,A,A +Agalinis fasciculata,Beach false foxglove,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,agalfasc,Human Observation,2002-08-23,BICY,246-86,NA,25.8536,-81.2248,25.8555,-81.2262,WGS84,314,Cell #Q46,"17N 2859495 E, 477474 N",UTM,WGS84,1,330,246,86,-81.2258724254734,25.855280676390954,species,A,A,A +Blechnum serrulatum,"Swamp fern, Toothed midsorus fern",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,blecserr,Human Observation,2002-08-22,BICY,244-28,NA,25.9154,-81.2418,25.9144,-81.2439,WGS84,314,"Cell #O39, endpoint corrected using arcmap","17N 2866336 E, 475780 N",UTM,WGS84,1,245,244,28,-81.24243321524328,25.91513296945733,species,A,A,A +Taxodium distichum,Bald cypress,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,taxodist,Human Observation,2002-08-01,BICY,255-91,NA,26.1693,-81.2554,26.1675,-81.2543,WGS84,314,Cell #N11,"17N 2894454 E, 474478 N",UTM,WGS84,1,170,255,91,-81.25500485357458,26.16727777184175,species,A,A,A +Taxodium ascendens,Pond cypress,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,taxoasce,Human Observation,2004-04-15,BICY,339-68,NA,26.252,-81.045,26.2518,-81.0431,WGS84,314,Cell #AI02,"17N 2903598 E, 495510 N",UTM,WGS84,1,100,339,68,-81.04332420751605,26.25173354295214,species,A,A,A +NA,NA,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,NA,Human Observation,2004-05-20,BICY,400-47,NA,26.2504,-80.8822,26.2525,-80.8815,WGS84,314,Cell #AY02,"17N 2903418 E, 511768 N",UTM,WGS84,1,20,400,47,-80.88179773878937,26.251396587934817,NA,A,R,A +Sabal palmetto,Cabbage palm,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,sabapalm,Human Observation,2004-04-29,BICY,404-97,NA,25.8211,-81.0303,25.8192,-81.0318,WGS84,314,Cell #AJ50,"17N 2855868 E, 496959 N",UTM,WGS84,1,220,404,97,-81.03185455825667,25.819423181961362,species,A,A,A +Cladium jamaicense,"Saw-grass, Jamaica swamp sawgrass",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,cladjama,Human Observation,2004-05-07,BICY,368-56,NA,25.7236,-80.9208,25.7257,-80.9206,WGS84,314,Cell #AU60,"17N 2845078 E, 507948 N",UTM,WGS84,1,0,368,56,-80.9208,25.724863722858792,species,A,A,A +Pontederia cordata,Pickerelweed,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,pontcord,Human Observation,2002-08-22,BICY,244-86,NA,25.9154,-81.2418,25.9144,-81.2439,WGS84,314,"Cell #O39, endpoint corrected using arcmap","17N 2866336 E, 475780 N",UTM,WGS84,1,245,244,86,-81.24374486631633,25.91457982593195,species,A,A,A +Taxodium ascendens,Pond cypress,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,taxoasce,Human Observation,2002-08-08,BICY,256-90,NA,26.1826,-80.8868,26.1805,-80.8866,WGS84,314,Cell #AY10,"17N 2895910 E, 511309 N",UTM,WGS84,1,180,256,90,-80.8868,26.180569145111114,species,A,A,A +Taxodium ascendens,Pond cypress,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,taxoasce,Human Observation,2003-02-13,BICY,478-91,NA,25.9287,-81.0161,25.9302,-81.0177,WGS84,314,Cell #AL38,"17N 2867787 E, 498386 N",UTM,WGS84,1,320,478,91,-81.01755976176914,25.93027305850519,species,A,A,A +Rhynchospora divergens,Spreading beaksedge,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,rhyndive,Human Observation,2004-05-12,BICY,362-50,NA,25.9823,-80.9107,25.98,-80.9103,WGS84,314,Cell #AV32,"17N 2873723 E, 508938 N",UTM,WGS84,1,180,362,50,-80.9107,25.981171716033902,species,A,A,A +Cladium jamaicense,"Saw-grass, Jamaica swamp sawgrass",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,cladjama,Human Observation,2004-03-31,BICY,318-48,NA,26.1349,-81.057,26.1348,-81.0596,WGS84,314,Cell #AH15,"17N 2890624 E, 494305 N",UTM,WGS84,1,270,318,48,-81.05819996290961,26.134899995003934,species,A,A,A +NA,NA,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,NA,Human Observation,2002-07-18,BICY,166-34,NA,25.9962,-81.081,25.9979,-81.0825,WGS84,314,Cell #AE30,"17N 2875262 E, 491889 N",UTM,WGS84,1,330,166,34,-81.08142448903241,25.9968644413706,NA,A,R,A +Paspalum monostachyum,Gulfdune paspalum,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,paspmono,Human Observation,2002-06-18,BICY,146-78,NA,26.1543,-81.3354,26.1543,-81.3329,WGS84,314,"Cell #F13, SE of Miles City","17N 2892813 E, 466479 N",UTM,WGS84,1,90,146,78,-81.3334497379113,26.154299986796023,species,A,A,A +Chrysobalanus icaco,Coco-plum,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,chryicac,Human Observation,2002-08-08,BICY,256-97,NA,26.1826,-80.8868,26.1805,-80.8866,WGS84,314,Cell #AY10,"17N 2895910 E, 511309 N",UTM,WGS84,1,180,256,97,-80.8868,26.180411189706845,species,A,A,A +Amphicarpum muhlenbergianum,Blue-maidencane,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,amphmuhl,Human Observation,2004-04-08,BICY,441-52,NA,26.2229,-81.2349,26.2209,-81.236,WGS84,314,Cell #P05,"17N 2900391 E, 476537 N",UTM,WGS84,1,210,441,52,-81.23555046255855,26.22188382495977,species,A,A,A +Spartina bakeri,Sand cordgrass,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,sparbake,Human Observation,2002-11-15,BICY,286-42,"""?"" was Spartina sp.",25.8652,-81.3462,25.8636,-81.3461,WGS84,314,Cell #E45,"17N 2860800 E, 465316 N",UTM,WGS84,1,180,286,42,-81.3462,25.86425222616542,species,A,A,A +Taxodium ascendens,Pond cypress,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,taxoasce,Human Observation,2002-06-12,BICY,138-85,NA,26.0416,-81.0282,26.0417,-81.0256,WGS84,314,"Cell #AK25, Middle Pines, east of Cal Stone","17N 2880288 E, 497181 N",UTM,WGS84,1,90,138,85,-81.02607675012057,26.041599984397287,species,A,A,A +Hyptis alata,"Musky mint, Clustered bushmint",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,hyptalat,Human Observation,2004-05-06,BICY,341-55,NA,26.2422,-81.0507,26.24,-81.0504,WGS84,314,Cell #AH03,"17N 2902502 E, 494939 N",UTM,WGS84,1,175,341,55,-81.05058005599938,26.24096365495537,species,A,A,A +Sabal palmetto,Cabbage palm,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,sabapalm,Human Observation,2002-07-31,BICY,252-61,NA,26.0454,-81.3423,26.045,-81.3444,WGS84,314,Cell #E25,"17N 2880757 E, 465755 N",UTM,WGS84,1,250,252,61,-81.34373189145916,26.044929204104672,species,A,A,A +Taxodium ascendens,Pond cypress,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,taxoasce,Human Observation,2002-07-12,BICY,161-3,NA,25.8383,-80.8533,25.8383,-80.8557,WGS84,314,"Cell #BB48, SE of Dade-Collier Airport","17N 2857785 E, 514705 N",UTM,WGS84,1,270,161,3,-80.85337480969908,25.838299999980737,species,A,A,A +Tillandsia setacea,"Thin-leaved wild-pine, Southern needleleaf",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,tillseta,Human Observation,2002-08-09,BICY,260-6,NA,26.1786,-81.0048,26.18,-81.0071,WGS84,314,Cell #AM10,"17N 2895459 E, 499518 N",UTM,WGS84,1,285,260,6,-81.00494493842739,26.178635041536346,species,A,A,A +Cladium jamaicense,"Saw-grass, Jamaica swamp sawgrass",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,cladjama,Human Observation,2003-02-11,BICY,489-93,NA,26.0752,-81.293,26.0762,-81.2954,WGS84,314,Cell #J21,"17N 2884040 E, 470692 N",UTM,WGS84,1,300,489,93,-81.2950124425862,26.076249276410472,species,A,A,A +Spartina bakeri,Sand cordgrass,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,sparbake,Human Observation,2002-07-11,BICY,160-65,NA,26.0975,-81.2848,26.0998,-81.2851,WGS84,314,Cell #K19,"17N 2886508 E, 471520 N",UTM,WGS84,1,0,160,65,-81.2848,26.09896674550112,species,A,A,A +Chrysobalanus icaco,Coco-plum,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,chryicac,Human Observation,2002-08-21,BICY,238-82,NA,25.9782,-80.899,25.9776,-80.8962,WGS84,314,Cell #AX32,"17N 2873270 E, 510111 N",UTM,WGS84,1,100,238,82,-80.89698389524663,25.977878669686778,species,A,A,A +Physostegia purpurea,"False dragonhead, Eastern false dragonhead",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,physpurp,Human Observation,2003-04-24,BICY,612-53,NA,25.7194,-81.0846,25.7177,-81.0832,WGS84,314,Cell #AE61,"17N 2844609 E, 491518 N",UTM,WGS84,1,150,612,53,-81.08393984508324,25.718364211079404,species,A,A,A +Muhlenbergia capillaris,"Muhlygrass, Hairawnmuhly",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,muhlcapi,Human Observation,2004-03-26,BICY,412-17,NA,26.1626,-81.0719,26.1649,-81.0717,WGS84,314,Cell #AF12,"17N 2893694 E, 492816 N",UTM,WGS84,1,5,412,17,-81.07186295108838,26.162982147180138,species,A,A,A +NA,NA,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,NA,Human Observation,2002-05-20,BICY,190-19,NA,25.7828,-80.8764,25.7807,-80.8773,WGS84,314,"Cell #AZ54, inside Loop Rd.","17N 2851635 E, 512389 N",UTM,WGS84,1,205,190,19,-80.87660014039014,25.78241141162989,NA,A,R,A +Cladium jamaicense,"Saw-grass, Jamaica swamp sawgrass",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,cladjama,Human Observation,2002-05-09,BICY,185-75,NA,25.7734,-80.8414,25.7713,-80.8427,WGS84,314,"Cell #BC55, Point B29S","17N 2850603 E, 515906 N",UTM,WGS84,1,210,185,75,-80.84233460049337,25.771934270901305,species,A,A,A +Rhynchospora microcarpa,Southern beaksedge,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,rhynmicr2,Human Observation,2002-08-27,BICY,230-67,NA,26.043,-80.9091,26.0433,-80.9065,WGS84,314,Cell #AW25,"17N 2880453 E, 509098 N",UTM,WGS84,1,90,230,67,-80.9074263596319,26.042999990305205,species,A,A,A +Pteridium aquilinum var. pseudocaudatum,Tailed braken fern,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,pteraquipseu,Human Observation,2002-10-29,BICY,279-58,NA,26.1134,-81.2906,26.1113,-81.2902,WGS84,314,Cell #J17,"17N 2888274 E, 470944 N",UTM,WGS84,1,175,279,58,-81.29047365260891,26.112096194610395,species,A,A,A +Taxodium ascendens,Pond cypress,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,taxoasce,Human Observation,2002-06-12,BICY,139-94,NA,26.0416,-81.0282,26.0437,-81.0284,WGS84,314,"Cell #AK25, Middle Pines, east of Cal Stone","17N 2880288 E, 497181 N",UTM,WGS84,1,355,139,94,-81.02840465097998,26.043713084197073,species,A,A,A +Taxodium ascendens,Pond cypress,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,taxoasce,Human Observation,2004-06-08,BICY,351-8,NA,25.8614,-80.9935,25.8595,-80.9926,WGS84,314,Cell #AN45,"17N 2860338 E, 500653 N",UTM,WGS84,1,160,351,8,-80.99343175637678,25.861230358746425,species,A,A,A +Blechnum serrulatum,"Swamp fern, Toothed midsorus fern",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,blecserr,Human Observation,2002-10-31,BICY,276-83,NA,25.8982,-81.257,25.8975,-81.255,WGS84,314,Cell #N41,"17N 2864436 E, 474256 N",UTM,WGS84,1,110,276,83,-81.25505411496277,25.89755939242957,species,A,A,A +Taxodium ascendens,Pond cypress,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,taxoasce,Human Observation,2002-05-08,BICY,175-87,NA,25.9,-81.0625,25.9007,-81.0648,WGS84,314,Cell #AG41,"17N 2864610 E, 493737 N",UTM,WGS84,1,290,175,87,-81.06453971613082,25.900671451970386,species,A,A,A +Mitreola petiolata,"Miterwort, Lax hornpod",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,mitrpeti,Human Observation,2003-05-13,BICY,611-69,NA,26.1457,-81.2422,26.1447,-81.2445,WGS84,314,Cell #O14,"17N 2891842 E, 475791 N",UTM,WGS84,1,265,611,69,-81.24391853886421,26.145564288561236,species,A,A,A +Cladium jamaicense,"Saw-grass, Jamaica swamp sawgrass",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,cladjama,Human Observation,2002-08-28,BICY,229-93,NA,26.0141,-80.8956,26.0125,-80.894,WGS84,314,Cell #AX28,"17N 2877249 E, 510444 N",UTM,WGS84,1,140,229,93,-80.89410711803183,26.012492372175736,species,A,A,A +Helenium pinnatifidum,Southeastern sneezeweed,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,helepinn,Human Observation,2002-08-29,BICY,250-36,NA,25.784300000000002,-81.0757,25.7839,-81.0732,WGS84,314,Cell #AF54,"17N 2851797 E, 492406 N",UTM,WGS84,1,100,250,36,-81.07481632370458,25.784158927868585,species,A,A,A +Bacopa caroliniana,"Lemon hyssop, Lemon bacopa, Blue waterhyssop",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,bacocaro,Human Observation,2004-06-16,BICY,335-81,NA,26.2329,-81.0986,26.2331,-81.0962,WGS84,314,Cell #AD04,"17N 2901479 E, 490153 N",UTM,WGS84,1,90,335,81,-81.09657336802998,26.232899985711605,species,A,A,A +Psidium guajava,Guava,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,psidguaj,Human Observation,2002-07-31,BICY,195-81,NA,26.0499,-81.3429,26.0497,-81.3404,WGS84,314,"Cell #E24, Deep Lake","17N 2881252 E, 465701 N",UTM,WGS84,1,100,195,81,-81.34090727177983,26.04958259162316,species,A,A,A +Panicum hemitomon,Maidencane,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,panihemi,Human Observation,2004-06-16,BICY,335-90,NA,26.2329,-81.0986,26.2331,-81.0962,WGS84,314,Cell #AD04,"17N 2901479 E, 490153 N",UTM,WGS84,1,90,335,90,-81.09634818670001,26.232899982360006,species,A,A,A +NA,NA,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,NA,Human Observation,2002-05-08,BICY,174-4,NA,25.9,-81.0625,25.8982,-81.0612,WGS84,314,Cell #AG41,"17N 2864610 E, 493737 N",UTM,WGS84,1,150,174,4,-81.06245010099188,25.899921829302702,NA,A,R,A +Sabal palmetto,Cabbage palm,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,sabapalm,Human Observation,2002-08-08,BICY,256-86,NA,26.1826,-80.8868,26.1805,-80.8866,WGS84,314,Cell #AY10,"17N 2895910 E, 511309 N",UTM,WGS84,1,180,256,86,-80.8868,26.18065940534057,species,A,A,A +Taxodium ascendens,Pond cypress,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,taxoasce,Human Observation,2002-09-18,BICY,225-2,NA,25.7079,-81.0433,25.7099,-81.0433,WGS84,314,Cell #AI62,"17N 2843334 E, 495652 N",UTM,WGS84,1,5,225,2,-81.0432956580165,25.707944961315253,species,A,A,A +Rhynchospora odorata,Fragrant beaksedge,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,rhynodor,Human Observation,2004-05-04,BICY,343-17,NA,25.863,-81.1021,25.8608,-81.1019,WGS84,314,Cell #AC45,"17N 2860512 E, 489770 N",UTM,WGS84,1,100,343,17,-81.10168243219292,25.862933383993163,species,A,A,A +Blechnum serrulatum,"Swamp fern, Toothed midsorus fern",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,blecserr,Human Observation,2002-11-08,BICY,271-95,NA,25.7561,-81.0054,25.7563,-81.0064,WGS84,314,"Cell #AM57, origin estimated with ARCMap","17N 2848673 E, 499461 N",UTM,WGS84,1,280,271,95,-81.00773138256133,25.756472249362513,species,A,A,A +Rhynchospora tracyi,Tracy's beaksedge,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,rhyntrac,Human Observation,2002-08-28,BICY,227-89,NA,26.0181,-80.9222,26.0166,-80.9231,WGS84,314,Cell #AU28,"17N 2877690 E, 507785 N",UTM,WGS84,1,235,227,89,-80.92402073167305,26.016948054603084,species,A,A,A +Cladium jamaicense,"Saw-grass, Jamaica swamp sawgrass",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,cladjama,Human Observation,2004-04-06,BICY,423-97,NA,25.7633,-80.9177,25.765,-80.9164,WGS84,314,Cell #AV56,"17N 2849471 E, 508257 N",UTM,WGS84,1,50,423,97,-80.91584819975306,25.764707009526962,species,A,A,A +Taxodium ascendens,Pond cypress,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,taxoasce,Human Observation,2002-05-20,BICY,191-3,NA,25.7828,-80.8764,25.7848,-80.8776,WGS84,314,"Cell #AZ54, inside Loop Rd.","17N 2851635 E, 512389 N",UTM,WGS84,1,335,191,3,-80.87643160123346,25.78286135603138,species,A,A,A +Acrostichum danaeifolium,Giant leather fern,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,acrodana,Human Observation,2002-11-15,BICY,287-58,NA,25.8652,-81.3462,25.8656,-81.3485,WGS84,314,Cell #E45,"17N 2860800 E, 465316 N",UTM,WGS84,1,290,287,58,-81.34755940968135,25.86564763999845,species,A,A,A +Taxodium ascendens,Pond cypress,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,taxoasce,Human Observation,2002-08-21,BICY,238-79,NA,25.9782,-80.899,25.9776,-80.8962,WGS84,314,Cell #AX32,"17N 2873270 E, 510111 N",UTM,WGS84,1,100,238,79,-80.8970576549835,25.97789042616909,species,A,A,A +Coccoloba diversifolia,"Pigeonplum, Tietongue",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,coccdive,Human Observation,2004-05-07,BICY,297-35,NA,25.7238,-80.9174,25.7236,-80.9199,WGS84,314,"Cell #AV60, Hess Hammock","17N 2845103 E, 508290 N",UTM,WGS84,1,270,297,35,-80.9182719423521,25.723799997391502,species,A,A,A +Flaveria linearis,Narrowleaf yellowtops,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,flavline,Human Observation,2004-06-02,BICY,357-19,NA,25.9555,-81.0064,25.9541,-81.0084,WGS84,314,Cell #AM35,"17N 2870752 E, 499364 N",UTM,WGS84,1,240,357,19,-81.00681072303922,25.955285624683707,species,A,A,A +Cladium jamaicense,"Saw-grass, Jamaica swamp sawgrass",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,cladjama,Human Observation,2004-04-01,BICY,326-22,NA,26.179,-81.0835,26.1777,-81.0817,WGS84,314,Cell #AE10,"17N 2895514 E, 491661 N",UTM,WGS84,1,140,326,22,-81.08314634594909,26.178619711060527,species,A,A,A +Spartina bakeri,Sand cordgrass,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,sparbake,Human Observation,2004-03-25,BICY,372-36,NA,25.8451,-81.3595,25.8456,-81.362,WGS84,314,Cell #C47,"17N 2858583 E, 463972 N",UTM,WGS84,1,290,372,36,-81.36034362766395,25.845377847789507,species,A,A,A +Dichanthelium erectifolium,Erectleaf witchgrass,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,dicherec,Human Observation,2002-05-21,BICY,215-83,NA,26.2303,-80.9066,26.2305,-80.9043,WGS84,314,Cell #AW04,"17N 2901187 E, 509327 N",UTM,WGS84,1,90,215,83,-80.9045233739181,26.230299984999007,species,A,A,A +Taxodium ascendens,Pond cypress,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,taxoasce,Human Observation,2002-08-09,BICY,263-46,NA,26.1792,-80.9943,26.1805,-80.9961,WGS84,314,Cell #AN10,"17N 2895533 E, 500573 N",UTM,WGS84,1,310,263,46,-80.99518126167017,26.17986720620945,species,A,A,A +Quercus virginiana,Virginia live oak,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,quervirg,Human Observation,2002-06-17,BICY,145-37,NA,25.8329,-81.1112,25.8339,-81.1134,WGS84,314,"Cell #AB48, W of Monroe Station S of Tamiami Trai","17N 2857179 E, 488852 N",UTM,WGS84,1,305,145,37,-81.1119557617947,25.833378904101462,species,A,A,A +Thelypteris interrupta,"Interrupted maiden fern, Hottentot fern",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,thelinte,Human Observation,2002-08-01,BICY,255-89,NA,26.1693,-81.2554,26.1675,-81.2543,WGS84,314,Cell #N11,"17N 2894454 E, 474478 N",UTM,WGS84,1,170,255,89,-81.2550135379649,26.167322216434414,species,A,A,A +Tillandsia fasciculata var. densispica,"Stiff-leaved wild-pine, Cardinal airplant",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,tillfascdens,Human Observation,2003-01-03,BICY,461-83,NA,26.1999,-80.9036,26.1995,-80.9062,WGS84,314,Cell #AW08,"17N 2897822 E, 509630 N",UTM,WGS84,1,260,461,83,-80.90564454045791,26.199574760704827,species,A,A,A +Taxodium ascendens,Pond cypress,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,taxoasce,Human Observation,2004-04-29,BICY,419-9,NA,25.8155,-81.0426,25.8165,-81.0447,WGS84,314,Cell #AI50,"17N 2855253 E, 495730 N",UTM,WGS84,1,300,419,9,-81.04279432423813,25.81560154775418,species,A,A,A +Taxodium ascendens,Pond cypress,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,taxoasce,Human Observation,2003-01-03,BICY,461-68,NA,26.1999,-80.9036,26.1995,-80.9062,WGS84,314,Cell #AW08,"17N 2897822 E, 509630 N",UTM,WGS84,1,260,461,68,-80.90527504603541,26.199633541043,species,A,A,A +Taxodium ascendens,Pond cypress,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,taxoasce,Human Observation,2002-05-20,BICY,188-1,NA,25.7909,-80.8837,25.7887,-80.8841,WGS84,314,Cell #AY53,"17N 2852536 E, 511658 N",UTM,WGS84,1,195,188,1,-80.88370645148883,25.79087820265396,species,A,A,A +Rhynchospora microcarpa,Southern beaksedge,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,rhynmicr2,Human Observation,2002-07-10,BICY,151-16,NA,26.0769,-81.3107,26.0763,-81.3134,WGS84,314,Cell #H21,"17N 2884234 E, 468923 N",UTM,WGS84,1,265,151,16,-81.31109826891615,26.076868532208188,species,A,A,A +Spartina bakeri,Sand cordgrass,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,sparbake,Human Observation,2004-03-25,BICY,373-86,NA,25.8451,-81.3595,25.8474,-81.3595,WGS84,314,Cell #C47,"17N 2858583 E, 463972 N",UTM,WGS84,1,180,373,86,-81.3595,25.843159314738212,species,A,A,A +Cladium jamaicense,"Saw-grass, Jamaica swamp sawgrass",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,cladjama,Human Observation,2002-05-31,BICY,129-18,NA,26.2159,-81.0498,26.2163,-81.0475,WGS84,314,"Cell #AIO6, Kissimmee Billy Area","17N 2899596 E, 495029 N",UTM,WGS84,1,80,129,18,-81.04935654356153,26.215970529829455,species,A,A,A +Hyptis alata,"Musky mint, Clustered bushmint",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,hyptalat,Human Observation,2002-10-31,BICY,277-57,NA,25.8982,-81.257,25.8971,-81.2595,WGS84,314,Cell #N41,"17N 2864436 E, 474256 N",UTM,WGS84,1,240,277,57,-81.25823156899776,25.897556865464892,species,A,A,A +Cladium jamaicense,"Saw-grass, Jamaica swamp sawgrass",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,cladjama,Human Observation,2004-06-22,BICY,313-9,NA,26.1627,-81.2799,26.1606,-81.2794,WGS84,314,Cell #L12,"17N 2893733 E, 472025 N",UTM,WGS84,1,180,313,9,-81.2799,26.162496913975417,species,A,A,A +Muhlenbergia capillaris,"Muhlygrass, Hairawnmuhly",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,muhlcapi,Human Observation,2002-05-21,BICY,215-71,NA,26.2303,-80.9066,26.2305,-80.9043,WGS84,314,Cell #AW04,"17N 2901187 E, 509327 N",UTM,WGS84,1,90,215,71,-80.90482360901423,26.230299989023074,species,A,A,A +Paspalum monostachyum,Gulfdune paspalum,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,paspmono,Human Observation,2004-04-07,BICY,436-13,NA,26.2515,-81.2499,26.2493,-81.2496,WGS84,314,Cell #O02,"17N 2903558 E, 475040 N",UTM,WGS84,1,180,436,13,-81.2499,26.25120665714066,species,A,A,A +Rhynchospora microcarpa,Southern beaksedge,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,rhynmicr2,Human Observation,2002-08-29,BICY,251-34,NA,25.784300000000002,-81.0757,25.7827,-81.0774,WGS84,314,Cell #AF54,"17N 2851797 E, 492406 N",UTM,WGS84,1,230,251,34,-81.07634918854308,25.783806817184978,species,A,A,A +Fraxinus caroliniana,"Water ash, Carolina ash, Pop ash",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,fraxcaro,Human Observation,2004-05-18,BICY,364-89,NA,26.2236,-81.0959,26.222,-81.0973,WGS84,314,Cell #AD05,"17N 2900452 E, 490421 N",UTM,WGS84,1,220,364,89,-81.09733122237934,26.222061562430884,species,A,A,A +Fraxinus caroliniana,"Water ash, Carolina ash, Pop ash",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,fraxcaro,Human Observation,2003-04-24,BICY,613-87,NA,25.7194,-81.0846,25.7216,-81.0853,WGS84,314,Cell #AE61,"17N 2844609 E, 491518 N",UTM,WGS84,1,345,613,87,-81.08516095254025,25.721296386387458,species,A,A,A +Myrica cerifera,"Wax myrtle, Southern Bayberry",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,myriceri,Human Observation,2004-05-07,BICY,368-63,NA,25.7236,-80.9208,25.7257,-80.9206,WGS84,314,Cell #AU60,"17N 2845078 E, 507948 N",UTM,WGS84,1,0,368,63,-80.9208,25.72502168820073,species,A,A,A +Salix caroliniana,Coastal Plain willow,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,salicaro,Human Observation,2003-02-05,BICY,467-58,NA,26.1795,-80.9405,26.1786,-80.9427,WGS84,314,Cell #AS10,"17N 2895569 E, 505946 N",UTM,WGS84,1,250,467,58,-80.94186302516144,26.17905236662199,species,A,A,A +Cladium jamaicense,"Saw-grass, Jamaica swamp sawgrass",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,cladjama,Human Observation,2003-02-11,BICY,489-27,NA,26.0752,-81.293,26.0762,-81.2954,WGS84,314,Cell #J21,"17N 2884040 E, 470692 N",UTM,WGS84,1,300,489,27,-81.29358425382918,26.0755046315416,species,A,A,A +Annona glabra,Pond-apple,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,annoglab,Human Observation,2004-04-15,BICY,387-8,NA,26.2539,-81.0377,26.2532,-81.0356,WGS84,314,Cell #AJ02,"17N 2903800 E, 496238 N",UTM,WGS84,1,120,387,8,-81.03752662430894,26.25380974058547,species,A,A,A +Rhynchospora inundata,Narrowfruit horned beaksedge,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,rhyninun,Human Observation,2002-10-29,BICY,291-7,NA,26.1255,-81.2857,26.1233,-81.2869,WGS84,314,Cell #K16,"17N 2889619 E, 471434 N",UTM,WGS84,1,210,291,7,-81.28578749019016,26.125363205534835,species,A,A,A +Taxodium ascendens,Pond cypress,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,taxoasce,Human Observation,2004-04-14,BICY,416-44,NA,26.2163,-81.0953,26.2174,-81.0932,WGS84,314,Cell #AJ06,"17N 2899645 E, 490479 N",UTM,WGS84,1,70,416,44,-81.09426564890799,26.216639573569655,species,A,A,A +Rhynchospora divergens,Spreading beaksedge,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,rhyndive,Human Observation,2002-09-17,BICY,222-26,NA,25.6988,-80.9736,25.6966,-80.974,WGS84,314,Cell #AP63,"17N 2842329 E, 502644 N",UTM,WGS84,1,200,222,26,-80.97382148892368,25.69824865347358,species,A,A,A +Paspalum monostachyum,Gulfdune paspalum,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,paspmono,Human Observation,2004-05-12,BICY,361-64,NA,25.9514,-80.9266,25.9534,-80.9257,WGS84,314,Cell #AU35,"17N 2870304 E, 507352 N",UTM,WGS84,1,300,361,64,-80.92798345115361,25.95212209812084,species,A,A,A +Sisyrinchium angustifolium,Narroleaf blueeyed-grass,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,sisyangu,Human Observation,2002-07-17,BICY,163-92,NA,26.0432,-81.0379,26.0411,-81.0375,WGS84,314,"Cell #AJ25, Central Pines","17N 2880474 E, 496209 N",UTM,WGS84,1,180,163,92,-81.0379,26.04112397485525,species,A,A,A +Persea palustris,Swamp bay,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,perspalu,Human Observation,2004-03-03,BICY,380-23,NA,26.1969,-81.3017,26.1947,-81.3022,WGS84,314,Cell #I08,"17N 2897525 E, 469858 N",UTM,WGS84,1,190,380,23,-81.30179989699081,26.19638888950503,species,A,A,A +Myrica cerifera,"Wax myrtle, Southern Bayberry",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,myriceri,Human Observation,2002-08-27,BICY,231-9,NA,26.043,-80.9091,26.0448,-80.9074,WGS84,314,Cell #AW25,"17N 2880453 E, 509098 N",UTM,WGS84,1,45,231,9,-80.9089410299245,26.043143605797923,species,A,A,A +Paspalum monostachyum,Gulfdune paspalum,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,paspmono,Human Observation,2004-06-16,BICY,334-73,NA,26.2329,-81.0986,26.2346,-81.0971,WGS84,314,Cell #AD04,"17N 2901479 E, 490153 N",UTM,WGS84,1,40,334,73,-81.09742595453511,26.234161852005624,species,A,A,A +Myrica cerifera,"Wax myrtle, Southern Bayberry",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,myriceri,Human Observation,2004-03-31,BICY,321-54,NA,26.1331,-81.0631,26.1352,-81.0633,WGS84,314,Cell #AG15,"17N 2890423 E, 493688 N",UTM,WGS84,1,0,321,54,-81.0631,26.134318521035034,species,A,A,A +Chrysobalanus icaco,Coco-plum,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,chryicac,Human Observation,2003-04-29,BICY,606-81,NA,25.8642,-81.2501,25.8627,-81.2519,WGS84,314,Cell #N45,"17N 2860672 E, 474942 N",UTM,WGS84,1,230,606,81,-81.25164762575665,25.86302507253479,species,A,A,A +Paspalum monostachyum,Gulfdune paspalum,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,paspmono,Human Observation,2003-02-07,BICY,493-17,NA,25.8691,-81.0272,25.8679,-81.0294,WGS84,314,Cell #AK44,"17N 2861184 E, 497273 N",UTM,WGS84,1,250,493,17,-81.02759845880314,25.868968792825573,species,A,A,A +Spartina bakeri,Sand cordgrass,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,sparbake,Human Observation,2004-03-25,BICY,373-11,NA,25.8451,-81.3595,25.8474,-81.3595,WGS84,314,Cell #C47,"17N 2858583 E, 463972 N",UTM,WGS84,1,180,373,11,-81.3595,25.844851772844272,species,A,A,A +Citrus sinensis,Sweet orange,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,citrsine,Human Observation,2002-08-01,BICY,193-29,NA,26.1696,-81.2652,26.1674,-81.2645,WGS84,314,Cell #M11,"17N 2894488 E, 473501 N",UTM,WGS84,1,170,193,29,-81.26507407241391,26.168955553870116,species,A,A,A +Ludwigia repens,Creeping primrosewillow,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,ludwrepe,Human Observation,2004-04-29,BICY,419-60,NA,25.8155,-81.0426,25.8165,-81.0447,WGS84,314,Cell #AI50,"17N 2855253 E, 495730 N",UTM,WGS84,1,300,419,60,-81.04389550118088,25.81617698009412,species,A,A,A +Tillandsia paucifolia,"Twisted wild-pine, Potbelly airplant",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,tillpauc,Human Observation,2002-05-09,BICY,183-96,NA,25.9254,-80.8441,25.9234,-80.8439,WGS84,314,Cell #BC38,"17N 2867427 E, 515616 N",UTM,WGS84,1,180,183,96,-80.8441,25.923233677606486,species,A,A,A +Spermacoce terminalis,Everglades Keys false buttonweed,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,sperterm,Human Observation,2002-04-08,BICY,170-11,NA,25.9578,-81.3129,25.959,-81.315,WGS84,314,Cell #2460/H34,"17N 2871044 E, 468672 N",UTM,WGS84,1,310,170,11,-81.31311033972267,25.95795955470294,species,A,A,A +Schinus terebinthifolius,Brazilian-pepper,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,schitere,Human Observation,2002-10-31,BICY,274-45,NA,25.9152,-81.2644,25.9163,-81.2664,WGS84,314,Cell #M39,"17N 2866314 E, 473518 N",UTM,WGS84,1,305,274,45,-81.26531980767803,25.91578244379672,species,A,A,A +Rapanea punctata,"Myrsine, Colicwood",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,rapapunc,Human Observation,2003-02-11,BICY,482-40,NA,25.963,-81.0302,25.9653,-81.0305,WGS84,314,Cell #AJ34,"17N 2871588 E, 496977 N",UTM,WGS84,1,0,482,40,-81.0302,25.963902629453415,species,A,A,A +Sabal palmetto,Cabbage palm,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,sabapalm,Human Observation,2004-05-18,BICY,366-72,NA,26.2061,-81.0978,26.2076,-81.0996,WGS84,314,Cell #AD07,"17N 2898512 E, 490230 N",UTM,WGS84,1,310,366,72,-81.09917968742167,26.207144316435482,species,A,A,A +Cornus foemina,"Stiff cornel, Swamp dogwood, Stiff dogwood",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,cornfoem,Human Observation,2004-06-22,BICY,310-78,NA,26.1685,-81.2779,26.1671,-81.2762,WGS84,314,Cell #L11,"17N 2894377 E, 472231 N",UTM,WGS84,1,170,310,78,-81.27756130454043,26.166766661487195,species,A,A,A +Ilex cassine,"Dahoon holly, Dahoon",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,ilexcass,Human Observation,2004-03-17,BICY,377-85,NA,26.1818,-81.343,26.1802,-81.3413,WGS84,314,Cell #E10,"17N 2895858 E, 465728 N",UTM,WGS84,1,150,377,85,-81.34193712297355,26.180138933559565,species,A,A,A +Cladium jamaicense,"Saw-grass, Jamaica swamp sawgrass",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,cladjama,Human Observation,2002-06-18,BICY,147-38,NA,26.1543,-81.3354,26.1527,-81.334,WGS84,314,"Cell #F13, SE of Miles City","17N 2892813 E, 466479 N",UTM,WGS84,1,135,147,38,-81.3347281617439,26.15369367179814,species,A,A,A +Scleria baldwinii,Baldwin's nutrush,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,sclebald,Human Observation,2002-09-19,BICY,221-30,NA,26.1911,-80.8875,26.1901,-80.8896,WGS84,314,Cell #AY09,"17N 2896849 E, 511241 N",UTM,WGS84,1,250,221,30,-80.88820508412788,26.190868467481533,species,A,A,A +Taxodium distichum,Bald cypress,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,taxodist,Human Observation,2002-08-07,BICY,259-40,NA,26.1609,-81.2653,26.163,-81.2655,WGS84,314,Cell #M12,"17N 2893533 E, 473488 N",UTM,WGS84,1,0,259,40,-81.2653,26.161802604710058,species,A,A,A +Quercus virginiana,Virginia live oak,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,quervirg,Human Observation,2002-11-08,BICY,288-42,NA,25.748,-80.9377,25.75,-80.9372,WGS84,314,Cell #AT58,"17N 2847783 E, 506247 N",UTM,WGS84,1,20,288,42,-80.93734205864097,25.748890629883487,species,A,A,A +Panicum repens,Torpedo grass,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,panirepe,Human Observation,2004-05-20,BICY,393-15,NA,26.2529,-80.8936,26.2541,-80.8915,WGS84,314,Cell #AX02,"17N 2903700 E, 510627 N",UTM,WGS84,1,60,393,15,-80.89327492264032,26.253069235858746,species,A,A,A +Sisyrinchium angustifolium,Narroleaf blueeyed-grass,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,sisyangu,Human Observation,2003-02-21,BICY,500-87,NA,26.0012,-80.9317,25.9991,-80.9313,WGS84,314,Cell #AT30,"17N 2875821 E, 506840 N",UTM,WGS84,1,180,500,87,-80.9317,25.99923679091539,species,A,A,A +Taxodium ascendens,Pond cypress,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,taxoasce,Human Observation,2004-03-26,BICY,414-62,NA,26.2242,-81.0649,26.2242,-81.0674,WGS84,314,Cell #AG05,"17N 2900516 E, 493515 N",UTM,WGS84,1,270,414,62,-81.06645113374306,26.224199991631814,species,A,A,A +Fraxinus caroliniana,"Water ash, Carolina ash, Pop ash",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,fraxcaro,Human Observation,2004-05-05,BICY,331-59,NA,26.2506,-81.0295,26.2527,-81.0285,WGS84,314,Cell #AK02,"17N 2903435 E, 497051 N",UTM,WGS84,1,30,331,59,-81.02876178654817,26.25175295964892,species,A,A,A +Serenoa repens,Saw palmetto,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,sererepe,Human Observation,2002-06-18,BICY,148-100,NA,26.1363,-81.3348,26.137,-81.3325,WGS84,314,"Cell #F15, SE of Miles City","17N 2890819 E, 466533 N",UTM,WGS84,1,70,148,100,-81.33245079760394,26.137071755974638,species,A,A,A +Centella asiatica,"Coinwort, Spadeleaf",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,centasia,Human Observation,2004-03-30,BICY,389-76,NA,26.1428,-80.8861,26.142,-80.8883,WGS84,314,Cell #AY14,"17N 2891503 E, 511389 N",UTM,WGS84,1,250,389,76,-80.88788547202643,26.142213440316382,species,A,A,A +Piloblephis rigida,Wild pennyroyal,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,pilorigi,Human Observation,2003-01-04,BICY,460-78,NA,26.2036,-80.9318,26.2058,-80.9315,WGS84,314,Cell #AT07,"17N 2898234 E, 506815 N",UTM,WGS84,1,10,460,78,-80.93146119301555,26.205333328842006,species,A,A,A +Myrica cerifera,"Wax myrtle, Southern Bayberry",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,myriceri,Human Observation,2003-01-03,BICY,458-11,NA,26.2306,-80.9468,26.2319,-80.9444,WGS84,314,Cell #AS04,"17N 2901222 E, 505314 N",UTM,WGS84,1,60,458,11,-80.94656165551669,26.23072410675415,species,A,A,A +Blechnum serrulatum,"Swamp fern, Toothed midsorus fern",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,blecserr,Human Observation,2004-05-05,BICY,330-94,NA,26.2506,-81.0295,26.2484,-81.0298,WGS84,314,Cell #AK02,"17N 2903435 E, 497051 N",UTM,WGS84,1,185,330,94,-81.02970500840094,26.248486976204912,species,A,A,A +Sabal palmetto,Cabbage palm,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,sabapalm,Human Observation,2004-03-24,BICY,370-25,NA,25.9769,-81.3355,25.9789,-81.3346,WGS84,314,Cell #F32,"17N 2873174 E, 466418 N",UTM,WGS84,1,30,370,25,-81.33518792714445,25.977388561262217,species,A,A,A +Ruellia succulenta,Thickleaf wild petunia,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,ruelsucc,Human Observation,2004-04-07,BICY,432-28,NA,26.25,-81.2548,26.2478,-81.2547,WGS84,314,Cell #N02,"17N 2903396 E, 474557 N",UTM,WGS84,1,180,432,28,-81.2548,26.249368184463812,species,A,A,A +Annona glabra,Pond-apple,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,annoglab,Human Observation,2003-04-29,BICY,607-90,NA,25.8642,-81.2501,25.8662,-81.252,WGS84,314,Cell #N45,"17N 2860672 E, 474942 N",UTM,WGS84,1,320,607,90,-81.25154293560504,25.865755786087636,species,A,A,A +Tillandsia variabilis,"Soft-leaved wild-pine, Leatherleaf airplant",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,tillvari,Human Observation,2004-04-29,BICY,405-91,NA,25.8211,-81.0303,25.8202,-81.0326,WGS84,314,Cell #AJ50,"17N 2855868 E, 496959 N",UTM,WGS84,1,250,405,91,-81.03243205563874,25.820397638333425,species,A,A,A +Myrica cerifera,"Wax myrtle, Southern Bayberry",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,myriceri,Human Observation,2002-08-09,BICY,263-58,NA,26.1792,-80.9943,26.1805,-80.9961,WGS84,314,Cell #AN10,"17N 2895533 E, 500573 N",UTM,WGS84,1,310,263,58,-80.99541115766941,26.180041259105646,species,A,A,A +Cladium jamaicense,"Saw-grass, Jamaica swamp sawgrass",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,cladjama,Human Observation,2002-09-17,BICY,197-38,NA,25.7085,-80.9687,25.7065,-80.9691,WGS84,314,Cell #AQ62,"17N 2843408 E, 503144 N",UTM,WGS84,1,190,197,38,-80.9688643671179,25.70765549956022,species,A,A,A +NA,NA,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,NA,Human Observation,2002-05-20,BICY,190-51,NA,25.7828,-80.8764,25.7807,-80.8773,WGS84,314,"Cell #AZ54, inside Loop Rd.","17N 2851635 E, 512389 N",UTM,WGS84,1,205,190,51,-80.87693721599395,25.781756946337328,NA,A,R,A +NA,NA,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,NA,Human Observation,2002-06-13,BICY,136-90,NA,26.0401,-81.0673,26.0421,-81.0672,WGS84,314,"Cell #AG25, Middle Pines, near Cal Stone","17N 2880124 E, 493267 N",UTM,WGS84,1,5,136,90,-81.06710406021493,26.04212316615924,NA,A,R,A +NA,NA,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,unknown,Human Observation,2002-11-08,BICY,271-15,NA,25.7561,-81.0054,25.7563,-81.0064,WGS84,314,"Cell #AM57, origin estimated with ARCMap","17N 2848673 E, 499461 N",UTM,WGS84,1,280,271,15,-81.00576811206956,25.75615877869819,NA,A,R,A +Sabal palmetto,Cabbage palm,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,sabapalm,Human Observation,2002-11-08,BICY,270-17,NA,25.7556,-81.003,25.7566,-81.0018,WGS84,314,"Cell #AM57, origin estimated with ARCMap","17N 2848614 E, 499702 N",UTM,WGS84,1,80,270,17,-81.00258280804076,25.75566661579219,species,A,A,A +Cladium jamaicense,"Saw-grass, Jamaica swamp sawgrass",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,cladjama,Human Observation,2002-09-17,BICY,222-23,NA,25.6988,-80.9736,25.6966,-80.974,WGS84,314,Cell #AP63,"17N 2842329 E, 502644 N",UTM,WGS84,1,200,222,23,-80.97379593261353,25.698312270399768,species,A,A,A +Taxodium ascendens,Pond cypress,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,taxoasce,Human Observation,2004-04-09,BICY,442-48,NA,25.7911,-81.0952,25.7893,-81.0965,WGS84,314,Cell #AD53,"17N 2852556 E, 490453 N",UTM,WGS84,1,215,442,48,-81.0958862681343,25.79021270833703,species,A,A,A +Serenoa repens,Saw palmetto,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,sererepe,Human Observation,2002-04-09,BICY,181-5,NA,26.1888,-81.2352,26.1889,-81.2377,WGS84,314,Cell #3893; P09,"17N 2896616 E, 476496 N",UTM,WGS84,1,280,181,5,-81.23532315377633,26.188819591830427,species,A,A,A +Taxodium ascendens,Pond cypress,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,taxoasce,Human Observation,2004-05-18,BICY,364-71,NA,26.2236,-81.0959,26.222,-81.0973,WGS84,314,Cell #AD05,"17N 2900452 E, 490421 N",UTM,WGS84,1,220,364,71,-81.09704176471091,26.222372708283775,species,A,A,A +Taxodium ascendens,Pond cypress,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,taxoasce,Human Observation,2002-05-22,BICY,219-5,NA,25.7737,-81.0393,25.7735,-81.0388,WGS84,314,Cell #AJ55 (North of Loop Road),"17N 2850623 E, 496063 N",UTM,WGS84,1,155,219,5,-81.03924733536763,25.773597739803417,species,A,A,A +Panicum repens,Torpedo grass,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,panirepe,Human Observation,2004-05-20,BICY,393-57,NA,26.2529,-80.8936,26.2541,-80.8915,WGS84,314,Cell #AX02,"17N 2903700 E, 510627 N",UTM,WGS84,1,60,393,57,-80.8923647010215,26.253543092328314,species,A,A,A +Muhlenbergia capillaris,"Muhlygrass, Hairawnmuhly",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,muhlcapi,Human Observation,2004-03-30,BICY,391-82,NA,26.1527,-80.8913,26.1549,-80.891,WGS84,314,Cell #AX13,"17N 2892602 E, 510865 N",UTM,WGS84,1,10,391,82,-80.89094397271622,26.154522230357323,species,A,A,A +Cladium jamaicense,"Saw-grass, Jamaica swamp sawgrass",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,cladjama,Human Observation,2004-03-17,BICY,376-99,NA,26.1818,-81.343,26.1797,-81.3438,WGS84,314,Cell #E10,"17N 2895858 E, 465728 N",UTM,WGS84,1,220,376,99,-81.34459146317975,26.180088693436154,species,A,A,A +Ruellia succulenta,Thickleaf wild petunia,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,ruelsucc,Human Observation,2004-04-07,BICY,436-74,NA,26.2515,-81.2499,26.2493,-81.2496,WGS84,314,Cell #O02,"17N 2903558 E, 475040 N",UTM,WGS84,1,180,436,74,-81.2499,26.24983020202528,species,A,A,A +Ardisia escallonioides,Marlberry,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,ardiesca,Human Observation,2002-07-31,BICY,194-51,NA,26.0499,-81.3429,26.0503,-81.3446,WGS84,314,"Cell #E24, Deep Lake","17N 2881252 E, 465701 N",UTM,WGS84,1,290,194,51,-81.34409720964224,26.050293605076394,species,A,A,A +NA,NA,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,NA,Human Observation,2002-11-05,BICY,293-97,NA,26.0816,-81.2488,26.0816,-81.2464,WGS84,314,Cell #O21,"17N 2884745 E, 475114 N",UTM,WGS84,1,90,293,97,-81.24637617424298,26.081599979645024,NA,A,R,A +Muhlenbergia capillaris,"Muhlygrass, Hairawnmuhly",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,muhlcapi,Human Observation,2003-02-05,BICY,466-10,NA,26.1795,-80.9152,26.1814,-80.9138,WGS84,314,Cell #AV10,"17N 2895561 E, 508470 N",UTM,WGS84,1,30,466,10,-80.91507495611722,26.179695419102433,species,A,A,A +Schinus terebinthifolius,Brazilian-pepper,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,schitere,Human Observation,2002-07-31,BICY,252-8,NA,26.0454,-81.3423,26.045,-81.3444,WGS84,314,Cell #E25,"17N 2880757 E, 465755 N",UTM,WGS84,1,250,252,8,-81.34248778969547,26.04533825708644,species,A,A,A +Bacopa caroliniana,"Lemon hyssop, Lemon bacopa, Blue waterhyssop",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,bacocaro,Human Observation,2003-02-06,BICY,454-60,NA,25.953,-81.3496,25.9516,-81.3514,WGS84,314,Cell #D35,"17N 2870527 E, 464999 N",UTM,WGS84,1,240,454,60,-81.35089698765815,25.952323021093076,species,A,A,A +Taxodium ascendens,Pond cypress,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,taxoasce,Human Observation,2002-06-17,BICY,144-32,NA,25.8329,-81.1112,25.8352,-81.1114,WGS84,314,"Cell #AB48, W of Monroe Station S of Tamiami Trai","17N 2857179 E, 488852 N",UTM,WGS84,1,5,144,32,-81.11113045505716,25.833619368638836,species,A,A,A +Serenoa repens,Saw palmetto,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,sererepe,Human Observation,2003-02-11,BICY,492-29,NA,25.8735,-81.2566,25.8756,-81.2553,WGS84,314,Cell #N44,"17N 2861698 E, 474294 N",UTM,WGS84,1,50,492,29,-81.25604586094902,25.873920648446415,species,A,A,A +Annona glabra,Pond-apple,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,annoglab,Human Observation,2004-04-29,BICY,404-14,NA,25.8211,-81.0303,25.8192,-81.0318,WGS84,314,Cell #AJ50,"17N 2855868 E, 496959 N",UTM,WGS84,1,220,404,14,-81.0305243719368,25.820857986075968,species,A,A,A +Paspalum monostachyum,Gulfdune paspalum,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,paspmono,Human Observation,2002-08-29,BICY,250-35,NA,25.784300000000002,-81.0757,25.7839,-81.0732,WGS84,314,Cell #AF54,"17N 2851797 E, 492406 N",UTM,WGS84,1,100,250,35,-81.07484087024012,25.784162846611416,species,A,A,A +Fraxinus caroliniana,"Water ash, Carolina ash, Pop ash",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,fraxcaro,Human Observation,2004-04-29,BICY,404-49,NA,25.8211,-81.0303,25.8192,-81.0318,WGS84,314,Cell #AJ50,"17N 2855868 E, 496959 N",UTM,WGS84,1,220,404,49,-81.03108529778808,25.82025294971525,species,A,A,A +Serenoa repens,Saw palmetto,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,sererepe,Human Observation,2004-06-22,BICY,310-39,NA,26.1685,-81.2779,26.1671,-81.2762,WGS84,314,Cell #L11,"17N 2894377 E, 472231 N",UTM,WGS84,1,170,310,39,-81.27773065101835,26.16763333089536,species,A,A,A +Sabal palmetto,Cabbage palm,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,sabapalm,Human Observation,2003-05-13,BICY,610-51,NA,26.1457,-81.2422,26.1436,-81.2431,WGS84,314,Cell #O14,"17N 2891842 E, 475791 N",UTM,WGS84,1,210,610,51,-81.24283753353728,26.144703356128495,species,A,A,A +Taxodium ascendens,Pond cypress,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,taxoasce,Human Observation,2004-03-31,BICY,319-44,NA,26.1349,-81.057,26.1335,-81.055,WGS84,314,Cell #AH15,"17N 2890624 E, 494305 N",UTM,WGS84,1,130,319,44,-81.0561573817379,26.134261793727916,species,A,A,A +Rhynchospora divergens,Spreading beaksedge,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,rhyndive,Human Observation,2003-02-05,BICY,466-42,NA,26.1795,-80.9152,26.1814,-80.9138,WGS84,314,Cell #AV10,"17N 2895561 E, 508470 N",UTM,WGS84,1,30,466,42,-80.91467481288956,26.180320759464532,species,A,A,A +Cladium jamaicense,"Saw-grass, Jamaica swamp sawgrass",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,cladjama,Human Observation,2002-08-21,BICY,239-81,NA,25.9782,-80.899,25.9802,-80.8984,WGS84,314,Cell #AX32,"17N 2873270 E, 510111 N",UTM,WGS84,1,25,239,81,-80.8981453499425,25.979856565618284,species,A,A,A +Cladium jamaicense,"Saw-grass, Jamaica swamp sawgrass",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,cladjama,Human Observation,2004-05-13,BICY,430-59,NA,25.9072,-81.2737,25.9054,-81.2743,WGS84,314,Cell #L40,"17N 2865437 E, 472583 N",UTM,WGS84,1,220,430,59,-81.27464624661282,25.906180093862798,species,A,A,A +Salix caroliniana,Coastal Plain willow,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,salicaro,Human Observation,2002-08-22,BICY,244-98,NA,25.9154,-81.2418,25.9144,-81.2439,WGS84,314,"Cell #O39, endpoint corrected using arcmap","17N 2866336 E, 475780 N",UTM,WGS84,1,245,244,98,-81.24401624087237,25.91446538095698,species,A,A,A +Ilex cassine,"Dahoon holly, Dahoon",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,ilexcass,Human Observation,2004-05-26,BICY,359-98,NA,25.8254,-81.0222,25.8255,-81.0246,WGS84,314,Cell #AK49,"17N 2856346 E, 497776 N",UTM,WGS84,1,280,359,98,-81.02460640382857,25.825784000277075,species,A,A,A +Cladium jamaicense,"Saw-grass, Jamaica swamp sawgrass",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,cladjama,Human Observation,2002-08-27,BICY,235-66,NA,26.0528,-80.905,26.0506,-80.905,WGS84,314,"Cell #AW24, endpoint estimated using arcmap","17N 2881537 E, 509501 N",UTM,WGS84,1,180,235,66,-80.905,26.051310679653696,species,A,A,A +Cladium jamaicense,"Saw-grass, Jamaica swamp sawgrass",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,cladjama,Human Observation,2004-05-07,BICY,369-58,NA,25.7236,-80.9208,25.7235,-80.9229,WGS84,314,Cell #AU60,"17N 2845078 E, 507948 N",UTM,WGS84,1,270,369,58,-80.92224493062385,25.72359999283682,species,A,A,A +Ludwigia microcarpa,Smallfruit primrosewillow,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,ludwmicr,Human Observation,2002-11-08,BICY,289-97,NA,25.748,-80.9377,25.748,-80.9352,WGS84,314,Cell #AT58,"17N 2847783 E, 506247 N",UTM,WGS84,1,95,289,97,-80.93529218599629,25.747809201281104,species,A,A,A +Serenoa repens,Saw palmetto,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,sererepe,Human Observation,2004-06-22,BICY,313-68,NA,26.1627,-81.2799,26.1606,-81.2794,WGS84,314,Cell #L12,"17N 2893733 E, 472025 N",UTM,WGS84,1,180,313,68,-81.2799,26.161165572116825,species,A,A,A +Taxodium ascendens,Pond cypress,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,taxoasce,Human Observation,2002-08-29,BICY,250-17,NA,25.784300000000002,-81.0757,25.7839,-81.0732,WGS84,314,Cell #AF54,"17N 2851797 E, 492406 N",UTM,WGS84,1,100,250,17,-81.07528270815551,25.784233383273794,species,A,A,A +Rapanea punctata,"Myrsine, Colicwood",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,rapapunc,Human Observation,2003-02-13,BICY,479-65,NA,25.9309,-81.0264,25.9302,-81.0289,WGS84,314,Cell #AK37,"17N 2868028 E, 497353 N",UTM,WGS84,1,250,479,65,-81.02792430799886,25.930398323845903,species,A,A,A +Centrosema virginianum,Spurred butterfly-pea,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,centvirg,Human Observation,2004-06-03,BICY,352-95,NA,26.0243,-81.0653,26.0258,-81.067,WGS84,314,Cell #AG27,"17N 2878374 E, 493467 N",UTM,WGS84,1,335,352,95,-81.06630276113883,26.02624287265822,species,A,A,A +Cladium jamaicense,"Saw-grass, Jamaica swamp sawgrass",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,cladjama,Human Observation,2002-05-29,BICY,207-47,NA,26.1989,-81.2169,26.2003,-81.2148,WGS84,314,Cell #R08,"17N 2897730 E, 478329 N",UTM,WGS84,1,60,207,47,-81.21588189138772,26.199430273877997,species,A,A,A +Pluchea rosea,Rosy camphorweed,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,plucrose,Human Observation,2004-06-10,BICY,315-100,NA,26.1551,-81.1871,26.1539,-81.1851,WGS84,314,Cell #U13,"17N 2892878 E, 481301 N",UTM,WGS84,1,125,315,100,-81.18505185327507,26.153805702214523,species,A,A,A +Rhynchospora inundata,Narrowfruit horned beaksedge,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,rhyninun,Human Observation,2004-05-05,BICY,331-55,NA,26.2506,-81.0295,26.2527,-81.0285,WGS84,314,Cell #AK02,"17N 2903435 E, 497051 N",UTM,WGS84,1,30,331,55,-81.0288118353783,26.25167479301879,species,A,A,A +Taxodium ascendens,Pond cypress,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,taxoasce,Human Observation,2003-11-26,BICY,474-40,NA,25.8255,-80.9092,25.8276,-80.9083,WGS84,314,Cell #AW49,"17N 2856359 E, 509099 N",UTM,WGS84,1,15,474,40,-80.90894186354473,25.82637188940324,species,A,A,A +Myrica cerifera,"Wax myrtle, Southern Bayberry",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,myriceri,Human Observation,2004-05-20,BICY,401-63,NA,26.2504,-80.8822,26.2511,-80.8799,WGS84,314,Cell #AY02,"17N 2903418 E, 511768 N",UTM,WGS84,1,80,401,63,-80.88064744199556,26.250646847218793,species,A,A,A +Cladium jamaicense,"Saw-grass, Jamaica swamp sawgrass",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,cladjama,Human Observation,2002-08-23,BICY,237-68,NA,25.8448,-81.2201,25.8466,-81.2215,WGS84,314,Cell #Q47,"17N 2858519 E, 477943 N",UTM,WGS84,1,330,237,68,-81.22094789906245,25.84612890921281,species,A,A,A +Fraxinus caroliniana,"Water ash, Carolina ash, Pop ash",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,fraxcaro,Human Observation,2004-06-22,BICY,312-94,NA,26.1627,-81.2799,26.164,-81.278,WGS84,314,Cell #L12,"17N 2893733 E, 472025 N",UTM,WGS84,1,50,312,94,-81.27809940371633,26.164063418699314,species,A,A,A +Cladium jamaicense,"Saw-grass, Jamaica swamp sawgrass",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,cladjama,Human Observation,2002-05-07,BICY,130-43,NA,25.8803,-81.2219,25.881,-81.2243,WGS84,314,"Cell #Q43, East of Burns Lake Rd. Q43","17N 2862448 E, 477773 N",UTM,WGS84,1,290,130,43,-81.2229079653584,25.880631871563516,species,A,A,A +Cladium jamaicense,"Saw-grass, Jamaica swamp sawgrass",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,cladjama,Human Observation,2002-05-07,BICY,169-47,NA,25.8341,-81.0889,25.836,-81.0888,WGS84,314,"Cell #AE48, W. of Loop Rd. S of Monroe","17N 2857310 E, 491088 N",UTM,WGS84,1,0,169,47,-81.0889,25.835160608448742,species,A,A,A +Ludwigia repens,Creeping primrosewillow,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,ludwrepe,Human Observation,2002-05-22,BICY,219-71,NA,25.7737,-81.0393,25.7735,-81.0388,WGS84,314,Cell #AJ55 (North of Loop Road),"17N 2850623 E, 496063 N",UTM,WGS84,1,155,219,71,-81.03855217068093,25.772247903287706,species,A,A,A +Smilax auriculata,Earleaf greenbrier,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,smilauri,Human Observation,2003-02-13,BICY,480-65,NA,25.9309,-81.0264,25.9289,-81.0261,WGS84,314,Cell #AK37,"17N 2868028 E, 497353 N",UTM,WGS84,1,170,480,65,-81.02611832150852,25.929455503803325,species,A,A,A +Eleocharis cellulosa,Gulf Coast spikerush,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,eleocell,Human Observation,2002-05-20,BICY,191-8,NA,25.7828,-80.8764,25.7848,-80.8776,WGS84,314,"Cell #AZ54, inside Loop Rd.","17N 2851635 E, 512389 N",UTM,WGS84,1,335,191,8,-80.87648427002814,25.782963616067267,species,A,A,A +Acrostichum danaeifolium,Giant leather fern,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,acrodana,Human Observation,2003-06-04,BICY,520-96,NA,25.8672,-81.353,25.8671,-81.3506,WGS84,314,Cell #D44 (originally labeled E45),"17N 2861021 E, 464635 N",UTM,WGS84,1,90,520,96,-81.3506055076404,25.867199980250348,species,A,A,A +Acer rubrum,Red maple,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,acerrubr,Human Observation,2004-06-16,BICY,335-9,NA,26.2329,-81.0986,26.2331,-81.0962,WGS84,314,Cell #AD04,"17N 2901479 E, 490153 N",UTM,WGS84,1,90,335,9,-81.09837481866998,26.2328999998236,species,A,A,A +Sabal palmetto,Cabbage palm,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,sabapalm,Human Observation,2004-06-01,BICY,316-27,NA,25.9346,-81.0368,25.9352,-81.0391,WGS84,314,Cell #AJ37,"17N 2868446 E, 496319 N",UTM,WGS84,1,300,316,27,-81.03738355859672,25.934904637472652,species,A,A,A +Blechnum serrulatum,"Swamp fern, Toothed midsorus fern",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,blecserr,Human Observation,2004-03-26,BICY,414-53,NA,26.2242,-81.0649,26.2242,-81.0674,WGS84,314,Cell #AG05,"17N 2900516 E, 493515 N",UTM,WGS84,1,270,414,53,-81.06622596916748,26.22419999388495,species,A,A,A +Cephalanthus occidentalis,Common buttonbush,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,cephocci,Human Observation,2003-05-13,BICY,610-79,NA,26.1457,-81.2422,26.1436,-81.2431,WGS84,314,Cell #O14,"17N 2891842 E, 475791 N",UTM,WGS84,1,210,610,79,-81.2431875473455,26.144156177842707,species,A,A,A +Rhynchospora microcarpa,Southern beaksedge,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,rhynmicr2,Human Observation,2004-05-04,BICY,345-52,NA,25.8178,-80.8904,25.8179,-80.8928,WGS84,314,Cell #AX50,"17N 2855514 E, 510987 N",UTM,WGS84,1,270,345,52,-80.89169647812676,25.817799994218067,species,A,A,A +Pleopeltis polypodioides var. michauxiana,Resurrection fern,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,pleopolymich,Human Observation,2004-04-28,BICY,409-6,NA,25.8148,-81.0772,25.8145,-81.0796,WGS84,314,Cell #AF50,"17N 2855174 E, 492265 N",UTM,WGS84,1,220,409,6,-81.07729615442571,25.814696279700353,species,A,A,A +Mikania scandens,"Climbing hempweed, Climbing hempvine",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,mikascan,Human Observation,2004-04-02,BICY,427-26,NA,26.2477,-80.9374,26.2497,-80.9363,WGS84,314,Cell #AT02,"17N 2903122 E, 506250 N",UTM,WGS84,1,30,427,26,-80.9370746954694,26.248208084608585,species,A,A,A +Crinum americanum,"Swamp-lily, Seven-sisters, String-lily",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,crinamer,Human Observation,2002-07-31,BICY,195-8,NA,26.0499,-81.3429,26.0497,-81.3404,WGS84,314,"Cell #E24, Deep Lake","17N 2881252 E, 465701 N",UTM,WGS84,1,100,195,8,-81.34270318685857,26.049868652248716,species,A,A,A +Eriocaulon compressum,Flattened pipewort,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,eriocomp,Human Observation,2004-03-30,BICY,388-78,NA,26.1428,-80.8861,26.1411,-80.8845,WGS84,314,Cell #AY14,"17N 2891503 E, 511389 N",UTM,WGS84,1,145,388,78,-80.8849814989884,26.1413582193379,species,A,A,A +Taxodium ascendens,Pond cypress,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,taxoasce,Human Observation,2002-08-27,BICY,235-97,NA,26.0528,-80.905,26.0506,-80.905,WGS84,314,"Cell #AW24, endpoint estimated using arcmap","17N 2881537 E, 509501 N",UTM,WGS84,1,180,235,97,-80.905,26.050611150294113,species,A,A,A +Myrica cerifera,"Wax myrtle, Southern Bayberry",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,myriceri,Human Observation,2002-08-09,BICY,261-81,NA,26.1786,-81.0048,26.1769,-81.0032,WGS84,314,Cell #AM10,"17N 2895459 E, 499518 N",UTM,WGS84,1,145,261,81,-81.00363812566675,26.177102773493385,species,A,A,A +Taxodium ascendens,Pond cypress,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,taxoasce,Human Observation,2004-03-31,BICY,320-44,NA,26.1331,-81.0631,26.1321,-81.0609,WGS84,314,Cell #AG15,"17N 2890423 E, 493688 N",UTM,WGS84,1,120,320,44,-81.06214742013123,26.132603562296886,species,A,A,A +Eleocharis cellulosa,Gulf Coast spikerush,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,eleocell,Human Observation,2002-08-27,BICY,235-34,NA,26.0528,-80.905,26.0506,-80.905,WGS84,314,"Cell #AW24, endpoint estimated using arcmap","17N 2881537 E, 509501 N",UTM,WGS84,1,180,235,34,-80.905,26.052032774405415,species,A,A,A +Rapanea punctata,"Myrsine, Colicwood",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,rapapunc,Human Observation,2004-03-24,BICY,370-70,NA,25.9769,-81.3355,25.9789,-81.3346,WGS84,314,Cell #F32,"17N 2873174 E, 466418 N",UTM,WGS84,1,30,370,70,-81.33462618950502,25.97826796975523,species,A,A,A +Amphicarpum muhlenbergianum,Blue-maidencane,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,amphmuhl,Human Observation,2004-04-07,BICY,432-44,NA,26.25,-81.2548,26.2478,-81.2547,WGS84,314,Cell #N02,"17N 2903396 E, 474557 N",UTM,WGS84,1,180,432,44,-81.2548,26.24900714698961,species,A,A,A +Acer rubrum,Red maple,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,acerrubr,Human Observation,2004-04-15,BICY,387-46,NA,26.2539,-81.0377,26.2532,-81.0356,WGS84,314,Cell #AJ02,"17N 2903800 E, 496238 N",UTM,WGS84,1,120,387,46,-81.03670309343592,26.253381005493313,species,A,A,A +Taxodium ascendens,Pond cypress,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,taxoasce,Human Observation,2004-04-29,BICY,405-41,NA,25.8211,-81.0303,25.8202,-81.0326,WGS84,314,Cell #AJ50,"17N 2855868 E, 496959 N",UTM,WGS84,1,250,405,41,-81.0312605996102,25.820783555216646,species,A,A,A +Taxodium ascendens,Pond cypress,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,taxoasce,Human Observation,2002-08-08,BICY,256-87,NA,26.1826,-80.8868,26.1805,-80.8866,WGS84,314,Cell #AY10,"17N 2895910 E, 511309 N",UTM,WGS84,1,180,256,87,-80.8868,26.180636840283313,species,A,A,A +Hyptis alata,"Musky mint, Clustered bushmint",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,hyptalat,Human Observation,2003-04-24,BICY,613-35,NA,25.7194,-81.0846,25.7216,-81.0853,WGS84,314,Cell #AE61,"17N 2844609 E, 491518 N",UTM,WGS84,1,345,613,35,-81.08482566842335,25.72016291438282,species,A,A,A +Myrica cerifera,"Wax myrtle, Southern Bayberry",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,myriceri,Human Observation,2002-09-19,BICY,221-77,NA,26.1911,-80.8875,26.1901,-80.8896,WGS84,314,Cell #AY09,"17N 2896849 E, 511241 N",UTM,WGS84,1,250,221,77,-80.88930971032325,26.190505726241064,species,A,A,A +Fraxinus caroliniana,"Water ash, Carolina ash, Pop ash",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,fraxcaro,Human Observation,2004-04-29,BICY,404-30,NA,25.8211,-81.0303,25.8192,-81.0318,WGS84,314,Cell #AJ50,"17N 2855868 E, 496959 N",UTM,WGS84,1,220,404,30,-81.0307807958905,25.82058139830022,species,A,A,A +Taxodium ascendens,Pond cypress,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,taxoasce,Human Observation,2004-04-14,BICY,416-93,NA,26.2163,-81.0953,26.2174,-81.0932,WGS84,314,Cell #AJ06,"17N 2899645 E, 490479 N",UTM,WGS84,1,70,416,93,-81.09311375085214,26.21701772626903,species,A,A,A +Sabal palmetto,Cabbage palm,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,sabapalm,Human Observation,2004-04-14,BICY,416-87,NA,26.2163,-81.0953,26.2174,-81.0932,WGS84,314,Cell #AJ06,"17N 2899645 E, 490479 N",UTM,WGS84,1,70,416,87,-81.09325479999379,26.216971422353733,species,A,A,A +Spartina bakeri,Sand cordgrass,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,sparbake,Human Observation,2003-06-04,BICY,521-88,NA,25.8672,-81.353,25.8687,-81.3513,WGS84,314,Cell #D44 (originally labeled E45),"17N 2861021 E, 464635 N",UTM,WGS84,1,60,521,88,-81.3510991005026,25.86819289306896,species,A,A,A +NA,NA,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,NA,Human Observation,2004-06-08,BICY,350-37,NA,25.8614,-80.9935,25.8614,-80.996,WGS84,314,Cell #AN45,"17N 2860338 E, 500653 N",UTM,WGS84,1,250,350,37,-80.9943671765429,25.861114429738386,NA,A,R,A +Fuirena scirpoidea,Southern umbrellasedge,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,fuirscir,Human Observation,2002-08-27,BICY,230-13,NA,26.043,-80.9091,26.0433,-80.9065,WGS84,314,Cell #AW25,"17N 2880453 E, 509098 N",UTM,WGS84,1,90,230,13,-80.90877526380915,26.042999999635015,species,A,A,A +Taxodium ascendens,Pond cypress,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,taxoasce,Human Observation,2004-05-18,BICY,364-59,NA,26.2236,-81.0959,26.222,-81.0973,WGS84,314,Cell #AD05,"17N 2900452 E, 490421 N",UTM,WGS84,1,220,364,59,-81.09684879207634,26.222580138521103,species,A,A,A +Paspalum monostachyum,Gulfdune paspalum,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,paspmono,Human Observation,2003-02-11,BICY,490-39,NA,26.0752,-81.293,26.0774,-81.2932,WGS84,314,Cell #J21,"17N 2884040 E, 470692 N",UTM,WGS84,1,5,490,39,-81.29291506828429,26.076076701175776,species,A,A,A +Panicum tenerum,Bluejoint panicum,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,panitene,Human Observation,2002-08-27,BICY,231-79,NA,26.043,-80.9091,26.0448,-80.9074,WGS84,314,Cell #AW25,"17N 2880453 E, 509098 N",UTM,WGS84,1,45,231,79,-80.90770458278303,26.044260533712613,species,A,A,A +Eriocaulon ravenelii,Ravenel's pipewort,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,eriorave,Human Observation,2002-11-08,BICY,271-37,NA,25.7561,-81.0054,25.7563,-81.0064,WGS84,314,"Cell #AM57, origin estimated with ARCMap","17N 2848673 E, 499461 N",UTM,WGS84,1,280,271,37,-81.00630801042716,25.756244985771204,species,A,A,A +Sabal palmetto,Cabbage palm,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,sabapalm,Human Observation,2004-06-24,BICY,322-31,NA,26.2493,-81.0753,26.2472,-81.0743,WGS84,314,Cell #AF02,"17N 2903294 E, 492483 N",UTM,WGS84,1,20,322,31,-81.07503468204506,26.249957324199677,species,A,A,A +NA,NA,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,NA,Human Observation,2003-05-27,BICY,526-8,NA,25.7363,-80.8579,25.7376,-80.8559,WGS84,314,Cell #BB59,"17N 2846491 E, 514249 N",UTM,WGS84,1,60,526,8,-80.85772738199728,25.736390265666138,NA,A,R,A +NA,NA,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,NA,Human Observation,2002-05-17,BICY,186-64,NA,26.0077,-81.2502,26.0099,-81.2509,WGS84,314,Cell #N29/185,"17N 2876558 E, 474962 N",UTM,WGS84,1,350,186,64,-81.25047753185183,26.009122257268697,NA,A,R,A +Paspalum monostachyum,Gulfdune paspalum,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,paspmono,Human Observation,2002-07-10,BICY,153-96,NA,26.0821,-81.3342,26.0798,-81.3337,WGS84,314,"Cell #F21, W of Prairie Fire Trail","17N 2884819 E, 466581 N",UTM,WGS84,1,170,153,96,-81.33378345195776,26.079966634546782,species,A,A,A +Hymenocallis palmeri,Alligatorlily,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,hymepalm,Human Observation,2002-07-10,BICY,151-99,NA,26.0769,-81.3107,26.0763,-81.3134,WGS84,314,Cell #H21,"17N 2884234 E, 468923 N",UTM,WGS84,1,265,151,99,-81.31316428550107,26.076705275398496,species,A,A,A +NA,NA,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,NA,Human Observation,2002-05-17,BICY,186-5,NA,26.0077,-81.2502,26.0099,-81.2509,WGS84,314,Cell #N29/185,"17N 2876558 E, 474962 N",UTM,WGS84,1,350,186,5,-81.25022168193516,26.007811113878372,NA,A,R,A +NA,NA,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,NA,Human Observation,2002-05-20,BICY,189-20,NA,25.7909,-80.8837,25.7895,-80.8818,WGS84,314,Cell #AY53,"17N 2852536 E, 511658 N",UTM,WGS84,1,130,189,20,-80.88331810259795,25.790609893079694,NA,A,R,A +Proserpinaca palustris,"Mermaid weed, Marsh mermaidweed",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,prospalu,Human Observation,2002-05-22,BICY,218-59,NA,25.7737,-81.0393,25.7737,-81.0393,WGS84,314,Cell #AJ55 (North of Loop Road),"17N 2850623 E, 496063 N",UTM,WGS84,1,110,218,59,-81.03791822498403,25.773244623274426,species,A,A,A +Ludwigia microcarpa,Smallfruit primrosewillow,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,ludwmicr,Human Observation,2003-11-26,BICY,474-60,NA,25.8255,-80.9092,25.8276,-80.9083,WGS84,314,Cell #AW49,"17N 2856359 E, 509099 N",UTM,WGS84,1,15,474,60,-80.90881279389896,25.82680783389367,species,A,A,A +Serenoa repens,Saw palmetto,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,sererepe,Human Observation,2002-09-17,BICY,222-15,NA,25.6988,-80.9736,25.6966,-80.974,WGS84,314,Cell #AP63,"17N 2842329 E, 502644 N",UTM,WGS84,1,200,222,15,-80.97372778232034,25.698481915511667,species,A,A,A +Flaveria linearis,Narrowleaf yellowtops,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,flavline,Human Observation,2002-09-19,BICY,221-22,NA,26.1911,-80.8875,26.1901,-80.8896,WGS84,314,Cell #AY09,"17N 2896849 E, 511241 N",UTM,WGS84,1,250,221,22,-80.88801706196637,26.190930209825016,species,A,A,A +Taxodium ascendens,Pond cypress,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,taxoasce,Human Observation,2003-01-03,BICY,461-73,NA,26.1999,-80.9036,26.1995,-80.9062,WGS84,314,Cell #AW08,"17N 2897822 E, 509630 N",UTM,WGS84,1,260,461,73,-80.90539821088413,26.199613947702446,species,A,A,A +Taxodium ascendens,Pond cypress,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,taxoasce,Human Observation,2002-05-09,BICY,185-33,NA,25.7734,-80.8414,25.7713,-80.8427,WGS84,314,"Cell #BC55, Point B29S","17N 2850603 E, 515906 N",UTM,WGS84,1,210,185,33,-80.84181122704604,25.77275507997237,species,A,A,A +Rhynchospora odorata,Fragrant beaksedge,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,rhynodor,Human Observation,2003-01-04,BICY,460-17,NA,26.2036,-80.9318,26.2058,-80.9315,WGS84,314,Cell #AT07,"17N 2898234 E, 506815 N",UTM,WGS84,1,10,460,17,-80.93172615830727,26.203977776902523,species,A,A,A +Rhynchospora miliacea,Millet beaksedge,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,rhynmili,Human Observation,2002-08-08,BICY,256-60,NA,26.1826,-80.8868,26.1805,-80.8866,WGS84,314,Cell #AY10,"17N 2895910 E, 511309 N",UTM,WGS84,1,180,256,60,-80.8868,26.18124609680443,species,A,A,A +Toxicodendron radicans,Eastern poison-ivy,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,toxiradi,Human Observation,2004-06-22,BICY,313-72,NA,26.1627,-81.2799,26.1606,-81.2794,WGS84,314,Cell #L12,"17N 2893733 E, 472025 N",UTM,WGS84,1,180,313,72,-81.2799,26.161075311642925,species,A,A,A +Taxodium ascendens,Pond cypress,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,taxoasce,Human Observation,2002-08-02,BICY,198-35,NA,25.8494,-80.995,25.8499,-80.9928,WGS84,314,Cell #AN46,"17N 2859003 E, 500497 N",UTM,WGS84,1,80,198,35,-80.99414039845246,25.849537147076916,species,A,A,A +Taxodium ascendens,Pond cypress,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,taxoasce,Human Observation,2003-02-05,BICY,465-32,NA,26.1795,-80.9152,26.1798,-80.9177,WGS84,314,Cell #AV10,"17N 2895561 E, 508470 N",UTM,WGS84,1,280,465,32,-80.91598812231439,26.179625386055463,species,A,A,A +Ocotea coriacea,Lancewood,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,ocotcori,Human Observation,2003-11-26,BICY,475-56,NA,25.8062,-80.8845,25.8065,-80.8823,WGS84,314,Cell #AY51,"17N 2854223 E, 511582 N",UTM,WGS84,1,250,475,56,-80.88581187308297,25.805767780263164,species,A,A,A +Taxodium ascendens,Pond cypress,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,taxoasce,Human Observation,2002-08-22,BICY,245-69,NA,25.9154,-81.2418,25.9176,-81.2417,WGS84,314,Cell #O39,"17N 2866336 E, 475780 N",UTM,WGS84,1,0,245,69,-81.2418,25.916957045968793,species,A,A,A +Taxodium ascendens,Pond cypress,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,taxoasce,Human Observation,2003-06-04,BICY,525-45,NA,25.98,-80.8747,25.981,-80.8767,WGS84,314,Cell #AZ32,"17N 2873479 E, 512543 N",UTM,WGS84,1,305,525,45,-80.87562031128574,25.980582438576665,species,A,A,A +Aristida beyrichiana,Southern wiregrass,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,arisbeyr,Human Observation,2004-04-07,BICY,436-97,NA,26.2515,-81.2499,26.2493,-81.2496,WGS84,314,Cell #O02,"17N 2903558 E, 475040 N",UTM,WGS84,1,180,436,97,-81.2499,26.24931121068379,species,A,A,A +Ilex cassine,"Dahoon holly, Dahoon",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,ilexcass,Human Observation,2003-02-13,BICY,477-55,NA,25.9287,-81.0161,25.9266,-81.0156,WGS84,314,Cell #AL38,"17N 2867787 E, 498386 N",UTM,WGS84,1,170,477,55,-81.01586166063933,25.927477733670713,species,A,A,A +Scleria,NA,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,scleria sp.,Human Observation,2004-05-12,BICY,360-47,Scleria species,25.9514,-80.9266,25.9531,-80.928,WGS84,314,Cell #AU35,"17N 2870304 E, 507352 N",UTM,WGS84,1,330,360,47,-80.92718657264685,25.952318497826056,genus,A,A,A +Cladium jamaicense,"Saw-grass, Jamaica swamp sawgrass",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,cladjama,Human Observation,2002-08-27,BICY,235-20,NA,26.0528,-80.905,26.0506,-80.905,WGS84,314,"Cell #AW24, endpoint estimated using arcmap","17N 2881537 E, 509501 N",UTM,WGS84,1,180,235,20,-80.905,26.05234869083658,species,A,A,A +Rhynchospora microcarpa,Southern beaksedge,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,rhynmicr2,Human Observation,2002-08-29,BICY,248-9,NA,25.7858,-81.0958,25.7836,-81.0971,WGS84,314,Cell #AD54,"17N 2851968 E, 490392 N",UTM,WGS84,1,210,248,9,-81.09591216493145,25.78562411314039,species,A,A,A +Taxodium ascendens,Pond cypress,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,taxoasce,Human Observation,2002-08-21,BICY,239-100,NA,25.9782,-80.899,25.9802,-80.8984,WGS84,314,Cell #AX32,"17N 2873270 E, 510111 N",UTM,WGS84,1,25,239,100,-80.89794487300416,25.98024514195285,species,A,A,A +NA,NA,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,NA,Human Observation,2003-02-05,BICY,468-19,NA,26.1795,-80.9405,26.1775,-80.9416,WGS84,314,Cell #AS10,"17N 2895569 E, 505946 N",UTM,WGS84,1,210,468,19,-80.94073758222824,26.179128703391463,NA,A,R,A +Acer rubrum,Red maple,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,acerrubr,Human Observation,2003-04-29,BICY,607-95,NA,25.8642,-81.2501,25.8662,-81.252,WGS84,314,Cell #N45,"17N 2860672 E, 474942 N",UTM,WGS84,1,320,607,95,-81.25162309980213,25.86584221821773,species,A,A,A +Rhynchospora tracyi,Tracy's beaksedge,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,rhyntrac,Human Observation,2002-08-27,BICY,234-17,NA,26.0528,-80.905,26.0519,-80.9029,WGS84,314,Cell #AW24,"17N 2881537 E, 509501 N",UTM,WGS84,1,120,234,17,-80.90463220798472,26.05260819314068,species,A,A,A +Taxodium ascendens,Pond cypress,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,taxoasce,Human Observation,2002-05-22,BICY,218-20,NA,25.7737,-81.0393,25.7737,-81.0393,WGS84,314,Cell #AJ55 (North of Loop Road),"17N 2850623 E, 496063 N",UTM,WGS84,1,110,218,20,-81.03883160050776,25.77354563648134,species,A,A,A +Acer rubrum,Red maple,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,acerrubr,Human Observation,2002-10-31,BICY,277-94,NA,25.8982,-81.257,25.8971,-81.2595,WGS84,314,Cell #N41,"17N 2864436 E, 474256 N",UTM,WGS84,1,240,277,94,-81.25903100137657,25.897139386542218,species,A,A,A +Sesuvium portulacastrum,"Perennial sea-purslane, Shoreline seapurslane",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,sesuport,Human Observation,2003-03-25,BICY,445-66,NA,25.8941,-81.3267,25.8932,-81.3289,WGS84,314,Cell #G42,"17N 2863995 E, 467279 N",UTM,WGS84,1,250,445,66,-81.32824727851953,25.893590603053205,species,A,A,A +Spartina bakeri,Sand cordgrass,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,sparbake,Human Observation,2003-06-04,BICY,521-52,NA,25.8672,-81.353,25.8687,-81.3513,WGS84,314,Cell #D44 (originally labeled E45),"17N 2861021 E, 464635 N",UTM,WGS84,1,60,521,52,-81.35187674504624,25.867786712565994,species,A,A,A +Serenoa repens,Saw palmetto,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,sererepe,Human Observation,2004-06-02,BICY,355-72,NA,26.007,-81.0699,26.0092,-81.0692,WGS84,314,Cell #AG29,"17N 2876456 E, 493009 N",UTM,WGS84,1,30,355,72,-81.06900099418787,26.008407048664903,species,A,A,A +Cladium jamaicense,"Saw-grass, Jamaica swamp sawgrass",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,cladjama,Human Observation,2002-07-17,BICY,163-32,NA,26.0432,-81.0379,26.0411,-81.0375,WGS84,314,"Cell #AJ25, Central Pines","17N 2880474 E, 496209 N",UTM,WGS84,1,180,163,32,-81.0379,26.042477904365153,species,A,A,A +Cladium jamaicense,"Saw-grass, Jamaica swamp sawgrass",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,cladjama,Human Observation,2003-11-26,BICY,476-8,NA,25.8062,-80.8845,25.804,-80.8852,WGS84,314,Cell #AY51,"17N 2854223 E, 511582 N",UTM,WGS84,1,210,476,8,-80.88459971924343,25.806043656567812,species,A,A,A +Rhynchospora divergens,Spreading beaksedge,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,rhyndive,Human Observation,2002-06-12,BICY,138-23,NA,26.0416,-81.0282,26.0417,-81.0256,WGS84,314,"Cell #AK25, Middle Pines, east of Cal Stone","17N 2880288 E, 497181 N",UTM,WGS84,1,90,138,23,-81.02762547356198,26.041599998857603,species,A,A,A +Paspalum monostachyum,Gulfdune paspalum,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,paspmono,Human Observation,2003-02-21,BICY,452-56,NA,26.0064,-80.9098,26.0048,-80.908,WGS84,314,Cell #AW29,"17N 2876396 E, 509026 N",UTM,WGS84,1,140,452,56,-80.90890111407545,26.005431966900517,species,A,A,A +Blechnum serrulatum,"Swamp fern, Toothed midsorus fern",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,blecserr,Human Observation,2004-05-06,BICY,340-46,NA,26.2422,-81.0507,26.2425,-81.0531,WGS84,314,Cell #AH03,"17N 2902502 E, 494939 N",UTM,WGS84,1,280,340,46,-81.05183353357357,26.242380239512975,species,A,A,A +Paspalum monostachyum,Gulfdune paspalum,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,paspmono,Human Observation,2002-07-11,BICY,154-58,NA,26.1057,-81.284,26.1051,-81.2863,WGS84,314,Cell #K18,"17N 2887417 E, 471604 N",UTM,WGS84,1,270,154,58,-81.28544959485284,26.10569999271476,species,A,A,A +Proserpinaca palustris,"Mermaid weed, Marsh mermaidweed",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,prospalu,Human Observation,2004-04-28,BICY,406-7,NA,25.8144,-81.0821,25.8152,-81.0841,WGS84,314,Cell #AE50,"17N 2855128 E, 491772 N",UTM,WGS84,1,300,406,7,-81.082251139649415,25.814478981621118,species,A,A,A +Thalia geniculata,"Alligatorflag, Fireflag",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,thalgeni,Human Observation,2002-08-01,BICY,255-27,NA,26.1693,-81.2554,26.1675,-81.2543,WGS84,314,Cell #N11,"17N 2894454 E, 474478 N",UTM,WGS84,1,170,255,27,-81.25528275733059,26.168699998411185,species,A,A,A +Panicum repens,Torpedo grass,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,panirepe,Human Observation,2004-05-20,BICY,392-99,NA,26.2529,-80.8936,26.2547,-80.895,WGS84,314,Cell #AX02,"17N 2903700 E, 510627 N",UTM,WGS84,1,330,392,99,-80.89483872983098,26.25483462432435,species,A,A,A +Thelypteris interrupta,"Interrupted maiden fern, Hottentot fern",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,thelinte,Human Observation,2004-05-05,BICY,330-79,NA,26.2506,-81.0295,26.2484,-81.0298,WGS84,314,Cell #AK02,"17N 2903435 E, 497051 N",UTM,WGS84,1,185,330,79,-81.02967229479172,26.24882416091436,species,A,A,A +Taxodium ascendens,Pond cypress,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,taxoasce,Human Observation,2004-05-12,BICY,361-97,NA,25.9514,-80.9266,25.9534,-80.9257,WGS84,314,Cell #AU35,"17N 2870304 E, 507352 N",UTM,WGS84,1,300,361,97,-80.92869679975038,25.952494424772134,species,A,A,A +Paspalum monostachyum,Gulfdune paspalum,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,paspmono,Human Observation,2004-06-01,BICY,316-92,NA,25.9346,-81.0368,25.9352,-81.0391,WGS84,314,Cell #AJ37,"17N 2868446 E, 496319 N",UTM,WGS84,1,300,316,92,-81.03878843419596,25.93563801428814,species,A,A,A +Woodwardia virginica,Virginia chain fern,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,woodvirg,Human Observation,2004-06-22,BICY,311-59,NA,26.1685,-81.2779,26.1706,-81.2771,WGS84,314,Cell #L11,"17N 2894377 E, 472231 N",UTM,WGS84,1,25,311,59,-81.27727647236857,26.16970660292461,species,A,A,A +Cassytha filiformis,"Lovevine, Devil's gut",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,cassfili,Human Observation,2002-09-17,BICY,223-13,NA,25.6988,-80.9736,25.7,-80.9758,WGS84,314,Cell #AP63,"17N 2842329 E, 502644 N",UTM,WGS84,1,310,223,13,-80.97384804300451,25.69898857133994,species,A,A,A +Taxodium ascendens,Pond cypress,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,taxoasce,Human Observation,2003-04-29,BICY,606-24,NA,25.8642,-81.2501,25.8627,-81.2519,WGS84,314,Cell #N45,"17N 2860672 E, 474942 N",UTM,WGS84,1,230,606,24,-81.25055855897027,25.86385187508352,species,A,A,A +Myrica cerifera,"Wax myrtle, Southern Bayberry",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,myriceri,Human Observation,2004-05-13,BICY,428-36,NA,25.8978,-81.2753,25.8964,-81.2736,WGS84,314,Cell #L41,"17N 2864400 E, 472424 N",UTM,WGS84,1,130,428,36,-81.27461196789078,25.897277814491705,species,A,A,A +Taxodium ascendens,Pond cypress,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,taxoasce,Human Observation,2002-08-02,BICY,198-70,NA,25.8494,-80.995,25.8499,-80.9928,WGS84,314,Cell #AN46,"17N 2859003 E, 500497 N",UTM,WGS84,1,80,198,70,-80.99328079492201,25.84967428906325,species,A,A,A +Spartina bakeri,Sand cordgrass,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,sparbake,Human Observation,2002-05-31,BICY,203-52,NA,26.2044,-81.066,26.2044,-81.066,WGS84,314,Cell #AG07 (was mislabeled as AD31),"17N 2898326 E, 493407 N",UTM,WGS84,1,50,203,52,-81.0650035760271,26.20515423005808,species,A,A,A +Taxodium ascendens,Pond cypress,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,taxoasce,Human Observation,2004-06-02,BICY,357-34,NA,25.9555,-81.0064,25.9541,-81.0084,WGS84,314,Cell #AM35,"17N 2870752 E, 499364 N",UTM,WGS84,1,240,357,34,-81.00713497701912,25.955116380185586,species,A,A,A +Woodwardia virginica,Virginia chain fern,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,woodvirg,Human Observation,2002-06-05,BICY,266-79,NA,26.0245,-81.154,26.0245,-81.154,WGS84,314,Cell #X27,"17N 2878407 E, 484596 N",UTM,WGS84,1,200,266,79,-81.15467482602739,26.022824828752604,species,A,A,A +Pteridium aquilinum var. caudatum,Lacy braken fern,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,pteraquicaud,Human Observation,2004-06-02,BICY,354-43,NA,26.007,-81.0699,26.0067,-81.0674,WGS84,314,Cell #AG29,"17N 2876456 E, 493009 N",UTM,WGS84,1,100,354,43,-81.06884251523772,26.006831501688968,species,A,A,A +Taxodium ascendens,Pond cypress,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,taxoasce,Human Observation,2003-04-29,BICY,607-50,NA,25.8642,-81.2501,25.8662,-81.252,WGS84,314,Cell #N45,"17N 2860672 E, 474942 N",UTM,WGS84,1,320,607,50,-81.25090162622686,25.865064327416114,species,A,A,A +Rhynchospora miliacea,Millet beaksedge,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,rhynmili,Human Observation,2003-04-24,BICY,613-67,NA,25.7194,-81.0846,25.7216,-81.0853,WGS84,314,Cell #AE61,"17N 2844609 E, 491518 N",UTM,WGS84,1,345,613,67,-81.08503199635854,25.720860435728586,species,A,A,A +Taxodium ascendens,Pond cypress,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,taxoasce,Human Observation,2002-09-17,BICY,196-4,NA,25.7085,-80.9687,25.7096,-80.9668,WGS84,314,Cell #AQ62,"17N 2843408 E, 503144 N",UTM,WGS84,1,135,196,4,-80.96862954546704,25.708436172201857,species,A,A,A +Tillandsia setacea,"Thin-leaved wild-pine, Southern needleleaf",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,tillseta,Human Observation,2004-04-14,BICY,416-63,NA,26.2163,-81.0953,26.2174,-81.0932,WGS84,314,Cell #AJ06,"17N 2899645 E, 490479 N",UTM,WGS84,1,70,416,63,-81.09381899544377,26.216786205305908,species,A,A,A +Cladium jamaicense,"Saw-grass, Jamaica swamp sawgrass",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,cladjama,Human Observation,2003-05-23,BICY,528-67,NA,25.801,-80.934,25.7989,-80.9342,WGS84,314,Cell #AT52,"17N 2853648 E, 506615 N",UTM,WGS84,1,185,528,67,-80.93414556800218,25.799493814963455,species,A,A,A +Pontederia cordata,Pickerelweed,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,pontcord,Human Observation,2003-05-22,BICY,523-44,NA,25.9615,-80.8461,25.963,-80.8442,WGS84,314,Cell #BC34,"17N 2871431 E, 515404 N",UTM,WGS84,1,50,523,44,-80.84525861139564,25.962138216630755,species,A,A,A +Taxodium ascendens,Pond cypress,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,taxoasce,Human Observation,2002-06-20,BICY,133-52,NA,25.8641,-81.1359,25.8662,-81.1356,WGS84,314,"Cell #Z45, New River Strand S of Tamiami Trail","17N 2860637 E, 486384 N",UTM,WGS84,1,5,133,52,-81.13578695938376,25.865268968962408,species,A,A,A +Rhynchospora divergens,Spreading beaksedge,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,rhyndive,Human Observation,2003-04-24,BICY,613-28,NA,25.7194,-81.0846,25.7216,-81.0853,WGS84,314,Cell #AE61,"17N 2844609 E, 491518 N",UTM,WGS84,1,345,613,28,-81.08478053450835,25.720010331540596,species,A,A,A +Chrysobalanus icaco,Coco-plum,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,chryicac,Human Observation,2002-08-29,BICY,248-46,NA,25.7858,-81.0958,25.7836,-81.0971,WGS84,314,Cell #AD54,"17N 2851968 E, 490392 N",UTM,WGS84,1,210,248,46,-81.09637328395115,25.78490102176433,species,A,A,A +Blechnum serrulatum,"Swamp fern, Toothed midsorus fern",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,blecserr,Human Observation,2002-08-07,BICY,259-17,NA,26.1609,-81.2653,26.163,-81.2655,WGS84,314,Cell #M12,"17N 2893533 E, 473488 N",UTM,WGS84,1,0,259,17,-81.2653,26.1612836070156,species,A,A,A +Centella asiatica,"Coinwort, Spadeleaf",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,centasia,Human Observation,2004-06-10,BICY,314-89,NA,26.1551,-81.1871,26.1553,-81.1895,WGS84,314,Cell #U13,"17N 2892878 E, 481301 N",UTM,WGS84,1,270,314,89,-81.18932531422588,26.15509998280862,species,A,A,A +Rhynchospora divergens,Spreading beaksedge,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,rhyndive,Human Observation,2004-03-30,BICY,391-13,NA,26.1527,-80.8913,26.1549,-80.891,WGS84,314,Cell #AX13,"17N 2892602 E, 510865 N",UTM,WGS84,1,10,391,13,-80.89124355738787,26.152988890268055,species,A,A,A +Rhizophora mangle,Red mangrove,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,rhizmang,Human Observation,2004-03-25,BICY,374-61,NA,25.8429,-81.3738,25.8427,-81.3759,WGS84,314,Cell #B47,"17N 2858345 E, 462537 N",UTM,WGS84,1,270,374,61,-81.37532118937166,25.84289999203457,species,A,A,A +Taxodium ascendens,Pond cypress,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,taxoasce,Human Observation,2004-06-08,BICY,348-54,NA,25.8547,-81.0005,25.8568,-81.0001,WGS84,314,Cell #AM46,"17N 2859588 E, 499945 N",UTM,WGS84,1,30,348,54,-80.99982661387453,25.855755309242273,species,A,A,A +Saccharum giganteum,Sugarcane plumegrass,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,saccgiga,Human Observation,2002-06-17,BICY,142-97,NA,25.8434,-81.104,25.8432,-81.1015,WGS84,314,"Cell #AC47, W of Monroe Station, S of Tamiami Trai","17N 2858349 E, 489583 N",UTM,WGS84,1,100,142,97,-81.10161780626372,25.84301987975998,species,A,A,A +Psychotria sulzneri,Shortleaf wild coffee,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,psycsulz,Human Observation,2002-07-31,BICY,253-53,NA,26.0454,-81.3423,26.0451,-81.3397,WGS84,314,Cell #E25,"17N 2880757 E, 465755 N",UTM,WGS84,1,110,253,53,-81.341055896933,26.044990948639054,species,A,A,A +Taxodium ascendens,Pond cypress,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,taxoasce,Human Observation,2002-08-21,BICY,240-25,NA,25.9999,-80.9093,26.0006,-80.907,WGS84,314,Cell #AW30,"17N 2875680 E, 509076 N",UTM,WGS84,1,80,240,25,-80.90868521885282,25.999997960674026,species,A,A,A +Cladium jamaicense,"Saw-grass, Jamaica swamp sawgrass",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,cladjama,Human Observation,2002-07-12,BICY,158-82,NA,25.7641,-80.8619,25.7619,-80.8615,WGS84,314,"Cell #BA56, Lysiloma Hammock","17N 2849565 E, 513849 N",UTM,WGS84,1,180,158,82,-80.8619,25.762249558565728,species,A,A,A +Fraxinus caroliniana,"Water ash, Carolina ash, Pop ash",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,fraxcaro,Human Observation,2004-03-03,BICY,384-64,NA,26.1907,-81.3054,26.1888,-81.3065,WGS84,314,Cell #I09,"17N 2896843 E, 469487 N",UTM,WGS84,1,210,384,64,-81.30620034748266,26.18944931699202,species,A,A,A +Bacopa caroliniana,"Lemon hyssop, Lemon bacopa, Blue waterhyssop",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,bacocaro,Human Observation,2003-05-23,BICY,530-65,NA,25.8048,-80.9224,25.8066,-80.9227,WGS84,314,Cell #AU51,"17N 2854064 E, 507777 N",UTM,WGS84,1,5,530,65,-80.92225876929028,25.80626122308807,species,A,A,A +NA,NA,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,NA,Human Observation,2003-05-27,BICY,527-91,NA,25.7363,-80.8579,25.7383,-80.8588,WGS84,314,Cell #BB59,"17N 2846491 E, 514249 N",UTM,WGS84,1,345,527,91,-80.85848682684382,25.73828357190053,NA,A,R,A +Schinus terebinthifolius,Brazilian-pepper,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,schitere,Human Observation,2002-05-21,BICY,216-44,NA,26.2511,-80.9297,26.2535,-80.9293,WGS84,314,Cell #AU02,"17N 2903494 E, 507020 N",UTM,WGS84,1,5,216,44,-80.92960403566165,26.252089074584948,species,A,A,A +Rhynchospora inundata,Narrowfruit horned beaksedge,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,rhyninun,Human Observation,2004-04-01,BICY,402-55,NA,26.1781,-81.0927,26.1782,-81.0902,WGS84,314,Cell #AD10,"17N 2895406 E, 490734 N",UTM,WGS84,1,90,402,55,-81.09132453601654,26.17809999342804,species,A,A,A +Myrica cerifera,"Wax myrtle, Southern Bayberry",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,myriceri,Human Observation,2002-08-01,BICY,254-49,NA,26.1693,-81.2554,26.1694,-81.2578,WGS84,314,Cell #N11,"17N 2894454 E, 474478 N",UTM,WGS84,1,280,254,49,-81.25660670795796,26.169491995915624,species,A,A,A +Paspalum monostachyum,Gulfdune paspalum,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,paspmono,Human Observation,2002-07-18,BICY,165-37,NA,25.9962,-81.081,25.9955,-81.0835,WGS84,314,Cell #AE30,"17N 2875262 E, 491889 N",UTM,WGS84,1,260,165,37,-81.08190984572684,25.99605501333051,species,A,A,A +Rhynchospora divergens,Spreading beaksedge,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,rhyndive,Human Observation,2004-05-20,BICY,401-93,NA,26.2504,-80.8822,26.2511,-80.8799,WGS84,314,Cell #AY02,"17N 2903418 E, 511768 N",UTM,WGS84,1,80,401,93,-80.87990812635387,26.250764387613103,species,A,A,A +Myrica cerifera,"Wax myrtle, Southern Bayberry",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,myriceri,Human Observation,2002-10-29,BICY,279-57,NA,26.1134,-81.2906,26.1113,-81.2902,WGS84,314,Cell #J17,"17N 2888274 E, 470944 N",UTM,WGS84,1,175,279,57,-81.29047583098846,26.112118674016592,species,A,A,A +Flaveria linearis,Narrowleaf yellowtops,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,flavline,Human Observation,2002-09-19,BICY,220-10,NA,26.1911,-80.8875,26.1922,-80.8853,WGS84,314,Cell #AY09,"17N 2896849 E, 511241 N",UTM,WGS84,1,60,220,10,-80.88728339634741,26.191212824958466,species,A,A,A +Taxodium ascendens,Pond cypress,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,taxoasce,Human Observation,2002-06-20,BICY,141-32,NA,25.8358,-80.9002,25.8353,-80.8977,WGS84,314,Cell #AX48; south of dade-collier airport,"17N 2857500 E, 510001 N",UTM,WGS84,1,100,141,32,-80.89941417017701,25.835674603698543,species,A,A,A +NA,NA,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,NA,Human Observation,2004-05-26,BICY,358-84,NA,25.8254,-81.0222,25.824,-81.0243,WGS84,314,Cell #AK49,"17N 2856346 E, 497776 N",UTM,WGS84,1,240,358,84,-81.0240138277168,25.824452209651966,NA,A,R,A +Fraxinus caroliniana,"Water ash, Carolina ash, Pop ash",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,fraxcaro,Human Observation,2004-04-09,BICY,442-3,NA,25.7911,-81.0952,25.7893,-81.0965,WGS84,314,Cell #AD53,"17N 2852556 E, 490453 N",UTM,WGS84,1,215,442,3,-81.09524289205767,25.791044544369086,species,A,A,A +Taxodium ascendens,Pond cypress,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,taxoasce,Human Observation,2004-04-14,BICY,417-69,NA,26.2163,-81.0953,26.2149,-81.0936,WGS84,314,Cell #AJ06,"17N 2899645 E, 490479 N",UTM,WGS84,1,140,417,69,-81.0941904665914,26.21510727879857,species,A,A,A +Rapanea punctata,"Myrsine, Colicwood",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,rapapunc,Human Observation,2002-07-31,BICY,194-42,NA,26.0499,-81.3429,26.0503,-81.3446,WGS84,314,"Cell #E24, Deep Lake","17N 2881252 E, 465701 N",UTM,WGS84,1,290,194,42,-81.34388593677134,26.05022414607968,species,A,A,A +Cladium jamaicense,"Saw-grass, Jamaica swamp sawgrass",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,cladjama,Human Observation,2002-06-05,BICY,265-34,NA,26.0206,-81.1546,26.0204,-81.1545,WGS84,314,Cell #X28,"17N 2877975 E, 484532 N",UTM,WGS84,1,210,265,34,-81.15502457198703,26.019935559564363,species,A,A,A +Amphicarpum muhlenbergianum,Blue-maidencane,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,amphmuhl,Human Observation,2004-04-07,BICY,432-50,NA,26.25,-81.2548,26.2478,-81.2547,WGS84,314,Cell #N02,"17N 2903396 E, 474557 N",UTM,WGS84,1,180,432,50,-81.2548,26.248871757932104,species,A,A,A +Quercus virginiana,Virginia live oak,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,quervirg,Human Observation,2002-06-17,BICY,144-77,NA,25.8329,-81.1112,25.8352,-81.1114,WGS84,314,"Cell #AB48, W of Monroe Station S of Tamiami Trai","17N 2857179 E, 488852 N",UTM,WGS84,1,5,144,77,-81.11103265605861,25.834630980610356,species,A,A,A +Tillandsia fasciculata var. densispica,"Stiff-leaved wild-pine, Cardinal airplant",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,tillfascdens,Human Observation,2003-02-12,BICY,485-70,NA,25.971800000000002,-81.0295,25.9706,-81.0277,WGS84,314,Cell #AK33,"17N 2872562 E, 497044 N",UTM,WGS84,1,130,485,70,-81.02816132937303,25.97078464660914,species,A,A,A +Paspalum monostachyum,Gulfdune paspalum,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,paspmono,Human Observation,2003-02-12,BICY,488-15,NA,25.9843,-81.0229,25.9831,-81.0247,WGS84,314,Cell #AK32,"17N 2873950 E, 497711 N",UTM,WGS84,1,240,488,15,-81.02322433412235,25.98413075709959,species,A,A,A +Rapanea punctata,"Myrsine, Colicwood",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,rapapunc,Human Observation,2004-06-03,BICY,353-75,NA,26.0243,-81.0653,26.0246,-81.0678,WGS84,314,Cell #AG27,"17N 2878374 E, 493467 N",UTM,WGS84,1,295,353,75,-81.06699768880996,26.025015235896745,species,A,A,A +Serenoa repens,Saw palmetto,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,sererepe,Human Observation,2004-04-01,BICY,327-80,NA,26.179,-81.0835,26.1788,-81.0859,WGS84,314,Cell #AE10,"17N 2895514 E, 491661 N",UTM,WGS84,1,270,327,80,-81.08550069025074,26.178999986095143,species,A,A,A +Acer rubrum,Red maple,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,acerrubr,Human Observation,2004-04-02,BICY,395-43,NA,26.2527,-80.9439,26.2531,-80.9415,WGS84,314,Cell #AS02,"17N 2903676 E, 505602 N",UTM,WGS84,1,80,395,43,-80.94284029739715,26.25286848478675,species,A,A,A +Thalia geniculata,"Alligatorflag, Fireflag",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,thalgeni,Human Observation,2004-04-29,BICY,404-10,NA,25.8211,-81.0303,25.8192,-81.0318,WGS84,314,Cell #AJ50,"17N 2855868 E, 496959 N",UTM,WGS84,1,220,404,10,-81.03046026576222,25.820927132947574,species,A,A,A +Cladium jamaicense,"Saw-grass, Jamaica swamp sawgrass",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,cladjama,Human Observation,2002-05-09,BICY,184-65,NA,25.7734,-80.8414,25.7729,-80.8438,WGS84,314,"Cell #BC55, Point B29W","17N 2850603 E, 515906 N",UTM,WGS84,1,260,184,65,-80.84299537933317,25.77314528214674,species,A,A,A +Mikania scandens,"Climbing hempweed, Climbing hempvine",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,mikascan,Human Observation,2002-06-04,BICY,200-91,NA,25.9853,-81.0968,25.9865,-81.0948,WGS84,314,Cell #AD31,"17N 2874060 E, 490313 N",UTM,WGS84,1,60,200,91,-81.09483233643263,25.986326724451057,species,A,A,A +Bursera simaruba,Gumbo-limbo,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,burssima,Human Observation,2003-11-26,BICY,476-98,NA,25.8062,-80.8845,25.804,-80.8852,WGS84,314,Cell #AY51,"17N 2854223 E, 511582 N",UTM,WGS84,1,210,476,98,-80.88572154269822,25.804284788011685,species,A,A,A +Myrica cerifera,"Wax myrtle, Southern Bayberry",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,myriceri,Human Observation,2004-04-15,BICY,386-44,NA,26.2539,-81.0377,26.2524,-81.0396,WGS84,314,Cell #AJ02,"17N 2903800 E, 496238 N",UTM,WGS84,1,235,386,44,-81.0386019511163,26.253330520402816,species,A,A,A +Fraxinus caroliniana,"Water ash, Carolina ash, Pop ash",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,fraxcaro,Human Observation,2003-02-11,BICY,482-87,NA,25.963,-81.0302,25.9653,-81.0305,WGS84,314,Cell #AJ34,"17N 2871588 E, 496977 N",UTM,WGS84,1,0,482,87,-81.0302,25.964963218917358,species,A,A,A +Rapanea punctata,"Myrsine, Colicwood",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,rapapunc,Human Observation,2002-11-05,BICY,272-74,NA,25.9062,-81.22,25.9078,-81.2214,WGS84,314,Cell #Q40,"17N 2865313 E, 477963 N",UTM,WGS84,1,325,272,74,-81.22105904138644,25.907567879723235,species,A,A,A +Cladium jamaicense,"Saw-grass, Jamaica swamp sawgrass",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,cladjama,Human Observation,2003-01-03,BICY,461-60,NA,26.1999,-80.9036,26.1995,-80.9062,WGS84,314,Cell #AW08,"17N 2897822 E, 509630 N",UTM,WGS84,1,260,461,60,-80.9050779821917,26.19966489016844,species,A,A,A +Hydrolea corymbosa,Skyflower,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,hydrcory,Human Observation,2002-07-10,BICY,153-37,NA,26.0821,-81.3342,26.0798,-81.3337,WGS84,314,"Cell #F21, W of Prairie Fire Trail","17N 2884819 E, 466581 N",UTM,WGS84,1,170,153,37,-81.33403945365347,26.081277765615344,species,A,A,A +Taxodium ascendens,Pond cypress,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,taxoasce,Human Observation,2004-04-28,BICY,406-86,NA,25.8144,-81.0821,25.8152,-81.0841,WGS84,314,Cell #AE50,"17N 2855128 E, 491772 N",UTM,WGS84,1,300,406,86,-81.08395687244807,25.815370334677088,species,A,A,A +Nephrolepis biserrata,Giant sword fern,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,nephbise,Human Observation,2004-04-29,BICY,404-51,NA,25.8211,-81.0303,25.8192,-81.0318,WGS84,314,Cell #AJ50,"17N 2855868 E, 496959 N",UTM,WGS84,1,220,404,51,-81.03111735052168,25.820218376142016,species,A,A,A +NA,NA,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,NA,Human Observation,2002-10-31,BICY,275-14,NA,25.9152,-81.2644,25.9145,-81.262,WGS84,314,Cell #M39,"17N 2866314 E, 473518 N",UTM,WGS84,1,100,275,14,-81.26405596933301,25.91514514024024,NA,A,R,A +Blechnum serrulatum,"Swamp fern, Toothed midsorus fern",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,blecserr,Human Observation,2004-03-24,BICY,371-37,NA,25.9769,-81.3355,25.9771,-81.333,WGS84,314,Cell #F32,"17N 2873174 E, 466418 N",UTM,WGS84,1,90,371,37,-81.3345762681646,25.976899997052,species,A,A,A +NA,NA,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,NA,Human Observation,2003-02-04,BICY,471-13,NA,25.8376,-81.016,25.8394,-81.0174,WGS84,314,Cell #AL48,"17N 2857701 E, 498394 N",UTM,WGS84,1,330,471,13,-81.01616208707374,25.8378540568264,NA,A,R,A +Solidago stricta,"Narrow-leaved goldenrod, Wand goldenrod",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,solistri,Human Observation,2002-11-08,BICY,271-7,NA,25.7561,-81.0054,25.7563,-81.0064,WGS84,314,"Cell #AM57, origin estimated with ARCMap","17N 2848673 E, 499461 N",UTM,WGS84,1,280,271,7,-81.00557178558736,25.75612743017503,species,A,A,A +Dichanthelium erectifolium,Erectleaf witchgrass,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,dicherec,Human Observation,2004-04-07,BICY,439-9,NA,26.2498,-81.2265,26.2518,-81.2263,WGS84,314,Cell #Q02,"17N 2903369 E, 477380 N",UTM,WGS84,1,0,439,9,-81.2265,26.250003083559058,species,A,A,A +Proserpinaca palustris,"Mermaid weed, Marsh mermaidweed",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,prospalu,Human Observation,2004-04-28,BICY,406-49,NA,25.8144,-81.0821,25.8152,-81.0841,WGS84,314,Cell #AE50,"17N 2855128 E, 491772 N",UTM,WGS84,1,300,406,49,-81.08315798175585,25.81495286802978,species,A,A,A +NA,NA,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,NA,Human Observation,2004-05-04,BICY,345-4,NA,25.8178,-80.8904,25.8179,-80.8928,WGS84,314,Cell #AX50,"17N 2855514 E, 510987 N",UTM,WGS84,1,270,345,4,-80.89049972908667,25.817799999965786,NA,A,R,A +Cladium jamaicense,"Saw-grass, Jamaica swamp sawgrass",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,cladjama,Human Observation,2002-07-11,BICY,160-12,NA,26.0975,-81.2848,26.0998,-81.2851,WGS84,314,Cell #K19,"17N 2886508 E, 471520 N",UTM,WGS84,1,0,160,12,-81.2848,26.09777078380727,species,A,A,A +Panicum hemitomon,Maidencane,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,panihemi,Human Observation,2002-10-31,BICY,275-45,NA,25.9152,-81.2644,25.9145,-81.262,WGS84,314,Cell #M39,"17N 2866314 E, 473518 N",UTM,WGS84,1,100,275,45,-81.26329418827487,25.915023662150993,species,A,A,A +Myrica cerifera,"Wax myrtle, Southern Bayberry",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,myriceri,Human Observation,2003-02-13,BICY,477-49,NA,25.9287,-81.0161,25.9266,-81.0156,WGS84,314,Cell #AL38,"17N 2867787 E, 498386 N",UTM,WGS84,1,170,477,49,-81.01588766105792,25.927611071844794,species,A,A,A +Rhynchospora divergens,Spreading beaksedge,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,rhyndive,Human Observation,2002-05-29,BICY,205-39,NA,25.9464,-81.2971,25.9466,-81.2971,WGS84,314,Cell #J36,"17N 2869783 E, 470257 N",UTM,WGS84,1,270,205,39,-81.29807341232043,25.9463999967291,species,A,A,A +Cladium jamaicense,"Saw-grass, Jamaica swamp sawgrass",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,cladjama,Human Observation,2002-05-31,BICY,129-22,NA,26.2159,-81.0498,26.2163,-81.0475,WGS84,314,"Cell #AIO6, Kissimmee Billy Area","17N 2899596 E, 495029 N",UTM,WGS84,1,80,129,22,-81.0492579976137,26.215986202939067,species,A,A,A +Crinum americanum,"Swamp-lily, Seven-sisters, String-lily",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,crinamer,Human Observation,2002-07-11,BICY,155-65,NA,26.1057,-81.284,26.1035,-81.2833,WGS84,314,Cell #K18,"17N 2887417 E, 471604 N",UTM,WGS84,1,170,155,65,-81.28371790402126,26.104255538733803,species,A,A,A +Rhynchospora microcarpa,Southern beaksedge,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,rhynmicr2,Human Observation,2004-04-28,BICY,406-92,NA,25.8144,-81.0821,25.8152,-81.0841,WGS84,314,Cell #AE50,"17N 2855128 E, 491772 N",UTM,WGS84,1,300,406,92,-81.08408642281783,25.81543803155527,species,A,A,A +Cladium jamaicense,"Saw-grass, Jamaica swamp sawgrass",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,cladjama,Human Observation,2002-07-12,BICY,157-42,NA,25.7641,-80.8619,25.7635,-80.8642,WGS84,314,"Cell #BA56, Lysiloma Hammock","17N 2849565 E, 513849 N",UTM,WGS84,1,270,157,42,-80.86294668383901,25.764099996237032,species,A,A,A +Ludwigia microcarpa,Smallfruit primrosewillow,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,ludwmicr,Human Observation,2002-08-28,BICY,229-65,NA,26.0141,-80.8956,26.0125,-80.894,WGS84,314,Cell #AX28,"17N 2877249 E, 510444 N",UTM,WGS84,1,140,229,65,-80.8945565835934,26.01297639081458,species,A,A,A +Rapanea punctata,"Myrsine, Colicwood",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,rapapunc,Human Observation,2004-03-30,BICY,391-38,NA,26.1527,-80.8913,26.1549,-80.891,WGS84,314,Cell #AX13,"17N 2892602 E, 510865 N",UTM,WGS84,1,10,391,38,-80.8911350131217,26.153544448381115,species,A,A,A +Conoclinium coelestinum,Blue mistflower,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,conocoel,Human Observation,2004-04-07,BICY,439-49,NA,26.2498,-81.2265,26.2518,-81.2263,WGS84,314,Cell #Q02,"17N 2903369 E, 477380 N",UTM,WGS84,1,0,439,49,-81.2265,26.250905677085388,species,A,A,A +Paspalum monostachyum,Gulfdune paspalum,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,paspmono,Human Observation,2002-08-29,BICY,251-67,NA,25.784300000000002,-81.0757,25.7827,-81.0774,WGS84,314,Cell #AF54,"17N 2851797 E, 492406 N",UTM,WGS84,1,230,251,67,-81.07697927817061,25.783328136944732,species,A,A,A +Cladium jamaicense,"Saw-grass, Jamaica swamp sawgrass",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,cladjama,Human Observation,2004-06-17,BICY,337-21,NA,26.1778,-81.2369,26.1803,-81.2368,WGS84,314,Cell #P10,"17N 2895396 E, 476332 N",UTM,WGS84,1,0,337,21,-81.2369,26.17827386637435,species,A,A,A +Taxodium ascendens,Pond cypress,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,taxoasce,Human Observation,2004-06-16,BICY,335-8,NA,26.2329,-81.0986,26.2331,-81.0962,WGS84,314,Cell #AD04,"17N 2901479 E, 490153 N",UTM,WGS84,1,90,335,8,-81.09839983881777,26.232899999860624,species,A,A,A +Thelypteris interrupta,"Interrupted maiden fern, Hottentot fern",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,thelinte,Human Observation,2002-08-01,BICY,255-88,NA,26.1693,-81.2554,26.1675,-81.2543,WGS84,314,Cell #N11,"17N 2894454 E, 474478 N",UTM,WGS84,1,170,255,88,-81.25501788016253,26.16734443873045,species,A,A,A +Tillandsia balbisiana,"Reflexed wild-pine, Northern needleleaf",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,tillbalb,Human Observation,2003-02-21,BICY,498-11,NA,26.0064,-80.9098,26.0064,-80.9073,WGS84,314,Cell #AW29,"17N 2876396 E, 509026 N",UTM,WGS84,1,95,498,11,-80.90952635378332,26.006378365800863,species,A,A,A +Fraxinus caroliniana,"Water ash, Carolina ash, Pop ash",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,fraxcaro,Human Observation,2004-04-29,BICY,404-71,NA,25.8211,-81.0303,25.8192,-81.0318,WGS84,314,Cell #AJ50,"17N 2855868 E, 496959 N",UTM,WGS84,1,220,404,71,-81.0314378768338,25.81987264001187,species,A,A,A +Salix caroliniana,Coastal Plain willow,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,salicaro,Human Observation,2002-10-31,BICY,275-26,NA,25.9152,-81.2644,25.9145,-81.262,WGS84,314,Cell #M39,"17N 2866314 E, 473518 N",UTM,WGS84,1,100,275,26,-81.26376108615759,25.91509811693887,species,A,A,A +NA,NA,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,NA,Human Observation,2002-05-28,BICY,208-26,NA,26.2207,-81.1821,26.2226,-81.1838,WGS84,314,Cell #U05,"17N 2900139 E, 481814 N",UTM,WGS84,1,325,208,26,-81.18247308775311,26.2211805863559,NA,A,R,A +Taxodium ascendens,Pond cypress,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,taxoasce,Human Observation,2004-03-26,BICY,414-82,NA,26.2242,-81.0649,26.2242,-81.0674,WGS84,314,Cell #AG05,"17N 2900516 E, 493515 N",UTM,WGS84,1,270,414,82,-81.06695149946655,26.224199985362212,species,A,A,A +Elionurus tripsacoides,Pan-American balsamscale,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,eliotrip,Human Observation,2004-06-24,BICY,323-9,NA,26.2493,-81.0753,26.2505,-81.0773,WGS84,314,Cell #AF02,"17N 2903294 E, 492483 N",UTM,WGS84,1,300,323,9,-81.07549504029157,26.249401541654922,species,A,A,A +Fraxinus caroliniana,"Water ash, Carolina ash, Pop ash",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,fraxcaro,Human Observation,2004-04-29,BICY,419-69,NA,25.8155,-81.0426,25.8165,-81.0447,WGS84,314,Cell #AI50,"17N 2855253 E, 495730 N",UTM,WGS84,1,300,419,69,-81.04408982762844,25.81627852610696,species,A,A,A +Hyptis alata,"Musky mint, Clustered bushmint",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,hyptalat,Human Observation,2002-07-10,BICY,150-10,NA,26.0769,-81.3107,26.0753,-81.3127,WGS84,314,Cell #H21,"17N 2884234 E, 468923 N",UTM,WGS84,1,230,150,10,-81.31089141049704,26.076754952391212,species,A,A,A +NA,NA,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,NA,Human Observation,2002-05-08,BICY,174-19,NA,25.9,-81.0625,25.8982,-81.0612,WGS84,314,Cell #AG41,"17N 2864610 E, 493737 N",UTM,WGS84,1,150,174,19,-81.06226298029705,25.899628689027427,NA,A,R,A +Rhus copallinum,Winged sumac,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,rhuscopa,Human Observation,2004-04-01,BICY,327-71,NA,26.179,-81.0835,26.1788,-81.0859,WGS84,314,Cell #AE10,"17N 2895514 E, 491661 N",UTM,WGS84,1,270,327,71,-81.08527561259757,26.178999989047753,species,A,A,A +Hydrolea corymbosa,Skyflower,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,hydrcory,Human Observation,2002-11-05,BICY,294-9,NA,26.0816,-81.2488,26.0798,-81.2476,WGS84,314,Cell #O21,"17N 2884745 E, 475114 N",UTM,WGS84,1,150,294,9,-81.24868755464323,26.08142412032108,species,A,A,A +Rhynchospora tracyi,Tracy's beaksedge,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,rhyntrac,Human Observation,2002-08-27,BICY,235-12,NA,26.0528,-80.905,26.0506,-80.905,WGS84,314,"Cell #AW24, endpoint estimated using arcmap","17N 2881537 E, 509501 N",UTM,WGS84,1,180,235,12,-80.905,26.052529214505338,species,A,A,A +Myrica cerifera,"Wax myrtle, Southern Bayberry",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,myriceri,Human Observation,2002-06-17,BICY,145-51,NA,25.8329,-81.1112,25.8339,-81.1134,WGS84,314,"Cell #AB48, W of Monroe Station S of Tamiami Trai","17N 2857179 E, 488852 N",UTM,WGS84,1,305,145,51,-81.1122417273034,25.833560110025378,species,A,A,A +Rapanea punctata,"Myrsine, Colicwood",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,rapapunc,Human Observation,2002-05-31,BICY,203-93,NA,26.2044,-81.066,26.2044,-81.066,WGS84,314,Cell #AG07 (was mislabeled as AD31),"17N 2898326 E, 493407 N",UTM,WGS84,1,50,203,93,-81.0642179249942,26.20574890652723,species,A,A,A +Rhynchospora divergens,Spreading beaksedge,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,rhyndive,Human Observation,2003-02-11,BICY,483-91,NA,25.9591,-81.0174,25.9591,-81.0199,WGS84,314,Cell #AL34,"17N 2871156 E, 498259 N",UTM,WGS84,1,270,483,91,-81.01967153913365,25.959099982181773,species,A,A,A +Cladium jamaicense,"Saw-grass, Jamaica swamp sawgrass",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,cladjama,Human Observation,2004-03-30,BICY,389-28,NA,26.1428,-80.8861,26.142,-80.8883,WGS84,314,Cell #AY14,"17N 2891503 E, 511389 N",UTM,WGS84,1,250,389,28,-80.88675780755968,26.14258390164379,species,A,A,A +Cladium jamaicense,"Saw-grass, Jamaica swamp sawgrass",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,cladjama,Human Observation,2002-08-02,BICY,199-55,NA,25.8494,-80.995,25.8502,-80.9974,WGS84,314,Cell #AN46,"17N 2859003 E, 500497 N",UTM,WGS84,1,295,199,55,-80.99624313273061,25.8499245209863,species,A,A,A +Fraxinus caroliniana,"Water ash, Carolina ash, Pop ash",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,fraxcaro,Human Observation,2004-04-15,BICY,387-10,NA,26.2539,-81.0377,26.2532,-81.0356,WGS84,314,Cell #AJ02,"17N 2903800 E, 496238 N",UTM,WGS84,1,120,387,10,-81.03748328042805,26.253787175698967,species,A,A,A +Persea palustris,Swamp bay,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,perspalu,Human Observation,2002-05-21,BICY,215-21,NA,26.2303,-80.9066,26.2305,-80.9043,WGS84,314,Cell #AW04,"17N 2901187 E, 509327 N",UTM,WGS84,1,90,215,21,-80.90607458858165,26.230299999039712,species,A,A,A +Fuirena scirpoidea,Southern umbrellasedge,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,fuirscir,Human Observation,2002-08-27,BICY,230-77,NA,26.043,-80.9091,26.0433,-80.9065,WGS84,314,Cell #AW25,"17N 2880453 E, 509098 N",UTM,WGS84,1,90,230,77,-80.90717656256207,26.042999987195273,species,A,A,A +Paspalum monostachyum,Gulfdune paspalum,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,paspmono,Human Observation,2002-06-17,BICY,143-24,NA,25.8434,-81.104,25.8413,-81.1032,WGS84,314,"Cell #AC47, W of Monroe Station, S of Tamiami Trai","17N 2858349 E, 489583 N",UTM,WGS84,1,170,143,24,-81.10389607146693,25.842866641222123,species,A,A,A +Amphicarpum muhlenbergianum,Blue-maidencane,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,amphmuhl,Human Observation,2002-09-19,BICY,220-88,NA,26.1911,-80.8875,26.1922,-80.8853,WGS84,314,Cell #AY09,"17N 2896849 E, 511241 N",UTM,WGS84,1,60,220,88,-80.88559387353435,26.192092848382913,species,A,A,A +Cladium jamaicense,"Saw-grass, Jamaica swamp sawgrass",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,cladjama,Human Observation,2003-02-11,BICY,492-4,NA,25.8735,-81.2566,25.8756,-81.2553,WGS84,314,Cell #N44,"17N 2861698 E, 474294 N",UTM,WGS84,1,50,492,4,-81.2565235672608,25.8735580206026,species,A,A,A +NA,NA,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,NA,Human Observation,2004-05-04,BICY,344-14,NA,25.8178,-80.8904,25.8156,-80.8909,WGS84,314,Cell #AX50,"17N 2855514 E, 510987 N",UTM,WGS84,1,190,344,14,-80.8904606120512,25.817488872963782,NA,A,R,A +Acer rubrum,Red maple,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,acerrubr,Human Observation,2004-04-15,BICY,338-12,NA,26.252,-81.045,26.2528,-81.0473,WGS84,314,Cell #AI02,"17N 2903598 E, 495510 N",UTM,WGS84,1,300,338,12,-81.0452600598085,26.25213538876314,species,A,A,A +Chrysobalanus icaco,Coco-plum,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,chryicac,Human Observation,2004-04-06,BICY,434-23,NA,25.8173,-81.1012,25.8187,-81.1007,WGS84,314,Cell #AC50,"17N 2855456 E, 489854 N",UTM,WGS84,1,20,434,23,-81.10100387122024,25.817787721364656,species,A,A,A +Bacopa caroliniana,"Lemon hyssop, Lemon bacopa, Blue waterhyssop",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,bacocaro,Human Observation,2004-04-01,BICY,402-84,NA,26.1781,-81.0927,26.1782,-81.0902,WGS84,314,Cell #AD10,"17N 2895406 E, 490734 N",UTM,WGS84,1,90,402,84,-81.09059929137084,26.178099984670503,species,A,A,A +Rapanea punctata,"Myrsine, Colicwood",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,rapapunc,Human Observation,2003-02-05,BICY,466-88,NA,26.1795,-80.9152,26.1814,-80.9138,WGS84,314,Cell #AV10,"17N 2895561 E, 508470 N",UTM,WGS84,1,30,466,88,-80.91409959951712,26.18121968419084,species,A,A,A +Cladium jamaicense,"Saw-grass, Jamaica swamp sawgrass",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,cladjama,Human Observation,2004-06-17,BICY,337-81,NA,26.1778,-81.2369,26.1803,-81.2368,WGS84,314,Cell #P10,"17N 2895396 E, 476332 N",UTM,WGS84,1,0,337,81,-81.2369,26.179627770129127,species,A,A,A +Taxodium distichum,Bald cypress,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,taxodist,Human Observation,2002-08-01,BICY,192-94,NA,26.1696,-81.2652,26.1718,-81.2654,WGS84,314,Cell #M11,"17N 2894488 E, 473501 N",UTM,WGS84,1,355,192,94,-81.26540487394408,26.17171304668553,species,A,A,A +Quercus laurifolia,"Laurel oak, Diamond oak",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,querlaur,Human Observation,2002-08-01,BICY,193-71,NA,26.1696,-81.2652,26.1674,-81.2645,WGS84,314,Cell #M11,"17N 2894488 E, 473501 N",UTM,WGS84,1,170,193,71,-81.26489169698513,26.168022217798246,species,A,A,A +Sabal palmetto,Cabbage palm,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,sabapalm,Human Observation,2004-04-01,BICY,403-89,NA,26.1781,-81.0927,26.1803,-81.0924,WGS84,314,Cell #AD10,"17N 2895406 E, 490734 N",UTM,WGS84,1,10,403,89,-81.09231349590463,26.180077779566354,species,A,A,A +Paspalum monostachyum,Gulfdune paspalum,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,paspmono,Human Observation,2002-08-23,BICY,236-70,NA,25.8448,-81.2201,25.8471,-81.2204,WGS84,314,Cell #Q47,"17N 2858519 E, 477943 N",UTM,WGS84,1,0,236,70,-81.2201,25.846379627221072,species,A,A,A +Paspalum monostachyum,Gulfdune paspalum,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,paspmono,Human Observation,2002-09-18,BICY,233-83,NA,25.7252,-81.0306,25.7256,-81.033,WGS84,314,Cell #AJ60,"17N 2845250 E, 496927 N",UTM,WGS84,1,290,233,83,-81.03254308164351,25.725840596751752,species,A,A,A +Myrica cerifera,"Wax myrtle, Southern Bayberry",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,myriceri,Human Observation,2002-07-17,BICY,164-57,NA,26.0432,-81.0379,26.0418,-81.0359,WGS84,314,"Cell #AJ25, Central Pines","17N 2880474 E, 496209 N",UTM,WGS84,1,130,164,57,-81.03680927855248,26.04237322133755,species,A,A,A +Taxodium ascendens,Pond cypress,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,taxoasce,Human Observation,2002-06-17,BICY,144-88,NA,25.8329,-81.1112,25.8352,-81.1114,WGS84,314,"Cell #AB48, W of Monroe Station S of Tamiami Trai","17N 2857179 E, 488852 N",UTM,WGS84,1,5,144,88,-81.11100874938381,25.834878263505285,species,A,A,A +Crinum americanum,"Swamp-lily, Seven-sisters, String-lily",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,crinamer,Human Observation,2002-07-11,BICY,154-83,NA,26.1057,-81.284,26.1051,-81.2863,WGS84,314,Cell #K18,"17N 2887417 E, 471604 N",UTM,WGS84,1,270,154,83,-81.28607442022034,26.10569998508085,species,A,A,A +Taxodium ascendens,Pond cypress,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,taxoasce,Human Observation,2004-05-18,BICY,364-7,NA,26.2236,-81.0959,26.222,-81.0973,WGS84,314,Cell #AD05,"17N 2900452 E, 490421 N",UTM,WGS84,1,220,364,7,-81.0960125694166,26.223478999820507,species,A,A,A +Bacopa caroliniana,"Lemon hyssop, Lemon bacopa, Blue waterhyssop",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,bacocaro,Human Observation,2002-05-28,BICY,208-57,NA,26.2207,-81.1821,26.2226,-81.1838,WGS84,314,Cell #U05,"17N 2900139 E, 481814 N",UTM,WGS84,1,325,208,57,-81.1829179271581,26.2217535918575,species,A,A,A +NA,NA,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,NA,Human Observation,2003-06-04,BICY,525-16,NA,25.98,-80.8747,25.981,-80.8767,WGS84,314,Cell #AZ32,"17N 2873479 E, 512543 N",UTM,WGS84,1,305,525,16,-80.87502722075153,25.98020708994763,NA,A,R,A +Conocarpus erectus,Buttonwood,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,conoerec,Human Observation,2003-06-04,BICY,520-58,NA,25.8672,-81.353,25.8671,-81.3506,WGS84,314,Cell #D44 (originally labeled E45),"17N 2861021 E, 464635 N",UTM,WGS84,1,90,520,58,-81.35155332753263,25.867199992791033,species,A,A,A +Taxodium ascendens,Pond cypress,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,taxoasce,Human Observation,2002-08-29,BICY,251-54,NA,25.784300000000002,-81.0757,25.7827,-81.0774,WGS84,314,Cell #AF54,"17N 2851797 E, 492406 N",UTM,WGS84,1,230,251,54,-81.07673106164845,25.783516708277972,species,A,A,A +NA,NA,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,NA,Human Observation,2002-10-31,BICY,275-35,NA,25.9152,-81.2644,25.9145,-81.262,WGS84,314,Cell #M39,"17N 2866314 E, 473518 N",UTM,WGS84,1,100,275,35,-81.26353992392951,25.915062849069,NA,A,R,A +Taxodium ascendens,Pond cypress,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,taxoasce,Human Observation,2002-08-27,BICY,230-90,NA,26.043,-80.9091,26.0433,-80.9065,WGS84,314,Cell #AW25,"17N 2880453 E, 509098 N",UTM,WGS84,1,90,230,90,-80.90685182637131,26.042999982506608,species,A,A,A +Schinus terebinthifolius,Brazilian-pepper,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,schitere,Human Observation,2004-06-22,BICY,310-74,NA,26.1685,-81.2779,26.1671,-81.2762,WGS84,314,Cell #L11,"17N 2894377 E, 472231 N",UTM,WGS84,1,170,310,74,-81.27757867329474,26.166855550671237,species,A,A,A +Fraxinus caroliniana,"Water ash, Carolina ash, Pop ash",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,fraxcaro,Human Observation,2003-02-06,BICY,453-55,NA,25.953,-81.3496,25.9508,-81.3501,WGS84,314,Cell #D35,"17N 2870527 E, 464999 N",UTM,WGS84,1,200,453,55,-81.35006953345321,25.95183373038586,species,A,A,A +Serenoa repens,Saw palmetto,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,sererepe,Human Observation,2002-07-18,BICY,165-63,NA,25.9962,-81.081,25.9955,-81.0835,WGS84,314,Cell #AE30,"17N 2875262 E, 491889 N",UTM,WGS84,1,260,165,63,-81.08254919544203,25.995953127380485,species,A,A,A +Ludwigia repens,Creeping primrosewillow,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,ludwrepe,Human Observation,2003-02-06,BICY,454-38,NA,25.953,-81.3496,25.9516,-81.3514,WGS84,314,Cell #D35,"17N 2870527 E, 464999 N",UTM,WGS84,1,240,454,38,-81.3504214272395,25.952571248048354,species,A,A,A +Persea palustris,Swamp bay,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,perspalu,Human Observation,2002-12-20,BICY,464-53,NA,26.0673,-81.3019,26.0695,-81.3018,WGS84,314,Cell #I22,"17N 2883173 E, 469804 N",UTM,WGS84,1,5,464,53,-81.30178458741196,26.06849141568431,species,A,A,A +Paspalum monostachyum,Gulfdune paspalum,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,paspmono,Human Observation,2004-03-11,BICY,396-54,NA,25.7899,-80.9758,25.7919,-80.9773,WGS84,314,Cell #AP53,"17N 2852419 E, 502423 N",UTM,WGS84,1,325,396,54,-80.97657205609023,25.79089819928609,species,A,A,A +Persea palustris,Swamp bay,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,perspalu,Human Observation,2003-05-13,BICY,610-64,NA,26.1457,-81.2422,26.1436,-81.2431,WGS84,314,Cell #O14,"17N 2891842 E, 475791 N",UTM,WGS84,1,210,610,64,-81.24300004035413,26.14444930917816,species,A,A,A +Taxodium ascendens,Pond cypress,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,taxoasce,Human Observation,2002-05-09,BICY,182-20,NA,25.9254,-80.8441,25.927,-80.8422,WGS84,314,Cell #BC38,"17N 2867427 E, 515616 N",UTM,WGS84,1,50,182,20,-80.84371766834109,25.92569010052842,species,A,A,A +Tillandsia setacea,"Thin-leaved wild-pine, Southern needleleaf",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,tillseta,Human Observation,2003-01-03,BICY,458-46,NA,26.2306,-80.9468,26.2319,-80.9444,WGS84,314,Cell #AS04,"17N 2901222 E, 505314 N",UTM,WGS84,1,60,458,46,-80.94580328333967,26.231118989237313,species,A,A,A +Taxodium ascendens,Pond cypress,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,taxoasce,Human Observation,2004-05-18,BICY,364-69,NA,26.2236,-81.0959,26.222,-81.0973,WGS84,314,Cell #AD05,"17N 2900452 E, 490421 N",UTM,WGS84,1,220,364,69,-81.09700960265269,26.222407280008397,species,A,A,A +NA,NA,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,NA,Human Observation,2004-05-05,BICY,331-43,NA,26.2506,-81.0295,26.2527,-81.0285,WGS84,314,Cell #AK02,"17N 2903435 E, 497051 N",UTM,WGS84,1,30,331,43,-81.0289619814668,26.25144029301866,NA,A,R,A +Taxodium ascendens,Pond cypress,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,taxoasce,Human Observation,2004-03-31,BICY,321-63,NA,26.1331,-81.0631,26.1352,-81.0633,WGS84,314,Cell #AG15,"17N 2890423 E, 493688 N",UTM,WGS84,1,0,321,63,-81.0631,26.134521607854175,species,A,A,A +Rhizophora mangle,Red mangrove,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,rhizmang,Human Observation,2004-03-25,BICY,375-64,NA,25.8429,-81.3738,25.8434,-81.3763,WGS84,314,"Cell #B47,endpoint estimated using arcmap","17N 2858345 E, 462537 N",UTM,WGS84,1,240,375,64,-81.37518216985374,25.842177877819555,species,A,A,A +Tillandsia utriculata,"Giant wild-pine, Giant airplant",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,tillutri,Human Observation,2002-08-01,BICY,192-56,NA,26.1696,-81.2652,26.1718,-81.2654,WGS84,314,Cell #M11,"17N 2894488 E, 473501 N",UTM,WGS84,1,355,192,56,-81.26532205167302,26.170858836433094,species,A,A,A +Persea palustris,Swamp bay,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,perspalu,Human Observation,2002-08-28,BICY,228-58,NA,26.0141,-80.8956,26.0134,-80.8981,WGS84,314,Cell #AX28,"17N 2877249 E, 510444 N",UTM,WGS84,1,260,228,58,-80.89702645986932,26.013872721609076,species,A,A,A +Fraxinus caroliniana,"Water ash, Carolina ash, Pop ash",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,fraxcaro,Human Observation,2004-06-03,BICY,353-18,NA,26.0243,-81.0653,26.0246,-81.0678,WGS84,314,Cell #AG27,"17N 2878374 E, 493467 N",UTM,WGS84,1,295,353,18,-81.06570744343719,26.024471658440273,species,A,A,A +Cladium jamaicense,"Saw-grass, Jamaica swamp sawgrass",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,cladjama,Human Observation,2003-02-06,BICY,454-79,NA,25.953,-81.3496,25.9516,-81.3514,WGS84,314,Cell #D35,"17N 2870527 E, 464999 N",UTM,WGS84,1,240,454,79,-81.35130769732359,25.952108642004475,species,A,A,A +Amphicarpum muhlenbergianum,Blue-maidencane,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,amphmuhl,Human Observation,2004-04-02,BICY,395-79,NA,26.2527,-80.9439,26.2531,-80.9415,WGS84,314,Cell #AS02,"17N 2903676 E, 505602 N",UTM,WGS84,1,80,395,79,-80.94195310216915,26.253009535802367,species,A,A,A +Chrysobalanus icaco,Coco-plum,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,chryicac,Human Observation,2003-02-05,BICY,467-61,NA,26.1795,-80.9405,26.1786,-80.9427,WGS84,314,Cell #AS10,"17N 2895569 E, 505946 N",UTM,WGS84,1,250,467,61,-80.94193352617964,26.17902921281956,species,A,A,A +Paspalum monostachyum,Gulfdune paspalum,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,paspmono,Human Observation,2002-05-31,BICY,203-14,NA,26.2044,-81.066,26.2044,-81.066,WGS84,314,Cell #AG07 (was mislabeled as AD31),"17N 2898326 E, 493407 N",UTM,WGS84,1,50,203,14,-81.06573173327054,26.204603062625544,species,A,A,A +Taxodium ascendens,Pond cypress,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,taxoasce,Human Observation,2003-05-23,BICY,530-98,NA,25.8048,-80.9224,25.8066,-80.9227,WGS84,314,Cell #AU51,"17N 2854064 E, 507777 N",UTM,WGS84,1,5,530,98,-80.92218706621945,25.807003074644793,species,A,A,A +Eupatorium mikanioides,"Semaphore eupatorium, Semaphore thoroughwort",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,eupamika,Human Observation,2002-06-17,BICY,144-2,NA,25.8329,-81.1112,25.8352,-81.1114,WGS84,314,"Cell #AB48, W of Monroe Station S of Tamiami Trai","17N 2857179 E, 488852 N",UTM,WGS84,1,5,144,2,-81.1111956534657,25.83294496054299,species,A,A,A +Rhynchospora divergens,Spreading beaksedge,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,rhyndive,Human Observation,2003-06-04,BICY,524-100,NA,25.98,-80.8747,25.9783,-80.8761,WGS84,314,Cell #AZ32,"17N 2873479 E, 512543 N",UTM,WGS84,1,225,524,100,-80.87646536582642,25.9784043541861,species,A,A,A +Taxodium ascendens,Pond cypress,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,taxoasce,Human Observation,2004-04-28,BICY,406-83,NA,25.8144,-81.0821,25.8152,-81.0841,WGS84,314,Cell #AE50,"17N 2855128 E, 491772 N",UTM,WGS84,1,300,406,83,-81.08389209731841,25.81533648619446,species,A,A,A +Cassytha filiformis,"Lovevine, Devil's gut",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,cassfili,Human Observation,2002-09-19,BICY,220-68,NA,26.1911,-80.8875,26.1922,-80.8853,WGS84,314,Cell #AY09,"17N 2896849 E, 511241 N",UTM,WGS84,1,60,220,68,-80.88602708693261,26.19186720325253,species,A,A,A +Serenoa repens,Saw palmetto,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,sererepe,Human Observation,2002-07-17,BICY,164-96,NA,26.0432,-81.0379,26.0418,-81.0359,WGS84,314,"Cell #AJ25, Central Pines","17N 2880474 E, 496209 N",UTM,WGS84,1,130,164,96,-81.0360630042715,26.04180752587444,species,A,A,A +Paspalum monostachyum,Gulfdune paspalum,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,paspmono,Human Observation,2002-08-21,BICY,240-93,NA,25.9999,-80.9093,26.0006,-80.907,WGS84,314,Cell #AW30,"17N 2875680 E, 509076 N",UTM,WGS84,1,80,240,93,-80.9070130089734,26.00026440047971,species,A,A,A +Salix caroliniana,Coastal Plain willow,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,salicaro,Human Observation,2002-05-09,BICY,183-75,NA,25.9254,-80.8441,25.9234,-80.8439,WGS84,314,Cell #BC38,"17N 2867427 E, 515616 N",UTM,WGS84,1,180,183,75,-80.8441,25.923707560685404,species,A,A,A +Proserpinaca palustris,"Mermaid weed, Marsh mermaidweed",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,prospalu,Human Observation,2002-11-05,BICY,280-70,NA,25.8708,-81.2282,25.8686,-81.228,WGS84,314,Cell #Q44,"17N 2861398 E, 477142 N",UTM,WGS84,1,180,280,70,-81.2282,25.869220378092397,species,A,A,A +Taxodium ascendens,Pond cypress,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,taxoasce,Human Observation,2004-06-17,BICY,333-40,NA,25.8815,-81.1742,25.8816,-81.1766,WGS84,314,Cell #V43,"17N 2862570 E, 482551 N",UTM,WGS84,1,260,333,40,-81.17518266477126,25.881343254938653,species,A,A,A +Schinus terebinthifolius,Brazilian-pepper,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,schitere,Human Observation,2002-11-15,BICY,286-15,NA,25.8652,-81.3462,25.8636,-81.3461,WGS84,314,Cell #E45,"17N 2860800 E, 465316 N",UTM,WGS84,1,180,286,15,-81.3462,25.864861509359002,species,A,A,A +Sabal palmetto,Cabbage palm,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,sabapalm,Human Observation,2002-08-28,BICY,229-69,NA,26.0141,-80.8956,26.0125,-80.894,WGS84,314,Cell #AX28,"17N 2877249 E, 510444 N",UTM,WGS84,1,140,229,69,-80.8944923740018,26.012907245382276,species,A,A,A +Cladium jamaicense,"Saw-grass, Jamaica swamp sawgrass",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,cladjama,Human Observation,2003-04-24,BICY,612-32,NA,25.7194,-81.0846,25.7177,-81.0832,WGS84,314,Cell #AE61,"17N 2844609 E, 491518 N",UTM,WGS84,1,150,612,32,-81.08420141453159,25.718774618385467,species,A,A,A +Fraxinus caroliniana,"Water ash, Carolina ash, Pop ash",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,fraxcaro,Human Observation,2002-05-22,BICY,219-28,NA,25.7737,-81.0393,25.7735,-81.0388,WGS84,314,Cell #AJ55 (North of Loop Road),"17N 2850623 E, 496063 N",UTM,WGS84,1,155,219,28,-81.0390050792215,25.773127342635146,species,A,A,A +Baccharis glomeruliflora,Silverling,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,baccglom,Human Observation,2003-11-26,BICY,476-20,NA,25.8062,-80.8845,25.804,-80.8852,WGS84,314,Cell #AY51,"17N 2854223 E, 511582 N",UTM,WGS84,1,210,476,20,-80.88474929761783,25.80580914128499,species,A,A,A +Elytraria caroliniensis var. angustifolia,Narrowleaf Carolina scalystem,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,elytcaroangu,Human Observation,2002-08-08,BICY,257-88,NA,26.1826,-80.8868,26.1821,-80.8845,WGS84,314,Cell #AY10,"17N 2895910 E, 511309 N",UTM,WGS84,1,110,257,88,-80.8847319111967,26.181920827330956,species,A,A,A +Rapanea punctata,"Myrsine, Colicwood",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,rapapunc,Human Observation,2003-01-04,BICY,459-12,NA,26.2036,-80.9318,26.203,-80.934,WGS84,314,Cell #AT07,"17N 2898234 E, 506815 N",UTM,WGS84,1,250,459,12,-80.9320820640969,26.203507387568916,species,A,A,A +Rhynchospora divergens,Spreading beaksedge,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,rhyndive,Human Observation,2004-05-12,BICY,363-81,NA,25.9823,-80.9107,25.982,-80.9132,WGS84,314,Cell #AV32,"17N 2873723 E, 508938 N",UTM,WGS84,1,270,363,81,-80.9127223161197,25.98229998586822,species,A,A,A +Quercus laurifolia,"Laurel oak, Diamond oak",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,querlaur,Human Observation,2002-08-01,BICY,193-56,NA,26.1696,-81.2652,26.1674,-81.2645,WGS84,314,Cell #M11,"17N 2894488 E, 473501 N",UTM,WGS84,1,170,193,56,-81.26495683073348,26.168355552150047,species,A,A,A +Persea palustris,Swamp bay,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,perspalu,Human Observation,2004-03-24,BICY,371-6,NA,25.9769,-81.3355,25.9771,-81.333,WGS84,314,Cell #F32,"17N 2873174 E, 466418 N",UTM,WGS84,1,90,371,6,-81.33535020564831,25.976899999922473,species,A,A,A +Paspalum monostachyum,Gulfdune paspalum,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,paspmono,Human Observation,2003-02-11,BICY,491-26,NA,25.8735,-81.2566,25.8745,-81.2587,WGS84,314,Cell #N44,"17N 2861698 E, 474294 N",UTM,WGS84,1,300,491,26,-81.2571616558755,25.873793357120466,species,A,A,A +Tillandsia fasciculata var. densispica,"Stiff-leaved wild-pine, Cardinal airplant",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,tillfascdens,Human Observation,2003-02-06,BICY,453-54,NA,25.953,-81.3496,25.9508,-81.3501,WGS84,314,Cell #D35,"17N 2870527 E, 464999 N",UTM,WGS84,1,200,453,54,-81.35006099656393,25.9518549353032,species,A,A,A +Cladium jamaicense,"Saw-grass, Jamaica swamp sawgrass",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,cladjama,Human Observation,2002-07-12,BICY,157-65,NA,25.7641,-80.8619,25.7635,-80.8642,WGS84,314,"Cell #BA56, Lysiloma Hammock","17N 2849565 E, 513849 N",UTM,WGS84,1,270,157,65,-80.86351986784605,25.764099990987226,species,A,A,A +Paspalum monostachyum,Gulfdune paspalum,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,paspmono,Human Observation,2002-09-18,BICY,225-74,NA,25.7079,-81.0433,25.7099,-81.0433,WGS84,314,Cell #AI62,"17N 2843334 E, 495652 N",UTM,WGS84,1,5,225,74,-81.04313934443759,25.709563568393484,species,A,A,A +NA,NA,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,NA,Human Observation,2002-04-24,BICY,177-64,NA,25.8539,-80.96,25.8543,-80.9575,WGS84,314,Cell #AR46/1812,"17N 2859501 E, 504007 N",UTM,WGS84,1,85,177,64,-80.9584099225389,25.854025864139842,NA,A,R,A +Tripsacum dactyloides,"Eastern gamagrass, Fakahatchee grass",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,tripdact,Human Observation,2003-11-26,BICY,476-32,NA,25.8062,-80.8845,25.804,-80.8852,WGS84,314,Cell #AY51,"17N 2854223 E, 511582 N",UTM,WGS84,1,210,476,32,-80.88489887540338,25.805574625840734,species,A,A,A +Andropogon glomeratus var. pumilus,Common bushy bluestem,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,andrglompumi,Human Observation,2004-05-12,BICY,362-21,NA,25.9823,-80.9107,25.98,-80.9103,WGS84,314,Cell #AV32,"17N 2873723 E, 508938 N",UTM,WGS84,1,180,362,21,-80.9107,25.981826120755663,species,A,A,A +NA,NA,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,NA,Human Observation,2003-02-21,BICY,452-20,NA,26.0064,-80.9098,26.0048,-80.908,WGS84,314,Cell #AW29,"17N 2876396 E, 509026 N",UTM,WGS84,1,140,452,20,-80.90947896762079,26.00605427454934,NA,A,R,A +Dichanthelium erectifolium,Erectleaf witchgrass,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,dicherec,Human Observation,2004-04-08,BICY,440-35,NA,26.2229,-81.2349,26.2233,-81.2373,WGS84,314,Cell #P05,"17N 2900391 E, 476537 N",UTM,WGS84,1,290,440,35,-81.23572282521577,26.223170115697435,species,A,A,A +Proserpinaca palustris,"Mermaid weed, Marsh mermaidweed",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,prospalu,Human Observation,2002-11-05,BICY,280-15,NA,25.8708,-81.2282,25.8686,-81.228,WGS84,314,Cell #Q44,"17N 2861398 E, 477142 N",UTM,WGS84,1,180,280,15,-81.2282,25.87046150962017,species,A,A,A +Taxodium ascendens,Pond cypress,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,taxoasce,Human Observation,2002-05-09,BICY,182-99,NA,25.9254,-80.8441,25.927,-80.8422,WGS84,314,Cell #BC38,"17N 2867427 E, 515616 N",UTM,WGS84,1,50,182,99,-80.84220743998783,25.926835987641123,species,A,A,A +Blechnum serrulatum,"Swamp fern, Toothed midsorus fern",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,blecserr,Human Observation,2004-06-10,BICY,315-4,NA,26.1551,-81.1871,26.1539,-81.1851,WGS84,314,Cell #U13,"17N 2892878 E, 481301 N",UTM,WGS84,1,125,315,4,-81.18701807326325,26.155048228652266,species,A,A,A +Juncus polycephalos,Manyhead rush,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,juncpoly,Human Observation,2004-04-01,BICY,402-3,NA,26.1781,-81.0927,26.1782,-81.0902,WGS84,314,Cell #AD10,"17N 2895406 E, 490734 N",UTM,WGS84,1,90,402,3,-81.0926249746918,26.17809999998045,species,A,A,A +Cassytha filiformis,"Lovevine, Devil's gut",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,cassfili,Human Observation,2003-02-11,BICY,489-99,NA,26.0752,-81.293,26.0762,-81.2954,WGS84,314,Cell #J21,"17N 2884040 E, 470692 N",UTM,WGS84,1,300,489,99,-81.29514227882372,26.076316970693977,species,A,A,A +Salix caroliniana,Coastal Plain willow,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,salicaro,Human Observation,2004-04-06,BICY,423-32,NA,25.7633,-80.9177,25.765,-80.9164,WGS84,314,Cell #AV56,"17N 2849471 E, 508257 N",UTM,WGS84,1,50,423,32,-80.91708910165129,25.763764170725214,species,A,A,A +NA,NA,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,NA,Human Observation,2004-06-02,BICY,357-55,NA,25.9555,-81.0064,25.9541,-81.0084,WGS84,314,Cell #AM35,"17N 2870752 E, 499364 N",UTM,WGS84,1,240,357,55,-81.00758893103298,25.954879436661777,NA,A,R,A +Blechnum serrulatum,"Swamp fern, Toothed midsorus fern",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,blecserr,Human Observation,2004-03-31,BICY,318-48,NA,26.1349,-81.057,26.1348,-81.0596,WGS84,314,Cell #AH15,"17N 2890624 E, 494305 N",UTM,WGS84,1,270,318,48,-81.05819996290961,26.134899995003934,species,A,A,A +NA,NA,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,NA,Human Observation,2004-04-07,BICY,437-61,NA,26.2515,-81.2499,26.25,-81.2482,WGS84,314,Cell #O02,"17N 2903558 E, 475040 N",UTM,WGS84,1,140,437,61,-81.24891881158993,26.250445570923535,NA,A,R,A +Chrysobalanus icaco,Coco-plum,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,chryicac,Human Observation,2004-04-06,BICY,434-56,NA,25.8173,-81.1012,25.8187,-81.1007,WGS84,314,Cell #AC50,"17N 2855456 E, 489854 N",UTM,WGS84,1,20,434,56,-81.10072246625163,25.81848749497714,species,A,A,A +Taxodium distichum,Bald cypress,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,taxodist,Human Observation,2003-04-24,BICY,613-82,NA,25.7194,-81.0846,25.7216,-81.0853,WGS84,314,Cell #AE61,"17N 2844609 E, 491518 N",UTM,WGS84,1,345,613,82,-81.08512871340668,25.721187398735886,species,A,A,A +Serenoa repens,Saw palmetto,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,sererepe,Human Observation,2003-01-04,BICY,459-60,NA,26.2036,-80.9318,26.203,-80.934,WGS84,314,Cell #AT07,"17N 2898234 E, 506815 N",UTM,WGS84,1,250,459,60,-80.93321031602116,26.203136932301497,species,A,A,A +Taxodium ascendens,Pond cypress,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,taxoasce,Human Observation,2004-03-30,BICY,389-99,NA,26.1428,-80.8861,26.142,-80.8883,WGS84,314,Cell #AY14,"17N 2891503 E, 511389 N",UTM,WGS84,1,250,389,99,-80.88842580872736,26.14203592446244,species,A,A,A +Cladium jamaicense,"Saw-grass, Jamaica swamp sawgrass",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,cladjama,Human Observation,2004-03-31,BICY,318-40,NA,26.1349,-81.057,26.1348,-81.0596,WGS84,314,Cell #AH15,"17N 2890624 E, 494305 N",UTM,WGS84,1,270,318,40,-81.05799996909136,26.13489999653051,species,A,A,A +Taxodium ascendens,Pond cypress,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,taxoasce,Human Observation,2002-07-17,BICY,164-28,NA,26.0432,-81.0379,26.0418,-81.0359,WGS84,314,"Cell #AJ25, Central Pines","17N 2880474 E, 496209 N",UTM,WGS84,1,130,164,28,-81.03736420509647,26.042793864154078,species,A,A,A +Sesuvium portulacastrum,"Perennial sea-purslane, Shoreline seapurslane",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,sesuport,Human Observation,2003-03-25,BICY,445-75,NA,25.8941,-81.3267,25.8932,-81.3289,WGS84,314,Cell #G42,"17N 2863995 E, 467279 N",UTM,WGS84,1,250,445,75,-81.32845827001574,25.893521138551627,species,A,A,A +Taxodium ascendens,Pond cypress,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,taxoasce,Human Observation,2002-06-20,BICY,141-77,NA,25.8358,-80.9002,25.8353,-80.8977,WGS84,314,Cell #AX48; south of dade-collier airport,"17N 2857500 E, 510001 N",UTM,WGS84,1,100,141,77,-80.89830909979094,25.83549825795452,species,A,A,A +Fraxinus caroliniana,"Water ash, Carolina ash, Pop ash",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,fraxcaro,Human Observation,2004-05-18,BICY,365-41,NA,26.2236,-81.0959,26.2228,-81.0936,WGS84,314,Cell #AD05,"17N 2900452 E, 490421 N",UTM,WGS84,1,130,365,41,-81.09511423814358,26.223005315271724,species,A,A,A +Paspalum monostachyum,Gulfdune paspalum,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,paspmono,Human Observation,2004-04-07,BICY,433-25,NA,26.25,-81.2548,26.2492,-81.2524,WGS84,314,Cell #N02,"17N 2903396 E, 474557 N",UTM,WGS84,1,120,433,25,-81.2542582199449,26.24971793847805,species,A,A,A +Quercus laurifolia,"Laurel oak, Diamond oak",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,querlaur,Human Observation,2004-05-07,BICY,297-54,NA,25.7238,-80.9174,25.7236,-80.9199,WGS84,314,"Cell #AV60, Hess Hammock","17N 2845103 E, 508290 N",UTM,WGS84,1,270,297,54,-80.91874528248609,25.723799993790713,species,A,A,A +Blechnum serrulatum,"Swamp fern, Toothed midsorus fern",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,blecserr,Human Observation,2002-06-20,BICY,133-56,NA,25.8641,-81.1359,25.8662,-81.1356,WGS84,314,"Cell #Z45, New River Strand S of Tamiami Trail","17N 2860637 E, 486384 N",UTM,WGS84,1,5,133,56,-81.13577826385962,25.86535888964038,species,A,A,A +Rhynchospora microcarpa,Southern beaksedge,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,rhynmicr2,Human Observation,2002-08-01,BICY,254-48,NA,26.1693,-81.2554,26.1694,-81.2578,WGS84,314,Cell #N11,"17N 2894454 E, 474478 N",UTM,WGS84,1,280,254,48,-81.25658208122542,26.169488077732787,species,A,A,A diff --git a/inst/rmarkdown/templates/nps-data-release-report-template/skeleton/BICY_Example/Mini_BICY_Veg_Transect_Cleaned.csv b/inst/rmarkdown/templates/nps-data-release-report-template/skeleton/BICY_Example/Mini_BICY_Veg_Transect_Cleaned.csv new file mode 100644 index 0000000..756a8e2 --- /dev/null +++ b/inst/rmarkdown/templates/nps-data-release-report-template/skeleton/BICY_Example/Mini_BICY_Veg_Transect_Cleaned.csv @@ -0,0 +1,501 @@ +scientificName,vernacularName,namePublishedIn,custom_TaxonAsRecorded,basisOfRecord,eventDate,locality,locationID,fieldNotes,decimalLatitude,decimalLongitude,custom_TransectEndLatitude,custom_TransectEndLongitude,geodeticDatum,coordinateUncertaintyInMeters,locationRemarks,verbatimCoordinates,verbatimCoordinateSystem,verbatimSRS,individualCount,custom_CoordinateBearing,custom_Transect,taxonRank,coordinate_flag,taxonomic_flag,eventDate_flag +Setaria parviflora,"Knotroot foxtail, Yellow bristlegrass",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,setaparv,Human Observation,2002-04-24,BICY,178,NA,25.8574,-81.0728,25.8554,-81.0716,WGS84,314,Cell #AF46/1800,"17N 2859896 E, 492708 N",UTM,WGS84,1,160,178,species,A,A,A +Dichanthelium erectifolium,Erectleaf witchgrass,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,dicherec,Human Observation,2004-03-03,BICY,381,NA,26.1969,-81.3017,26.1979,-81.3003,WGS84,314,Cell #I08,"17N 2897525 E, 469858 N",UTM,WGS84,1,80,381,species,A,A,A +Nephrolepis exaltata,Wild Boston fern,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,nephexal,Human Observation,2003-02-20,BICY,494,NA,25.9569,-80.947,25.9552,-80.9487,WGS84,314,Cell #AS35,"17N 2870917 E, 505304 N",UTM,WGS84,1,225,494,species,A,A,A +Tillandsia balbisiana,"Reflexed wild-pine, Northern needleleaf",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,tillbalb,Human Observation,2003-04-29,BICY,606,NA,25.8642,-81.2501,25.8627,-81.2519,WGS84,314,Cell #N45,"17N 2860672 E, 474942 N",UTM,WGS84,1,230,606,species,A,A,A +Centella asiatica,"Coinwort, Spadeleaf",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,centasia,Human Observation,2002-07-11,BICY,160,NA,26.0975,-81.2848,26.0998,-81.2851,WGS84,314,Cell #K19,"17N 2886508 E, 471520 N",UTM,WGS84,1,0,160,species,A,A,A +Nymphoides aquatica,Big floatingheart,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,nympaqua,Human Observation,2003-07-01,BICY,704,NA,25.6851,-80.8571,25.6848,-80.8596,WGS84,314,Cell #BB65,"17N 2840821 E, 514337 N",UTM,WGS84,1,260,704,species,A,A,A +Sarcostemma clausum,"Whitevine, White twinevine",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,sarcclau,Human Observation,2004-05-05,BICY,330,NA,26.2506,-81.0295,26.2484,-81.0298,WGS84,314,Cell #AK02,"17N 2903435 E, 497051 N",UTM,WGS84,1,185,330,species,A,A,A +Tillandsia fasciculata var. densispica,"Stiff-leaved wild-pine, Cardinal airplant",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,tillfascdens,Human Observation,2002-07-31,BICY,194,NA,26.0499,-81.3429,26.0503,-81.3446,WGS84,314,"Cell #E24, Deep Lake","17N 2881252 E, 465701 N",UTM,WGS84,1,290,194,species,A,A,A +Cephalanthus occidentalis,Common buttonbush,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,cephocci,Human Observation,2003-06-18,BICY,697,NA,26.047,-81.1762,26.0447,-81.1762,WGS84,314,Cell #V25,"17N 2880903 E, 482375 N",UTM,WGS84,1,190,697,species,A,A,A +Diodia virginiana,"Buttonweed, Virginia buttonweed",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,diodvirg,Human Observation,2002-05-17,BICY,187,NA,26.0077,-81.2502,26.0055,-81.2512,WGS84,314,Cell #N29/185,"17N 2876558 E, 474962 N",UTM,WGS84,1,200,187,species,A,A,A +Tillandsia paucifolia,"Twisted wild-pine, Potbelly airplant",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,tillpauc,Human Observation,2003-02-26,BICY,587,NA,26.0342,-81.1123,26.0345,-81.1149,WGS84,314,Cell #AB26,"17N 2879474 E, 488762 N",UTM,WGS84,1,280,587,species,A,A,A +Polygala cruciata,Drumheads,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,polycruc2,Human Observation,2002-07-17,BICY,164,NA,26.0432,-81.0379,26.0418,-81.0359,WGS84,314,"Cell #AJ25, Central Pines","17N 2880474 E, 496209 N",UTM,WGS84,1,130,164,species,A,A,A +Parthenocissus quinquefolia,"Virginia-creeper, Woodbine",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,partquin,Human Observation,2003-04-24,BICY,613,NA,25.7194,-81.0846,25.7216,-81.0853,WGS84,314,Cell #AE61,"17N 2844609 E, 491518 N",UTM,WGS84,1,345,613,species,A,A,A +Paspalum monostachyum,Gulfdune paspalum,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,paspmono,Human Observation,2002-11-05,BICY,293,NA,26.0816,-81.2488,26.0816,-81.2464,WGS84,314,Cell #O21,"17N 2884745 E, 475114 N",UTM,WGS84,1,90,293,species,A,A,A +Rhynchospora divergens,Spreading beaksedge,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,rhyndive,Human Observation,2003-05-15,BICY,642,NA,25.9071,-81.3325,25.9089,-81.3339,WGS84,314,Cell #F40,"17N 2865443 E, 466694 N",UTM,WGS84,1,330,642,species,A,A,A +Thalia geniculata,"Alligatorflag, Fireflag",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,thalgeni,Human Observation,2004-04-15,BICY,339,NA,26.252,-81.045,26.2518,-81.0431,WGS84,314,Cell #AI02,"17N 2903598 E, 495510 N",UTM,WGS84,1,100,339,species,A,A,A +Lobelia feayana,Bay lobelia,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,lobefeay,Human Observation,2004-04-07,BICY,438,NA,26.2498,-81.2265,26.2476,-81.2262,WGS84,314,Cell #Q02,"17N 2903369 E, 477380 N",UTM,WGS84,1,180,438,species,A,A,A +Eragrostis elliottii,Elliott's love grass,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,eragelli,Human Observation,2003-07-01,BICY,703,NA,25.6363,-80.8884,25.638,-80.8869,WGS84,314,Cell #AY70,"17N 2835417 E, 511198 N",UTM,WGS84,1,40,703,species,A,A,A +Hypericum cistifolium,Roundpod St. John's-wort,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,hypecist,Human Observation,2003-02-21,BICY,593,NA,25.9996,-81.1574,25.9976,-81.1565,WGS84,314,Cell #X30,"17N 2875653 E, 484250 N",UTM,WGS84,1,165,593,species,A,A,A +Tillandsia fasciculata var. densispica,"Stiff-leaved wild-pine, Cardinal airplant",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,tillfascdens,Human Observation,2004-04-02,BICY,427,NA,26.2477,-80.9374,26.2497,-80.9363,WGS84,314,Cell #AT02,"17N 2903122 E, 506250 N",UTM,WGS84,1,30,427,species,A,A,A +Proserpinaca palustris,"Mermaid weed, Marsh mermaidweed",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,prospalu,Human Observation,2003-05-13,BICY,611,NA,26.1457,-81.2422,26.1447,-81.2445,WGS84,314,Cell #O14,"17N 2891842 E, 475791 N",UTM,WGS84,1,265,611,species,A,A,A +Hyptis alata,"Musky mint, Clustered bushmint",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,hyptalat,Human Observation,2004-06-08,BICY,348,NA,25.8547,-81.0005,25.8568,-81.0001,WGS84,314,Cell #AM46,"17N 2859588 E, 499945 N",UTM,WGS84,1,30,348,species,A,A,A +Thalia geniculata,"Alligatorflag, Fireflag",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,thalgeni,Human Observation,2003-03-07,BICY,556,NA,25.7601,-80.8737,25.7623,-80.8742,WGS84,314,Cell #AZ56,"17N 2849121 E, 512666 N",UTM,WGS84,1,355,556,species,A,A,A +Sisyrinchium angustifolium,Narroleaf blueeyed-grass,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,sisyangu,Human Observation,2002-06-04,BICY,269,NA,25.9992,-81.1001,25.9993,-81.1024,WGS84,314,Cell #AC30,"17N 2875600 E, 489986 N",UTM,WGS84,1,200,269,species,A,A,A +Mitreola petiolata,"Miterwort, Lax hornpod",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,mitrpeti,Human Observation,2003-03-20,BICY,623,NA,25.9562,-81.2046,25.9553,-81.2025,WGS84,314,Cell #S35,"17N 2870852 E, 479514 N",UTM,WGS84,1,115,623,species,A,A,A +Tillandsia fasciculata var. densispica,"Stiff-leaved wild-pine, Cardinal airplant",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,tillfascdens,Human Observation,2002-05-07,BICY,130,NA,25.8803,-81.2219,25.881,-81.2243,WGS84,314,"Cell #Q43, East of Burns Lake Rd. Q43","17N 2862448 E, 477773 N",UTM,WGS84,1,290,130,species,A,A,A +Dichanthelium erectifolium,Erectleaf witchgrass,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,dicherec,Human Observation,2003-03-20,BICY,637,NA,25.96,-81.1883,25.9606,-81.1856,WGS84,314,Cell #U34,"17N 2871268 E, 481145 N",UTM,WGS84,1,80,637,species,A,A,A +Scleria baldwinii,Baldwin's nutrush,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,sclebald,Human Observation,2003-03-20,BICY,620,NA,25.9603,-81.2025,25.9583,-81.2015,WGS84,314,Cell #S34,"17N 2871303 E, 479727 N",UTM,WGS84,1,160,620,species,A,A,A +Polygala grandiflora,"Candyweed, Showy milkwort",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,polygran,Human Observation,2002-05-07,BICY,169,NA,25.8341,-81.0889,25.836,-81.0888,WGS84,314,"Cell #AE48, W. of Loop Rd. S of Monroe","17N 2857310 E, 491088 N",UTM,WGS84,1,0,169,species,A,A,A +Oxalis corniculata,"Lady's-sorrel, Common yellow woodsorrel",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,oxalcorn,Human Observation,2004-04-07,BICY,438,NA,26.2498,-81.2265,26.2476,-81.2262,WGS84,314,Cell #Q02,"17N 2903369 E, 477380 N",UTM,WGS84,1,180,438,species,A,A,A +Flaveria linearis,Narrowleaf yellowtops,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,flavline,Human Observation,2002-06-18,BICY,146,NA,26.1543,-81.3354,26.1543,-81.3329,WGS84,314,"Cell #F13, SE of Miles City","17N 2892813 E, 466479 N",UTM,WGS84,1,90,146,species,A,A,A +Pteridium aquilinum var. caudatum,Lacy braken fern,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,pteraquicaud,Human Observation,2003-02-13,BICY,478,NA,25.9287,-81.0161,25.9302,-81.0177,WGS84,314,Cell #AL38,"17N 2867787 E, 498386 N",UTM,WGS84,1,320,478,species,A,A,A +Sagittaria lancifolia,Bulltongue arrowhead,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,sagilanc,Human Observation,2004-05-18,BICY,365,NA,26.2236,-81.0959,26.2228,-81.0936,WGS84,314,Cell #AD05,"17N 2900452 E, 490421 N",UTM,WGS84,1,130,365,species,A,A,A +Ilex cassine,"Dahoon holly, Dahoon",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,ilexcass,Human Observation,2003-03-14,BICY,552,NA,26.2265,-81.2674,26.2243,-81.2672,WGS84,314,Cell #M05,"17N 2900793 E, 473289 N",UTM,WGS84,1,180,552,species,A,A,A +Ludwigia repens,Creeping primrosewillow,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,ludwrepe,Human Observation,2002-08-08,BICY,256,NA,26.1826,-80.8868,26.1805,-80.8866,WGS84,314,Cell #AY10,"17N 2895910 E, 511309 N",UTM,WGS84,1,180,256,species,A,A,A +Eragrostis elliottii,Elliott's love grass,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,eragelli,Human Observation,2003-02-19,BICY,595,NA,25.9988,-81.2319,25.9991,-81.2342,WGS84,314,Cell #P30,"17N 2875568 E, 476791 N",UTM,WGS84,1,280,595,species,A,A,A +Physalis walteri,Walter's groundcherry,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,physwalt,Human Observation,2002-11-08,BICY,271,NA,25.7561,-81.0054,25.7563,-81.0064,WGS84,314,"Cell #AM57, origin estimated with ARCMap","17N 2848673 E, 499461 N",UTM,WGS84,1,280,271,species,A,A,A +Hypericum brachyphyllum,Coastalplain St. John's-wort,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,hypebrac,Human Observation,2002-05-21,BICY,215,NA,26.2303,-80.9066,26.2305,-80.9043,WGS84,314,Cell #AW04,"17N 2901187 E, 509327 N",UTM,WGS84,1,90,215,species,A,A,A +Hydrolea corymbosa,Skyflower,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,hydrcory,Human Observation,2003-03-06,BICY,571,NA,25.9539,-81.1305,25.9533,-81.1327,WGS84,314,Cell #Z35,"17N 2870588 E, 486932 N",UTM,WGS84,1,260,571,species,A,A,A +Paspalidium geminatum,Egyptian paspalidium,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,paspgemi,Human Observation,2002-04-09,BICY,173,NA,26.1945,-81.2321,26.193,-81.2342,WGS84,314,Cell #3950/P08,"17N 2897240 E, 476808 N",UTM,WGS84,1,240,173,species,A,A,A +Helenium pinnatifidum,Southeastern sneezeweed,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,helepinn,Human Observation,2004-03-30,BICY,388,NA,26.1428,-80.8861,26.1411,-80.8845,WGS84,314,Cell #AY14,"17N 2891503 E, 511389 N",UTM,WGS84,1,145,388,species,A,A,A +Panicum hemitomon,Maidencane,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,panihemi,Human Observation,2003-03-25,BICY,691,NA,25.935,-80.9886,25.9353,-80.9865,WGS84,314,Cell #AO37,"17N 2868490 E, 501141 N",UTM,WGS84,1,55,691,species,A,A,A +Ludwigia repens,Creeping primrosewillow,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,ludwrepe,Human Observation,2003-04-17,BICY,662,NA,26.2374,-81.0147,26.2353,-81.0143,WGS84,314,Cell #AL04,"17N 2901980 E, 498527 N",UTM,WGS84,1,175,662,species,A,A,A +Quercus laurifolia,"Laurel oak, Diamond oak",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,querlaur,Human Observation,2004-03-03,BICY,384,NA,26.1907,-81.3054,26.1888,-81.3065,WGS84,314,Cell #I09,"17N 2896843 E, 469487 N",UTM,WGS84,1,210,384,species,A,A,A +Cornus foemina,"Stiff cornel, Swamp dogwood, Stiff dogwood",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,cornfoem,Human Observation,2004-06-22,BICY,311,NA,26.1685,-81.2779,26.1706,-81.2771,WGS84,314,Cell #L11,"17N 2894377 E, 472231 N",UTM,WGS84,1,25,311,species,A,A,A +Hypericum hypericoides,St. Andrew's-cross,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,hypehype,Human Observation,2003-05-02,BICY,655,NA,26.2526,-81.1916,26.252,-81.1939,WGS84,314,Cell #T02,"17N 2903667 E, 480866 N",UTM,WGS84,1,260,655,species,A,A,A +Toxicodendron radicans,Eastern poison-ivy,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,toxiradi,Human Observation,2002-06-17,BICY,145,NA,25.8329,-81.1112,25.8339,-81.1134,WGS84,314,"Cell #AB48, W of Monroe Station S of Tamiami Trai","17N 2857179 E, 488852 N",UTM,WGS84,1,305,145,species,A,A,A +Ludwigia microcarpa,Smallfruit primrosewillow,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,ludwmicr,Human Observation,2003-03-18,BICY,614,NA,25.8982,-81.1038,25.8962,-81.104,WGS84,314,Cell #AC41,"17N 2864411 E, 489601 N",UTM,WGS84,1,190,614,species,A,A,A +Boltonia diffusa,Smallhead Doll's-daisy,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,boltdiff,Human Observation,2004-03-11,BICY,399,NA,25.7817,-80.9812,25.7801,-80.9827,WGS84,314,Cell #AO54,"17N 2851513 E, 501882 N",UTM,WGS84,1,225,399,species,A,A,A +Setaria parviflora,"Knotroot foxtail, Yellow bristlegrass",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,setaparv,Human Observation,2004-05-13,BICY,430,NA,25.9072,-81.2737,25.9054,-81.2743,WGS84,314,Cell #L40,"17N 2865437 E, 472583 N",UTM,WGS84,1,220,430,species,A,A,A +Bacopa caroliniana,"Lemon hyssop, Lemon bacopa, Blue waterhyssop",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,bacocaro,Human Observation,2003-02-11,BICY,492,NA,25.8735,-81.2566,25.8756,-81.2553,WGS84,314,Cell #N44,"17N 2861698 E, 474294 N",UTM,WGS84,1,50,492,species,A,A,A +Aster bracei,Brace's aster,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,astebrac,Human Observation,2003-03-19,BICY,628,NA,25.9812,-81.1982,25.9817,-81.1957,WGS84,314,Cell #T32,"17N 2873621 E, 480164 N",UTM,WGS84,1,85,628,species,A,A,A +Mikania cordifolia,Florida Keys hempvine,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,mikacord,Human Observation,2002-07-31,BICY,253,NA,26.0454,-81.3423,26.0451,-81.3397,WGS84,314,Cell #E25,"17N 2880757 E, 465755 N",UTM,WGS84,1,110,253,species,A,A,A +Ludwigia microcarpa,Smallfruit primrosewillow,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,ludwmicr,Human Observation,2003-05-23,BICY,528,NA,25.801,-80.934,25.7989,-80.9342,WGS84,314,Cell #AT52,"17N 2853648 E, 506615 N",UTM,WGS84,1,185,528,species,A,A,A +Tillandsia variabilis,"Soft-leaved wild-pine, Leatherleaf airplant",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,tillvari,Human Observation,2004-04-29,BICY,418,NA,25.8155,-81.0426,25.8146,-81.0412,WGS84,314,Cell #AI50,"17N 2855253 E, 495730 N",UTM,WGS84,1,270,418,species,A,A,A +Blechnum serrulatum,"Swamp fern, Toothed midsorus fern",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,blecserr,Human Observation,2004-06-10,BICY,346,NA,26.1497,-81.1964,26.1498,-81.194,WGS84,314,Cell #T13,"17N 2892279 E, 480366 N",UTM,WGS84,1,95,346,species,A,A,A +Paspalum monostachyum,Gulfdune paspalum,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,paspmono,Human Observation,2004-04-07,BICY,439,NA,26.2498,-81.2265,26.2518,-81.2263,WGS84,314,Cell #Q02,"17N 2903369 E, 477380 N",UTM,WGS84,1,0,439,species,A,A,A +Mikania scandens,"Climbing hempweed, Climbing hempvine",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,mikascan,Human Observation,2003-06-04,BICY,519,NA,25.8734,-81.343,25.8715,-81.3442,WGS84,314,Cell #E44,"17N 2861714 E, 465639 N",UTM,WGS84,1,215,519,species,A,A,A +Justicia angusta,Narrow-leaved waterwillow,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,justangu,Human Observation,2003-04-09,BICY,672,NA,26.0927,-81.1845,26.0907,-81.1855,WGS84,314,Cell #U20,"17N 2885963 E, 481555 N",UTM,WGS84,1,210,672,species,A,A,A +Berchemia scandens,"rattan vine, Alabama supplejack",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,bercscan,Human Observation,2003-06-13,BICY,504,NA,26.2456,-81.1057,26.2438,-81.1047,WGS84,314,Cell #AC03,"17N 2902890 E, 489446 N",UTM,WGS84,1,160,504,species,A,A,A +Magnolia virginiana,Sweet-bay,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,magnvirg,Human Observation,2004-03-24,BICY,424,NA,25.9726,-81.3357,25.9712,-81.3339,WGS84,314,Cell #F33,"17N 2872694 E, 466400 N",UTM,WGS84,1,140,424,species,A,A,A +Iva microcephala,Piedmont marshelder,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,ivamicr,Human Observation,2002-09-19,BICY,220,NA,26.1911,-80.8875,26.1922,-80.8853,WGS84,314,Cell #AY09,"17N 2896849 E, 511241 N",UTM,WGS84,1,60,220,species,A,A,A +Oxypolis filiformis,"Water dropwort, Water cowbane",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,oxypfili,Human Observation,2003-02-05,BICY,466,NA,26.1795,-80.9152,26.1814,-80.9138,WGS84,314,Cell #AV10,"17N 2895561 E, 508470 N",UTM,WGS84,1,30,466,species,A,A,A +Tillandsia usneoides,Spanish-moss,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,tillusne,Human Observation,2002-11-15,BICY,287,NA,25.8652,-81.3462,25.8656,-81.3485,WGS84,314,Cell #E45,"17N 2860800 E, 465316 N",UTM,WGS84,1,290,287,species,A,A,A +Xyris calcicola,Limestone yelloweyed grass,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,xyricalc,Human Observation,2003-07-09,BICY,725,NA,26.2036,-81.2441,26.2056,-81.2452,WGS84,314,Cell #O07,"17N 2898250 E, 475610 N",UTM,WGS84,1,340,725,species,A,A,A +Chiococca parvifolia,Pineland snowberry,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,chioparv,Human Observation,2003-02-20,BICY,598,NA,25.9997,-81.1907,26.0008,-81.1928,WGS84,314,Cell #T30,"17N 2875659 E, 480919 N",UTM,WGS84,1,310,598,species,A,A,A +Cassytha filiformis,"Lovevine, Devil's gut",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,cassfili,Human Observation,2004-05-12,BICY,363,NA,25.9823,-80.9107,25.982,-80.9132,WGS84,314,Cell #AV32,"17N 2873723 E, 508938 N",UTM,WGS84,1,270,363,species,A,A,A +Elytraria caroliniensis var. angustifolia,Narrowleaf Carolina scalystem,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,elytcaroangu,Human Observation,2002-06-04,BICY,269,NA,25.9992,-81.1001,25.9993,-81.1024,WGS84,314,Cell #AC30,"17N 2875600 E, 489986 N",UTM,WGS84,1,200,269,species,A,A,A +Myrica cerifera,"Wax myrtle, Southern Bayberry",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,myriceri,Human Observation,2002-05-21,BICY,215,NA,26.2303,-80.9066,26.2305,-80.9043,WGS84,314,Cell #AW04,"17N 2901187 E, 509327 N",UTM,WGS84,1,90,215,species,A,A,A +Lythrum alatum var. lanceolatum,Winged loosestrife,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,lythalatlanc,Human Observation,2004-04-28,BICY,407,NA,25.8144,-81.0821,25.8167,-81.0824,WGS84,314,Cell #AE50,"17N 2855128 E, 491772 N",UTM,WGS84,1,0,407,species,A,A,A +Bacopa monnieri,"Water hyssop, Herb-of-grace",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,bacomonn,Human Observation,2003-09-10,BICY,729,NA,26.2428,-80.9525,26.243,-80.9549,WGS84,314,Cell #AR03,"17N 2902579 E, 504740 N",UTM,WGS84,1,275,729,species,A,A,A +Vittaria lineata,Shoestring fern,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,vittline,Human Observation,2002-08-01,BICY,192,NA,26.1696,-81.2652,26.1718,-81.2654,WGS84,314,Cell #M11,"17N 2894488 E, 473501 N",UTM,WGS84,1,355,192,species,A,A,A +Conoclinium coelestinum,Blue mistflower,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,conocoel,Human Observation,2003-04-10,BICY,669,NA,26.0691,-81.1605,26.0687,-81.1629,WGS84,314,Cell #W22,"17N 2883351 E, 483950 N",UTM,WGS84,1,265,669,species,A,A,A +Panicum hemitomon,Maidencane,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,panihemi,Human Observation,2004-04-28,BICY,407,NA,25.8144,-81.0821,25.8167,-81.0824,WGS84,314,Cell #AE50,"17N 2855128 E, 491772 N",UTM,WGS84,1,0,407,species,A,A,A +Rhynchospora tracyi,Tracy's beaksedge,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,rhyntrac,Human Observation,2003-06-18,BICY,699,NA,26.0257,-81.2201,26.0263,-81.2225,WGS84,314,Cell #Q27,"17N 2878553 E, 477980 N",UTM,WGS84,1,290,699,species,A,A,A +Eugenia axillaris,White stopper,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,eugeaxil,Human Observation,2003-11-26,BICY,476,NA,25.8062,-80.8845,25.804,-80.8852,WGS84,314,Cell #AY51,"17N 2854223 E, 511582 N",UTM,WGS84,1,210,476,species,A,A,A +Vitis cinerea var. floridana,Florida grape,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,viticineflor,Human Observation,2003-02-26,BICY,591,NA,26.045,-81.1655,26.0462,-81.1634,WGS84,314,Cell #W25,"17N 2880675 E, 483442 N",UTM,WGS84,1,75,591,species,A,A,A +Sabatia stellaris,Rose-of-Plymouth,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,sabastel,Human Observation,2004-05-12,BICY,363,NA,25.9823,-80.9107,25.982,-80.9132,WGS84,314,Cell #AV32,"17N 2873723 E, 508938 N",UTM,WGS84,1,270,363,species,A,A,A +Cladium jamaicense,"Saw-grass, Jamaica swamp sawgrass",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,cladjama,Human Observation,2002-09-17,BICY,222,NA,25.6988,-80.9736,25.6966,-80.974,WGS84,314,Cell #AP63,"17N 2842329 E, 502644 N",UTM,WGS84,1,200,222,species,A,A,A +Sorghastrum secundum,Lopsided Indian grass,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,sorgsecu,Human Observation,2004-03-17,BICY,376,NA,26.1818,-81.343,26.1797,-81.3438,WGS84,314,Cell #E10,"17N 2895858 E, 465728 N",UTM,WGS84,1,220,376,species,A,A,A +Tillandsia fasciculata var. densispica,"Stiff-leaved wild-pine, Cardinal airplant",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,tillfascdens,Human Observation,2002-05-31,BICY,203,NA,26.2044,-81.066,26.2044,-81.066,WGS84,314,Cell #AG07 (was mislabeled as AD31),"17N 2898326 E, 493407 N",UTM,WGS84,1,50,203,species,A,A,A +Nymphaea odorata,American white waterlily,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,nympodor,Human Observation,2003-06-18,BICY,697,NA,26.047,-81.1762,26.0447,-81.1762,WGS84,314,Cell #V25,"17N 2880903 E, 482375 N",UTM,WGS84,1,190,697,species,A,A,A +Pteris bahamensis,Bahama ladder brake,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,pterbaha,Human Observation,2004-06-03,BICY,353,NA,26.0243,-81.0653,26.0246,-81.0678,WGS84,314,Cell #AG27,"17N 2878374 E, 493467 N",UTM,WGS84,1,295,353,species,A,A,A +Smilax auriculata,Earleaf greenbrier,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,smilauri,Human Observation,2003-03-05,BICY,565,NA,26.0211,-81.1145,26.0233,-81.1148,WGS84,314,Cell #AB27,"17N 2878023 E, 488541 N",UTM,WGS84,1,0,565,species,A,A,A +Stillingia aquatica,"Corkwood, Water toothleaf",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,stilaqua,Human Observation,2004-05-12,BICY,361,NA,25.9514,-80.9266,25.9534,-80.9257,WGS84,314,Cell #AU35,"17N 2870304 E, 507352 N",UTM,WGS84,1,300,361,species,A,A,A +Panicum tenerum,Bluejoint panicum,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,panitene,Human Observation,2002-09-18,BICY,225,NA,25.7079,-81.0433,25.7099,-81.0433,WGS84,314,Cell #AI62,"17N 2843334 E, 495652 N",UTM,WGS84,1,5,225,species,A,A,A +Quercus virginiana,Virginia live oak,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,quervirg,Human Observation,2002-07-11,BICY,159,NA,26.0975,-81.2848,26.0982,-81.2872,WGS84,314,Cell #K19,"17N 2886508 E, 471520 N",UTM,WGS84,1,295,159,species,A,A,A +Mitreola petiolata,"Miterwort, Lax hornpod",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,mitrpeti,Human Observation,2002-04-09,BICY,172,NA,26.1945,-81.2321,26.1962,-81.2305,WGS84,314,Cell #3950/P08,"17N 2897240 E, 476808 N",UTM,WGS84,1,40,172,species,A,A,A +Tillandsia setacea,"Thin-leaved wild-pine, Southern needleleaf",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,tillseta,Human Observation,2003-03-19,BICY,624,NA,25.9787,-81.2113,25.9764,-81.2118,WGS84,314,Cell #R42,"17N 2873345 E, 478851 N",UTM,WGS84,1,195,624,species,A,A,A +Ludwigia repens,Creeping primrosewillow,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,ludwrepe,Human Observation,2003-02-25,BICY,448,NA,25.9949,-81.2017,25.9955,-81.1994,WGS84,314,Cell #S30,"17N 2875138 E, 479809 N",UTM,WGS84,1,75,448,species,A,A,A +Blechnum serrulatum,"Swamp fern, Toothed midsorus fern",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,blecserr,Human Observation,2003-03-05,BICY,567,NA,25.9827,-81.1215,25.9819,-81.1236,WGS84,314,Cell #AA32,"17N 2873774 E, 487840 N",UTM,WGS84,1,250,567,species,A,A,A +Fraxinus caroliniana,"Water ash, Carolina ash, Pop ash",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,fraxcaro,Human Observation,2004-06-17,BICY,333,NA,25.8815,-81.1742,25.8816,-81.1766,WGS84,314,Cell #V43,"17N 2862570 E, 482551 N",UTM,WGS84,1,260,333,species,A,A,A +Muhlenbergia capillaris,"Muhlygrass, Hairawnmuhly",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,muhlcapi,Human Observation,2003-03-07,BICY,558,NA,25.7369,-80.9716,25.7351,-80.973,WGS84,314,Cell #AP59,"17N 2846549 E, 502853 N",UTM,WGS84,1,220,558,species,A,A,A +Hyptis alata,"Musky mint, Clustered bushmint",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,hyptalat,Human Observation,2003-04-10,BICY,666,NA,26.1004,-81.1641,26.0983,-81.1641,WGS84,314,Cell #W19,"17N 2886815 E, 483592 N",UTM,WGS84,1,190,666,species,A,A,A +Iva microcephala,Piedmont marshelder,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,ivamicr,Human Observation,2004-04-14,BICY,421,NA,26.2176,-81.0845,26.219,-81.0864,WGS84,314,Cell #AE06,"17N 2899785 E, 491558 N",UTM,WGS84,1,310,421,species,A,A,A +Eriocaulon compressum,Flattened pipewort,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,eriocomp,Human Observation,2003-02-20,BICY,495,NA,25.9569,-80.947,25.9559,-80.9449,WGS84,314,Cell #AS35,"17N 2870917 E, 505304 N",UTM,WGS84,1,125,495,species,A,A,A +Taxodium ascendens,Pond cypress,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,taxoasce,Human Observation,2003-02-11,BICY,483,NA,25.9591,-81.0174,25.9591,-81.0199,WGS84,314,Cell #AL34,"17N 2871156 E, 498259 N",UTM,WGS84,1,270,483,species,A,A,A +Evolvulus sericeus,Silver dwarf morningglory,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,evolseri,Human Observation,2004-03-11,BICY,396,NA,25.7899,-80.9758,25.7919,-80.9773,WGS84,314,Cell #AP53,"17N 2852419 E, 502423 N",UTM,WGS84,1,325,396,species,A,A,A +Coelorachis rugosa,Wrinkled jointtail grass,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,coelrugo,Human Observation,2003-03-18,BICY,617,NA,25.9166,-81.1158,25.9143,-81.1156,WGS84,314,Cell #AB39,"17N 2866448 E, 488404 N",UTM,WGS84,1,185,617,species,A,A,A +Hyptis alata,"Musky mint, Clustered bushmint",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,hyptalat,Human Observation,2003-02-25,BICY,582,NA,26.0014,-81.2179,26.0001,-81.2159,WGS84,314,Cell #R40,"17N 2875853 E, 478198 N",UTM,WGS84,1,130,582,species,A,A,A +Scleria georgiana,Slenderfruit nutrush,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,sclegeor,Human Observation,2003-02-19,BICY,597,NA,26.0084,-81.2316,26.0087,-81.2339,WGS84,314,Cell #P29,"17N 2876637 E, 476826 N",UTM,WGS84,1,280,597,species,A,A,A +Andropogon glomeratus var. pumilus,Common bushy bluestem,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,andrglompumi,Human Observation,2002-11-05,BICY,272,NA,25.9062,-81.22,25.9078,-81.2214,WGS84,314,Cell #Q40,"17N 2865313 E, 477963 N",UTM,WGS84,1,325,272,species,A,A,A +Rhus copallinum,Winged sumac,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,rhuscopa,Human Observation,2003-07-09,BICY,725,NA,26.2036,-81.2441,26.2056,-81.2452,WGS84,314,Cell #O07,"17N 2898250 E, 475610 N",UTM,WGS84,1,340,725,species,A,A,A +Rhynchospora microcarpa,Southern beaksedge,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,rhynmicr2,Human Observation,2004-05-12,BICY,360,NA,25.9514,-80.9266,25.9531,-80.928,WGS84,314,Cell #AU35,"17N 2870304 E, 507352 N",UTM,WGS84,1,330,360,species,A,A,A +Ludwigia repens,Creeping primrosewillow,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,ludwrepe,Human Observation,2004-05-20,BICY,392,NA,26.2529,-80.8936,26.2547,-80.895,WGS84,314,Cell #AX02,"17N 2903700 E, 510627 N",UTM,WGS84,1,330,392,species,A,A,A +Ludwigia repens,Creeping primrosewillow,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,ludwrepe,Human Observation,2003-03-07,BICY,556,NA,25.7601,-80.8737,25.7623,-80.8742,WGS84,314,Cell #AZ56,"17N 2849121 E, 512666 N",UTM,WGS84,1,355,556,species,A,A,A +Smilax laurifolia,"Catbrier, Laurel greenbrier, Bamboo vine",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,smillaur,Human Observation,2003-02-11,BICY,482,NA,25.963,-81.0302,25.9653,-81.0305,WGS84,314,Cell #AJ34,"17N 2871588 E, 496977 N",UTM,WGS84,1,0,482,species,A,A,A +Dichanthelium erectifolium,Erectleaf witchgrass,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,dicherec,Human Observation,2003-06-18,BICY,698,NA,26.0257,-81.2201,26.0279,-81.2208,WGS84,314,Cell #Q27,"17N 2878553 E, 477980 N",UTM,WGS84,1,345,698,species,A,A,A +Bacopa caroliniana,"Lemon hyssop, Lemon bacopa, Blue waterhyssop",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,bacocaro,Human Observation,2002-12-20,BICY,463,NA,26.0673,-81.3019,26.0671,-81.3042,WGS84,314,Cell #I22,"17N 2883173 E, 469804 N",UTM,WGS84,1,270,463,species,A,A,A +Vitis cinerea var. floridana,Florida grape,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,viticineflor,Human Observation,2003-06-19,BICY,741,NA,25.8843,-80.8461,25.8826,-80.8465,WGS84,314,Cell #BC43,"17N 2862884 E, 515418 N",UTM,WGS84,1,180,741,species,A,A,A +Rhynchospora inundata,Narrowfruit horned beaksedge,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,rhyninun,Human Observation,2003-05-02,BICY,510,NA,26.0974,-81.32,26.0996,-81.3195,WGS84,314,Cell #H19,"17N 2886505 E, 468000 N",UTM,WGS84,1,20,510,species,A,A,A +Asclepias tuberosa,"Butterflyweed, Butterfly milkweed",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,ascltube,Human Observation,2002-05-29,BICY,206,NA,26.1989,-81.2169,26.197,-81.2161,WGS84,314,Cell #R08,"17N 2897730 E, 478329 N",UTM,WGS84,1,170,206,species,A,A,A +Pteridium aquilinum var. caudatum,Lacy braken fern,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,pteraquicaud,Human Observation,2003-02-13,BICY,477,NA,25.9287,-81.0161,25.9266,-81.0156,WGS84,314,Cell #AL38,"17N 2867787 E, 498386 N",UTM,WGS84,1,170,477,species,A,A,A +Psychotria nervosa,Shiny-leaved wild-coffee,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,psycnerv,Human Observation,2003-05-29,BICY,539,NA,25.7563,-80.9028,25.7583,-80.9018,WGS84,314,Cell #AW57,"17N 2848699 E, 509752 N",UTM,WGS84,1,35,539,species,A,A,A +Tillandsia utriculata,"Giant wild-pine, Giant airplant",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,tillutri,Human Observation,2003-09-11,BICY,722,NA,25.7538,-80.9274,25.7554,-80.9255,WGS84,314,Cell #AU57,"17N 2848426 E, 507282 N",UTM,WGS84,1,55,722,species,A,A,A +Fuirena breviseta,Saltmarsh umbrellasedge,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,fuirbrev,Human Observation,2002-09-18,BICY,233,NA,25.7252,-81.0306,25.7256,-81.033,WGS84,314,Cell #AJ60,"17N 2845250 E, 496927 N",UTM,WGS84,1,290,233,species,A,A,A +Dichanthelium erectifolium,Erectleaf witchgrass,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,dicherec,Human Observation,2002-05-07,BICY,130,NA,25.8803,-81.2219,25.881,-81.2243,WGS84,314,"Cell #Q43, East of Burns Lake Rd. Q43","17N 2862448 E, 477773 N",UTM,WGS84,1,290,130,species,A,A,A +Tillandsia usneoides,Spanish-moss,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,tillusne,Human Observation,2002-05-21,BICY,215,NA,26.2303,-80.9066,26.2305,-80.9043,WGS84,314,Cell #AW04,"17N 2901187 E, 509327 N",UTM,WGS84,1,90,215,species,A,A,A +Taxodium ascendens,Pond cypress,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,taxoasce,Human Observation,2002-04-24,BICY,179,NA,25.8574,-81.0728,25.8572,-81.0752,WGS84,314,Cell #AF46/1800,"17N 2859896 E, 492708 N",UTM,WGS84,1,270,179,species,A,A,A +Eriocaulon compressum,Flattened pipewort,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,eriocomp,Human Observation,2003-07-17,BICY,712,NA,26.0832,-80.9373,26.0812,-80.9367,WGS84,314,Cell #AT21,"17N 2884902 E, 506270 N",UTM,WGS84,1,170,712,species,A,A,A +Tillandsia balbisiana,"Reflexed wild-pine, Northern needleleaf",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,tillbalb,Human Observation,2002-08-07,BICY,259,NA,26.1609,-81.2653,26.163,-81.2655,WGS84,314,Cell #M12,"17N 2893533 E, 473488 N",UTM,WGS84,1,0,259,species,A,A,A +Tillandsia flexuosa,"Banded wild-pine, Twisted airplant",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,tillflex,Human Observation,2003-03-26,BICY,693,NA,25.6592,-81.0263,25.6585,-81.024,WGS84,314,Cell #AK68,"17N 2837939 E, 497357 N",UTM,WGS84,1,110,693,species,A,A,A +Tillandsia fasciculata var. densispica,"Stiff-leaved wild-pine, Cardinal airplant",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,tillfascdens,Human Observation,2003-03-04,BICY,560,NA,26.0296,-81.0943,26.0296,-81.0918,WGS84,314,Cell #AD27,"17N 2878960 E, 490566 N",UTM,WGS84,1,90,560,species,A,A,A +Rapanea punctata,"Myrsine, Colicwood",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,rapapunc,Human Observation,2002-07-11,BICY,155,NA,26.1057,-81.284,26.1035,-81.2833,WGS84,314,Cell #K18,"17N 2887417 E, 471604 N",UTM,WGS84,1,170,155,species,A,A,A +Blechnum serrulatum,"Swamp fern, Toothed midsorus fern",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,blecserr,Human Observation,2003-02-26,BICY,590,NA,26.045,-81.1655,26.0428,-81.1655,WGS84,314,Cell #W25,"17N 2880675 E, 483442 N",UTM,WGS84,1,190,590,species,A,A,A +Bacopa monnieri,"Water hyssop, Herb-of-grace",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,bacomonn,Human Observation,2004-05-13,BICY,431,NA,25.9072,-81.2737,25.9078,-81.2714,WGS84,314,Cell #L40,"17N 2865437 E, 472583 N",UTM,WGS84,1,75,431,species,A,A,A +Elytraria caroliniensis var. angustifolia,Narrowleaf Carolina scalystem,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,elytcaroangu,Human Observation,2003-02-28,BICY,579,NA,25.7753,-80.9975,25.773,-80.9977,WGS84,314,Cell #AN55,"17N 2850797 E, 500253 N",UTM,WGS84,1,190,579,species,A,A,A +Mikania scandens,"Climbing hempweed, Climbing hempvine",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,mikascan,Human Observation,2004-06-16,BICY,335,NA,26.2329,-81.0986,26.2331,-81.0962,WGS84,314,Cell #AD04,"17N 2901479 E, 490153 N",UTM,WGS84,1,90,335,species,A,A,A +Myrica cerifera,"Wax myrtle, Southern Bayberry",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,myriceri,Human Observation,2003-04-08,BICY,674,NA,26.0673,-81.1525,26.0695,-81.1521,WGS84,314,"Cell #X22, endpoint corrected using arcmap","17N 2883144 E, 484751 N",UTM,WGS84,1,15,674,species,A,A,A +Cyperus retrorsus,Pinebarren flatsedge,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,cyperetr,Human Observation,2003-09-11,BICY,731,NA,25.7535,-80.9303,25.7514,-80.9309,WGS84,314,Cell #AT57 (originally labeled as #AT54),"17N 2848388 E, 506985 N",UTM,WGS84,1,195,731,species,A,A,A +Persea palustris,Swamp bay,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,perspalu,Human Observation,2003-02-26,BICY,590,NA,26.045,-81.1655,26.0428,-81.1655,WGS84,314,Cell #W25,"17N 2880675 E, 483442 N",UTM,WGS84,1,190,590,species,A,A,A +Nephrolepis biserrata,Giant sword fern,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,nephbise,Human Observation,2003-05-23,BICY,531,NA,25.8048,-80.9224,25.8046,-80.9249,WGS84,314,Cell #AU51,"17N 2854064 E, 507777 N",UTM,WGS84,1,270,531,species,A,A,A +Rhynchospora inundata,Narrowfruit horned beaksedge,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,rhyninun,Human Observation,2002-07-10,BICY,151,NA,26.0769,-81.3107,26.0763,-81.3134,WGS84,314,Cell #H21,"17N 2884234 E, 468923 N",UTM,WGS84,1,265,151,species,A,A,A +Toxicodendron radicans,Eastern poison-ivy,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,toxiradi,Human Observation,2004-05-13,BICY,430,NA,25.9072,-81.2737,25.9054,-81.2743,WGS84,314,Cell #L40,"17N 2865437 E, 472583 N",UTM,WGS84,1,220,430,species,A,A,A +Schinus terebinthifolius,Brazilian-pepper,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,schitere,Human Observation,2003-03-14,BICY,552,NA,26.2265,-81.2674,26.2243,-81.2672,WGS84,314,Cell #M05,"17N 2900793 E, 473289 N",UTM,WGS84,1,180,552,species,A,A,A +Diodia virginiana,"Buttonweed, Virginia buttonweed",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,diodvirg,Human Observation,2003-03-20,BICY,636,NA,25.96,-81.1883,25.958,-81.1872,WGS84,314,Cell #U34,"17N 2871268 E, 481145 N",UTM,WGS84,1,16,636,species,A,A,A +Salix caroliniana,Coastal Plain willow,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,salicaro,Human Observation,2003-02-11,BICY,482,NA,25.963,-81.0302,25.9653,-81.0305,WGS84,314,Cell #AJ34,"17N 2871588 E, 496977 N",UTM,WGS84,1,0,482,species,A,A,A +Rhynchospora microcarpa,Southern beaksedge,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,rhynmicr2,Human Observation,2002-08-21,BICY,241,NA,25.9999,-80.9093,25.9979,-80.9085,WGS84,314,Cell #AW30,"17N 2875680 E, 509076 N",UTM,WGS84,1,165,241,species,A,A,A +Schoenus nigricans,"Black sedge, Black bogrush",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,schonigr,Human Observation,2002-08-22,BICY,243,NA,25.9059,-81.2415,25.9077,-81.243,WGS84,314,Cell #O40,"17N 2865287 E, 475811 N",UTM,WGS84,1,335,243,species,A,A,A +Saccharum giganteum,Sugarcane plumegrass,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,saccgiga,Human Observation,2002-10-29,BICY,290,NA,26.1255,-81.2857,26.1276,-81.2851,WGS84,314,Cell #K16,"17N 2889619 E, 471434 N",UTM,WGS84,1,25,290,species,A,A,A +Nephrolepis biserrata,Giant sword fern,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,nephbise,Human Observation,2003-05-22,BICY,535,NA,25.8002,-81.1769,25.8013,-81.1751,WGS84,314,Cell #V52,"17N 2853574 E, 482264 N",UTM,WGS84,1,60,535,species,A,A,A +Tillandsia setacea,"Thin-leaved wild-pine, Southern needleleaf",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,tillseta,Human Observation,2003-02-05,BICY,465,NA,26.1795,-80.9152,26.1798,-80.9177,WGS84,314,Cell #AV10,"17N 2895561 E, 508470 N",UTM,WGS84,1,280,465,species,A,A,A +Dichanthelium erectifolium,Erectleaf witchgrass,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,dicherec,Human Observation,2003-05-23,BICY,528,NA,25.801,-80.934,25.7989,-80.9342,WGS84,314,Cell #AT52,"17N 2853648 E, 506615 N",UTM,WGS84,1,185,528,species,A,A,A +Utricularia subulata,Zigzag bladderwort,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,utrisubu,Human Observation,2002-09-18,BICY,232,NA,25.7252,-81.0306,25.723,-81.0311,WGS84,314,Cell #AJ60,"17N 2845250 E, 496927 N",UTM,WGS84,1,195,232,species,A,A,A +Hyptis alata,"Musky mint, Clustered bushmint",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,hyptalat,Human Observation,2002-09-18,BICY,233,NA,25.7252,-81.0306,25.7256,-81.033,WGS84,314,Cell #AJ60,"17N 2845250 E, 496927 N",UTM,WGS84,1,290,233,species,A,A,A +Pontederia cordata,Pickerelweed,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,pontcord,Human Observation,2004-05-18,BICY,365,NA,26.2236,-81.0959,26.2228,-81.0936,WGS84,314,Cell #AD05,"17N 2900452 E, 490421 N",UTM,WGS84,1,130,365,species,A,A,A +Eryngium yuccifolium,"Button snakeroot, Button rattlenakemaster",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,erynyucc,Human Observation,2003-03-06,BICY,572,NA,25.9962,-81.129,25.9944,-81.1277,WGS84,314,Cell #AA30,"17N 2875269 E, 487086 N",UTM,WGS84,1,15,572,species,A,A,A +Spermacoce terminalis,Everglades Keys false buttonweed,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,sperterm,Human Observation,2002-08-23,BICY,247,NA,25.8536,-81.2248,25.8527,-81.2226,WGS84,314,Cell #Q46,"17N 2859495 E, 477474 N",UTM,WGS84,1,120,247,species,A,A,A +Hyptis alata,"Musky mint, Clustered bushmint",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,hyptalat,Human Observation,2003-04-23,BICY,657,NA,25.7195,-81.1053,25.7217,-81.1056,WGS84,314,Cell #AC61,"17N 2844622 E, 489441 N",UTM,WGS84,1,0,657,species,A,A,A +Mikania scandens,"Climbing hempweed, Climbing hempvine",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,mikascan,Human Observation,2003-02-06,BICY,456,NA,25.9529,-81.3444,25.9545,-81.3457,WGS84,314,Cell #E35,"17N 2870515 E, 465524 N",UTM,WGS84,1,325,456,species,A,A,A +Fuirena scirpoidea,Southern umbrellasedge,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,fuirscir,Human Observation,2002-08-27,BICY,231,NA,26.043,-80.9091,26.0448,-80.9074,WGS84,314,Cell #AW25,"17N 2880453 E, 509098 N",UTM,WGS84,1,45,231,species,A,A,A +Cornus foemina,"Stiff cornel, Swamp dogwood, Stiff dogwood",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,cornfoem,Human Observation,2002-08-01,BICY,193,NA,26.1696,-81.2652,26.1674,-81.2645,WGS84,314,Cell #M11,"17N 2894488 E, 473501 N",UTM,WGS84,1,170,193,species,A,A,A +Rhynchospora divergens,Spreading beaksedge,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,rhyndive,Human Observation,2003-03-28,BICY,627,NA,25.9163,-81.0604,25.9164,-81.0628,WGS84,314,Cell #AG39,"17N 2866413 E, 493955 N",UTM,WGS84,1,280,627,species,A,A,A +Setaria parviflora,"Knotroot foxtail, Yellow bristlegrass",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,setaparv,Human Observation,2002-11-05,BICY,272,NA,25.9062,-81.22,25.9078,-81.2214,WGS84,314,Cell #Q40,"17N 2865313 E, 477963 N",UTM,WGS84,1,325,272,species,A,A,A +Sarcostemma clausum,"Whitevine, White twinevine",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,sarcclau,Human Observation,2003-02-13,BICY,477,NA,25.9287,-81.0161,25.9266,-81.0156,WGS84,314,Cell #AL38,"17N 2867787 E, 498386 N",UTM,WGS84,1,170,477,species,A,A,A +Panicum virgatum,Switchgrass,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,panivirg,Human Observation,2003-03-06,BICY,572,NA,25.9962,-81.129,25.9944,-81.1277,WGS84,314,Cell #AA30,"17N 2875269 E, 487086 N",UTM,WGS84,1,15,572,species,A,A,A +Rapanea punctata,"Myrsine, Colicwood",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,rapapunc,Human Observation,2002-08-08,BICY,256,NA,26.1826,-80.8868,26.1805,-80.8866,WGS84,314,Cell #AY10,"17N 2895910 E, 511309 N",UTM,WGS84,1,180,256,species,A,A,A +Pluchea rosea,Rosy camphorweed,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,plucrose,Human Observation,2003-04-23,BICY,657,NA,25.7195,-81.1053,25.7217,-81.1056,WGS84,314,Cell #AC61,"17N 2844622 E, 489441 N",UTM,WGS84,1,0,657,species,A,A,A +Myrica cerifera,"Wax myrtle, Southern Bayberry",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,myriceri,Human Observation,2004-06-24,BICY,324,NA,26.2511,-81.0829,26.2508,-81.0807,WGS84,314,Cell #AE02,"17N 2903496 E, 491719 N",UTM,WGS84,1,90,324,species,A,A,A +Xyris difformis var. floridana,Florida yelloweyed grass,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,xyridiffflor,Human Observation,2003-03-04,BICY,560,NA,26.0296,-81.0943,26.0296,-81.0918,WGS84,314,Cell #AD27,"17N 2878960 E, 490566 N",UTM,WGS84,1,90,560,species,A,A,A +Annona glabra,Pond-apple,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,annoglab,Human Observation,2003-04-09,BICY,673,NA,26.0927,-81.1845,26.0912,-81.1826,WGS84,314,Cell #U20,"17N 2885963 E, 481555 N",UTM,WGS84,1,135,673,species,A,A,A +Diodia virginiana,"Buttonweed, Virginia buttonweed",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,diodvirg,Human Observation,2004-05-05,BICY,330,NA,26.2506,-81.0295,26.2484,-81.0298,WGS84,314,Cell #AK02,"17N 2903435 E, 497051 N",UTM,WGS84,1,185,330,species,A,A,A +Centella asiatica,"Coinwort, Spadeleaf",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,centasia,Human Observation,2004-05-18,BICY,367,NA,26.2061,-81.0978,26.2038,-81.0981,WGS84,314,Cell #AD07,"17N 2898512 E, 490230 N",UTM,WGS84,1,190,367,species,A,A,A +Psychotria sulzneri,Shortleaf wild coffee,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,psycsulz,Human Observation,2004-03-03,BICY,384,NA,26.1907,-81.3054,26.1888,-81.3065,WGS84,314,Cell #I09,"17N 2896843 E, 469487 N",UTM,WGS84,1,210,384,species,A,A,A +Eryngium yuccifolium,"Button snakeroot, Button rattlenakemaster",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,erynyucc,Human Observation,2002-07-18,BICY,165,NA,25.9962,-81.081,25.9955,-81.0835,WGS84,314,Cell #AE30,"17N 2875262 E, 491889 N",UTM,WGS84,1,260,165,species,A,A,A +Aster carolinianus,Climbing aster,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,astecaro,Human Observation,2003-03-19,BICY,624,NA,25.9787,-81.2113,25.9764,-81.2118,WGS84,314,Cell #R42,"17N 2873345 E, 478851 N",UTM,WGS84,1,195,624,species,A,A,A +Panicum virgatum,Switchgrass,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,panivirg,Human Observation,2003-05-15,BICY,643,NA,25.9071,-81.3325,25.9056,-81.3342,WGS84,314,Cell #F40,"17N 2865443 E, 466694 N",UTM,WGS84,1,230,643,species,A,A,A +Juncus polycephalos,Manyhead rush,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,juncpoly,Human Observation,2004-04-28,BICY,407,NA,25.8144,-81.0821,25.8167,-81.0824,WGS84,314,Cell #AE50,"17N 2855128 E, 491772 N",UTM,WGS84,1,0,407,species,A,A,A +Pterocaulon pycnostachyum,Blackroot,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,pterpycn,Human Observation,2004-06-24,BICY,322,NA,26.2493,-81.0753,26.2472,-81.0743,WGS84,314,Cell #AF02,"17N 2903294 E, 492483 N",UTM,WGS84,1,20,322,species,A,A,A +Crinum americanum,"Swamp-lily, Seven-sisters, String-lily",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,crinamer,Human Observation,2004-04-29,BICY,418,NA,25.8155,-81.0426,25.8146,-81.0412,WGS84,314,Cell #AI50,"17N 2855253 E, 495730 N",UTM,WGS84,1,270,418,species,A,A,A +Ficus citrifolia,"Short-leaf fig, Wild banyan tree",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,ficucitr,Human Observation,2003-03-11,BICY,639,NA,26.0663,-81.036,26.0683,-81.0369,WGS84,314,Cell #AJ22,"17N 2883026 E, 496401 N",UTM,WGS84,1,340,639,species,A,A,A +Polygala grandiflora,"Candyweed, Showy milkwort",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,polygran,Human Observation,2003-02-20,BICY,600,NA,26.0039,-81.1881,26.0052,-81.1863,WGS84,314,"Cell #U29, endpoint estimated using arcmap","17N 2876124 E, 481171 N",UTM,WGS84,1,50,600,species,A,A,A +Andropogon virginicus var. glaucus,Chalky bluestem,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,andrvirgglau,Human Observation,2004-03-30,BICY,388,NA,26.1428,-80.8861,26.1411,-80.8845,WGS84,314,Cell #AY14,"17N 2891503 E, 511389 N",UTM,WGS84,1,145,388,species,A,A,A +Eriocaulon compressum,Flattened pipewort,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,eriocomp,Human Observation,2002-06-05,BICY,265,NA,26.0206,-81.1546,26.0204,-81.1545,WGS84,314,Cell #X28,"17N 2877975 E, 484532 N",UTM,WGS84,1,210,265,species,A,A,A +Cassytha filiformis,"Lovevine, Devil's gut",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,cassfili,Human Observation,2002-07-11,BICY,159,NA,26.0975,-81.2848,26.0982,-81.2872,WGS84,314,Cell #K19,"17N 2886508 E, 471520 N",UTM,WGS84,1,295,159,species,A,A,A +Toxicodendron radicans,Eastern poison-ivy,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,toxiradi,Human Observation,2004-06-02,BICY,354,NA,26.007,-81.0699,26.0067,-81.0674,WGS84,314,Cell #AG29,"17N 2876456 E, 493009 N",UTM,WGS84,1,100,354,species,A,A,A +Agalinis linifolia,Flaxleaf false foxglove,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,agallini,Human Observation,2003-03-26,BICY,693,NA,25.6592,-81.0263,25.6585,-81.024,WGS84,314,Cell #AK68,"17N 2837939 E, 497357 N",UTM,WGS84,1,110,693,species,A,A,A +Panicum hians,Gaping panicum,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,panihian,Human Observation,2003-09-11,BICY,723,NA,25.7538,-80.9274,25.7537,-80.9295,WGS84,314,Cell #AU57,"17N 2848426 E, 507282 N",UTM,WGS84,1,270,723,species,A,A,A +Leersia hexandra,Southern cutgrass,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,leerhexa,Human Observation,2002-08-27,BICY,231,NA,26.043,-80.9091,26.0448,-80.9074,WGS84,314,Cell #AW25,"17N 2880453 E, 509098 N",UTM,WGS84,1,45,231,species,A,A,A +Eriocaulon ravenelii,Ravenel's pipewort,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,eriorave,Human Observation,2002-11-08,BICY,270,NA,25.7556,-81.003,25.7566,-81.0018,WGS84,314,"Cell #AM57, origin estimated with ARCMap","17N 2848614 E, 499702 N",UTM,WGS84,1,80,270,species,A,A,A +Pluchea rosea,Rosy camphorweed,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,plucrose,Human Observation,2002-06-04,BICY,200,NA,25.9853,-81.0968,25.9865,-81.0948,WGS84,314,Cell #AD31,"17N 2874060 E, 490313 N",UTM,WGS84,1,60,200,species,A,A,A +Andropogon glomeratus var. pumilus,Common bushy bluestem,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,andrglompumi,Human Observation,2004-03-17,BICY,376,NA,26.1818,-81.343,26.1797,-81.3438,WGS84,314,Cell #E10,"17N 2895858 E, 465728 N",UTM,WGS84,1,220,376,species,A,A,A +Ludwigia microcarpa,Smallfruit primrosewillow,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,ludwmicr,Human Observation,2003-06-13,BICY,505,NA,26.2456,-81.1057,26.2441,-81.1071,WGS84,314,Cell #AC03,"17N 2902890 E, 489446 N",UTM,WGS84,1,220,505,species,A,A,A +Panicum tenerum,Bluejoint panicum,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,panitene,Human Observation,2004-05-13,BICY,428,NA,25.8978,-81.2753,25.8964,-81.2736,WGS84,314,Cell #L41,"17N 2864400 E, 472424 N",UTM,WGS84,1,130,428,species,A,A,A +Bidens alba var. radiata,Spanish-needles,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,bidealbaradi,Human Observation,2003-05-02,BICY,655,NA,26.2526,-81.1916,26.252,-81.1939,WGS84,314,Cell #T02,"17N 2903667 E, 480866 N",UTM,WGS84,1,260,655,species,A,A,A +Schinus terebinthifolius,Brazilian-pepper,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,schitere,Human Observation,2004-04-02,BICY,395,NA,26.2527,-80.9439,26.2531,-80.9415,WGS84,314,Cell #AS02,"17N 2903676 E, 505602 N",UTM,WGS84,1,80,395,species,A,A,A +Eryngium yuccifolium,"Button snakeroot, Button rattlenakemaster",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,erynyucc,Human Observation,2004-04-07,BICY,432,NA,26.25,-81.2548,26.2478,-81.2547,WGS84,314,Cell #N02,"17N 2903396 E, 474557 N",UTM,WGS84,1,180,432,species,A,A,A +Cornus foemina,"Stiff cornel, Swamp dogwood, Stiff dogwood",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,cornfoem,Human Observation,2004-03-17,BICY,376,NA,26.1818,-81.343,26.1797,-81.3438,WGS84,314,Cell #E10,"17N 2895858 E, 465728 N",UTM,WGS84,1,220,376,species,A,A,A +Spermacoce terminalis,Everglades Keys false buttonweed,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,sperterm,Human Observation,2003-02-20,BICY,598,NA,25.9997,-81.1907,26.0008,-81.1928,WGS84,314,Cell #T30,"17N 2875659 E, 480919 N",UTM,WGS84,1,310,598,species,A,A,A +Taxodium ascendens,Pond cypress,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,taxoasce,Human Observation,2004-03-24,BICY,371,NA,25.9769,-81.3355,25.9771,-81.333,WGS84,314,Cell #F32,"17N 2873174 E, 466418 N",UTM,WGS84,1,90,371,species,A,A,A +Dalea carnea,Whitetassels,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,dalecarncarn,Human Observation,2003-02-20,BICY,601,NA,26.0039,-81.1881,26.0061,-81.1882,WGS84,314,Cell #U29,"17N 2876124 E, 481171 N",UTM,WGS84,1,5,601,species,A,A,A +Juncus polycephalos,Manyhead rush,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,juncpoly,Human Observation,2003-02-27,BICY,576,NA,25.9345,-80.9503,25.9345,-80.9527,WGS84,314,Cell #AR37,"17N 2868429 E, 504977 N",UTM,WGS84,1,280,576,species,A,A,A +Rhynchospora microcarpa,Southern beaksedge,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,rhynmicr2,Human Observation,2002-05-08,BICY,135,NA,25.8891,-81.067,25.8905,-81.065,WGS84,314,"Cell #AG42, endpoint estimated using arcmap","17N 2863405 E, 493293 N",UTM,WGS84,1,45,135,species,A,A,A +Campyloneurum phyllitidis,Long strap fern,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,campphyl,Human Observation,2002-07-31,BICY,253,NA,26.0454,-81.3423,26.0451,-81.3397,WGS84,314,Cell #E25,"17N 2880757 E, 465755 N",UTM,WGS84,1,110,253,species,A,A,A +Rhynchospora colorata,Starrush whitetop,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,rhyncolo,Human Observation,2003-04-10,BICY,668,NA,26.0691,-81.1605,26.0712,-81.1612,WGS84,314,Cell #W22,"17N 2883351 E, 483950 N",UTM,WGS84,1,350,668,species,A,A,A +Ficus citrifolia,"Short-leaf fig, Wild banyan tree",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,ficucitr,Human Observation,2004-05-26,BICY,359,NA,25.8254,-81.0222,25.8255,-81.0246,WGS84,314,Cell #AK49,"17N 2856346 E, 497776 N",UTM,WGS84,1,280,359,species,A,A,A +Pteridium aquilinum var. pseudocaudatum,Tailed braken fern,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,pteraquipseu,Human Observation,2002-06-13,BICY,137,NA,26.0401,-81.0673,26.0401,-81.0649,WGS84,314,"Cell #AG25, Middle Pines, near Cal Stone","17N 2880124 E, 493267 N",UTM,WGS84,1,95,137,species,A,A,A +Sarcostemma clausum,"Whitevine, White twinevine",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,sarcclau,Human Observation,2003-04-16,BICY,660,NA,26.2547,-81.0622,26.2528,-81.0628,WGS84,314,Cell #AG02,"17N 2903897 E, 493787 N",UTM,WGS84,1,200,660,species,A,A,A +Saccharum giganteum,Sugarcane plumegrass,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,saccgiga,Human Observation,2003-05-09,BICY,650,NA,25.8993,-81.0752,25.9015,-81.075,WGS84,314,Cell #AF41,"17N 2864531 E, 492472 N",UTM,WGS84,1,10,650,species,A,A,A +Panicum hemitomon,Maidencane,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,panihemi,Human Observation,2004-05-18,BICY,365,NA,26.2236,-81.0959,26.2228,-81.0936,WGS84,314,Cell #AD05,"17N 2900452 E, 490421 N",UTM,WGS84,1,130,365,species,A,A,A +Eugenia axillaris,White stopper,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,eugeaxil,Human Observation,2004-06-17,BICY,336,NA,26.1778,-81.2369,26.1795,-81.2386,WGS84,314,Cell #P10,"17N 2895396 E, 476332 N",UTM,WGS84,1,315,336,species,A,A,A +Pontederia cordata,Pickerelweed,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,pontcord,Human Observation,2004-03-25,BICY,746,NA,26.1979,-81.0858,26.1978,-81.0836,WGS84,314,"Cell #AE08, bearing corrected using arcmap","17N 2897604 E, 491429 N",UTM,WGS84,1,275,746,species,A,A,A +Ilex cassine,"Dahoon holly, Dahoon",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,ilexcass,Human Observation,2003-02-13,BICY,477,NA,25.9287,-81.0161,25.9266,-81.0156,WGS84,314,Cell #AL38,"17N 2867787 E, 498386 N",UTM,WGS84,1,170,477,species,A,A,A +Ipomoea sagittata,Everglades morningglory,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,ipomsagi,Human Observation,2004-03-11,BICY,397,NA,25.7899,-80.9758,25.7898,-80.9782,WGS84,314,Cell #AP53,"17N 2852419 E, 502423 N",UTM,WGS84,1,270,397,species,A,A,A +Panicum tenerum,Bluejoint panicum,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,panitene,Human Observation,2003-03-04,BICY,560,NA,26.0296,-81.0943,26.0296,-81.0918,WGS84,314,Cell #AD27,"17N 2878960 E, 490566 N",UTM,WGS84,1,90,560,species,A,A,A +Rhynchospora odorata,Fragrant beaksedge,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,rhynodor,Human Observation,2004-06-22,BICY,313,NA,26.1627,-81.2799,26.1606,-81.2794,WGS84,314,Cell #L12,"17N 2893733 E, 472025 N",UTM,WGS84,1,180,313,species,A,A,A +Rhynchospora odorata,Fragrant beaksedge,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,rhynodor,Human Observation,2004-06-17,BICY,337,NA,26.1778,-81.2369,26.1803,-81.2368,WGS84,314,Cell #P10,"17N 2895396 E, 476332 N",UTM,WGS84,1,0,337,species,A,A,A +Ficus citrifolia,"Short-leaf fig, Wild banyan tree",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,ficucitr,Human Observation,2004-03-31,BICY,321,NA,26.1331,-81.0631,26.1352,-81.0633,WGS84,314,Cell #AG15,"17N 2890423 E, 493688 N",UTM,WGS84,1,0,321,species,A,A,A +Hyptis alata,"Musky mint, Clustered bushmint",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,hyptalat,Human Observation,2002-10-31,BICY,277,NA,25.8982,-81.257,25.8971,-81.2595,WGS84,314,Cell #N41,"17N 2864436 E, 474256 N",UTM,WGS84,1,240,277,species,A,A,A +Panicum hemitomon,Maidencane,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,panihemi,Human Observation,2003-04-10,BICY,668,NA,26.0691,-81.1605,26.0712,-81.1612,WGS84,314,Cell #W22,"17N 2883351 E, 483950 N",UTM,WGS84,1,350,668,species,A,A,A +Euthamia caroliniana,Slender goldenrod,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,euthcaro,Human Observation,2004-04-08,BICY,441,NA,26.2229,-81.2349,26.2209,-81.236,WGS84,314,Cell #P05,"17N 2900391 E, 476537 N",UTM,WGS84,1,210,441,species,A,A,A +Helenium pinnatifidum,Southeastern sneezeweed,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,helepinn,Human Observation,2004-05-13,BICY,429,NA,25.8978,-81.2753,25.9001,-81.2749,WGS84,314,Cell #L41,"17N 2864400 E, 472424 N",UTM,WGS84,1,10,429,species,A,A,A +Rapanea punctata,"Myrsine, Colicwood",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,rapapunc,Human Observation,2003-02-21,BICY,500,NA,26.0012,-80.9317,25.9991,-80.9313,WGS84,314,Cell #AT30,"17N 2875821 E, 506840 N",UTM,WGS84,1,180,500,species,A,A,A +Pontederia cordata,Pickerelweed,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,pontcord,Human Observation,2002-06-20,BICY,132,NA,25.8641,-81.1359,25.8632,-81.138,WGS84,314,"Cell #Z45, New River Strand S of Tamiami Trail","17N 2860637 E, 486384 N",UTM,WGS84,1,250,132,species,A,A,A +Ipomoea sagittata,Everglades morningglory,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,ipomsagi,Human Observation,2002-10-31,BICY,274,NA,25.9152,-81.2644,25.9163,-81.2664,WGS84,314,Cell #M39,"17N 2866314 E, 473518 N",UTM,WGS84,1,305,274,species,A,A,A +Eupatorium mikanioides,"Semaphore eupatorium, Semaphore thoroughwort",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,eupamika,Human Observation,2002-06-17,BICY,143,NA,25.8434,-81.104,25.8413,-81.1032,WGS84,314,"Cell #AC47, W of Monroe Station, S of Tamiami Trai","17N 2858349 E, 489583 N",UTM,WGS84,1,170,143,species,A,A,A +Mikania cordifolia,Florida Keys hempvine,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,mikacord,Human Observation,2002-05-31,BICY,128,NA,26.2159,-81.0498,26.2181,-81.0498,WGS84,314,"Cell #AIO6, Kissimmee Billy Area","17N 2899596 E, 495029 N",UTM,WGS84,1,0,128,species,A,A,A +Paspalum monostachyum,Gulfdune paspalum,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,paspmono,Human Observation,2004-05-12,BICY,360,NA,25.9514,-80.9266,25.9531,-80.928,WGS84,314,Cell #AU35,"17N 2870304 E, 507352 N",UTM,WGS84,1,330,360,species,A,A,A +Scleria baldwinii,Baldwin's nutrush,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,sclebald,Human Observation,2002-06-12,BICY,138,NA,26.0416,-81.0282,26.0417,-81.0256,WGS84,314,"Cell #AK25, Middle Pines, east of Cal Stone","17N 2880288 E, 497181 N",UTM,WGS84,1,90,138,species,A,A,A +Rapanea punctata,"Myrsine, Colicwood",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,rapapunc,Human Observation,2004-05-06,BICY,340,NA,26.2422,-81.0507,26.2425,-81.0531,WGS84,314,Cell #AH03,"17N 2902502 E, 494939 N",UTM,WGS84,1,280,340,species,A,A,A +Pteridium aquilinum var. pseudocaudatum,Tailed braken fern,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,pteraquipseu,Human Observation,2004-05-05,BICY,328,NA,26.2408,-81.0341,26.243,-81.0343,WGS84,314,Cell #AJ03,"17N 2902357 E, 496596 N",UTM,WGS84,1,0,328,species,A,A,A +Chrysobalanus icaco,Coco-plum,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,chryicac,Human Observation,2003-03-28,BICY,626,NA,25.9163,-81.0604,25.9183,-81.0611,WGS84,314,Cell #AG39,"17N 2866413 E, 493955 N",UTM,WGS84,1,350,626,species,A,A,A +Parthenocissus quinquefolia,"Virginia-creeper, Woodbine",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,partquin,Human Observation,2002-12-20,BICY,464,NA,26.0673,-81.3019,26.0695,-81.3018,WGS84,314,Cell #I22,"17N 2883173 E, 469804 N",UTM,WGS84,1,5,464,species,A,A,A +Pinguicula pumila,Small butterwort,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,pingpumi,Human Observation,2003-03-18,BICY,615,NA,25.8982,-81.1038,25.8991,-81.1014,WGS84,314,Cell #AC41,"17N 2864411 E, 489601 N",UTM,WGS84,1,65,615,species,A,A,A +Muhlenbergia capillaris,"Muhlygrass, Hairawnmuhly",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,muhlcapi,Human Observation,2003-02-20,BICY,600,NA,26.0039,-81.1881,26.0052,-81.1863,WGS84,314,"Cell #U29, endpoint estimated using arcmap","17N 2876124 E, 481171 N",UTM,WGS84,1,50,600,species,A,A,A +Fuirena scirpoidea,Southern umbrellasedge,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,fuirscir,Human Observation,2003-02-21,BICY,593,NA,25.9996,-81.1574,25.9976,-81.1565,WGS84,314,Cell #X30,"17N 2875653 E, 484250 N",UTM,WGS84,1,165,593,species,A,A,A +Lycium carolinianum,"Christmasberry, Carolina desertthorn",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,lycicaro,Human Observation,2003-06-04,BICY,521,NA,25.8672,-81.353,25.8687,-81.3513,WGS84,314,Cell #D44 (originally labeled E45),"17N 2861021 E, 464635 N",UTM,WGS84,1,60,521,species,A,A,A +Persea palustris,Swamp bay,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,perspalu,Human Observation,2003-02-05,BICY,468,NA,26.1795,-80.9405,26.1775,-80.9416,WGS84,314,Cell #AS10,"17N 2895569 E, 505946 N",UTM,WGS84,1,210,468,species,A,A,A +Eleocharis geniculata,Canada spikerush,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,eleogeni,Human Observation,2002-05-28,BICY,211,NA,26.2163,-81.1905,26.2164,-81.1929,WGS84,314,Cell #T06,"17N 2899648 E, 480969 N",UTM,WGS84,1,275,211,species,A,A,A +Aristida purpurascens,Arrowfeather threeawn,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,arispurp,Human Observation,2003-05-02,BICY,510,NA,26.0974,-81.32,26.0996,-81.3195,WGS84,314,Cell #H19,"17N 2886505 E, 468000 N",UTM,WGS84,1,20,510,species,A,A,A +Proserpinaca palustris,"Mermaid weed, Marsh mermaidweed",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,prospalu,Human Observation,2002-11-05,BICY,272,NA,25.9062,-81.22,25.9078,-81.2214,WGS84,314,Cell #Q40,"17N 2865313 E, 477963 N",UTM,WGS84,1,325,272,species,A,A,A +Boehmeria cylindrica,"Button-hemp, False nettle, Bog hemp",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,boehcyli,Human Observation,2002-10-31,BICY,277,NA,25.8982,-81.257,25.8971,-81.2595,WGS84,314,Cell #N41,"17N 2864436 E, 474256 N",UTM,WGS84,1,240,277,species,A,A,A +Persea palustris,Swamp bay,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,perspalu,Human Observation,2002-11-14,BICY,284,NA,26.0767,-81.272,26.0774,-81.2743,WGS84,314,Cell #L21,"17N 2884209 E, 472799 N",UTM,WGS84,1,290,284,species,A,A,A +Eupatorium mikanioides,"Semaphore eupatorium, Semaphore thoroughwort",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,eupamika,Human Observation,2003-02-25,BICY,583,NA,26.0014,-81.2179,26.0014,-81.2155,WGS84,314,Cell #R40,"17N 2875853 E, 478198 N",UTM,WGS84,1,90,583,species,A,A,A +Blechnum serrulatum,"Swamp fern, Toothed midsorus fern",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,blecserr,Human Observation,2004-04-28,BICY,408,NA,25.8148,-81.0772,25.817,-81.0776,WGS84,314,Cell #AF50,"17N 2855174 E, 492265 N",UTM,WGS84,1,0,408,species,A,A,A +Pleopeltis polypodioides var. michauxiana,Resurrection fern,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,pleopolymich,Human Observation,2004-05-04,BICY,342,NA,25.863,-81.1021,25.8628,-81.1046,WGS84,314,Cell #AC45,"17N 2860512 E, 489770 N",UTM,WGS84,1,270,342,species,A,A,A +Paspalum monostachyum,Gulfdune paspalum,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,paspmono,Human Observation,2003-04-17,BICY,665,NA,26.2321,-81.0449,26.2297,-81.0447,WGS84,314,Cell #AI04,"17N 2901387 E, 495513 N",UTM,WGS84,1,180,665,species,A,A,A +Cladium jamaicense,"Saw-grass, Jamaica swamp sawgrass",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,cladjama,Human Observation,2002-11-08,BICY,289,NA,25.748,-80.9377,25.748,-80.9352,WGS84,314,Cell #AT58,"17N 2847783 E, 506247 N",UTM,WGS84,1,95,289,species,A,A,A +Bacopa caroliniana,"Lemon hyssop, Lemon bacopa, Blue waterhyssop",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,bacocaro,Human Observation,2003-02-13,BICY,479,NA,25.9309,-81.0264,25.9302,-81.0289,WGS84,314,Cell #AK37,"17N 2868028 E, 497353 N",UTM,WGS84,1,250,479,species,A,A,A +Parthenocissus quinquefolia,"Virginia-creeper, Woodbine",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,partquin,Human Observation,2003-03-12,BICY,542,NA,26.0617,-81.0309,26.0596,-81.0308,WGS84,314,Cell #AJ23,"17N 2882518 E, 496908 N",UTM,WGS84,1,190,542,species,A,A,A +Hydrolea corymbosa,Skyflower,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,hydrcory,Human Observation,2003-02-25,BICY,583,NA,26.0014,-81.2179,26.0014,-81.2155,WGS84,314,Cell #R40,"17N 2875853 E, 478198 N",UTM,WGS84,1,90,583,species,A,A,A +Stillingia aquatica,"Corkwood, Water toothleaf",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,stilaqua,Human Observation,2003-02-26,BICY,584,NA,26.0408,-81.1119,26.0406,-81.1141,WGS84,314,Cell #AB25,"17N 2880202 E, 488804 N",UTM,WGS84,1,270,584,species,A,A,A +Sarcostemma clausum,"Whitevine, White twinevine",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,sarcclau,Human Observation,2004-05-26,BICY,358,NA,25.8254,-81.0222,25.824,-81.0243,WGS84,314,Cell #AK49,"17N 2856346 E, 497776 N",UTM,WGS84,1,240,358,species,A,A,A +Lindernia grandiflora,Savannah false-pimpernel,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,lindgran,Human Observation,2004-04-01,BICY,327,NA,26.179,-81.0835,26.1788,-81.0859,WGS84,314,Cell #AE10,"17N 2895514 E, 491661 N",UTM,WGS84,1,270,327,species,A,A,A +Dichanthelium commutatum,Variable witchgrass,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,dichcomm,Human Observation,2004-03-17,BICY,379,NA,26.186,-81.343,26.1838,-81.3428,WGS84,314,Cell #E09,"17N 2896326 E, 465728 N",UTM,WGS84,1,180,379,species,A,A,A +Tillandsia fasciculata var. densispica,"Stiff-leaved wild-pine, Cardinal airplant",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,tillfascdens,Human Observation,2002-08-02,BICY,199,NA,25.8494,-80.995,25.8502,-80.9974,WGS84,314,Cell #AN46,"17N 2859003 E, 500497 N",UTM,WGS84,1,295,199,species,A,A,A +Pluchea rosea,Rosy camphorweed,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,plucrose,Human Observation,2002-05-21,BICY,216,NA,26.2511,-80.9297,26.2535,-80.9293,WGS84,314,Cell #AU02,"17N 2903494 E, 507020 N",UTM,WGS84,1,5,216,species,A,A,A +Dyschoriste angusta,"Rockland twinflower, Pineland snakeherb",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,dyscangu,Human Observation,2004-03-30,BICY,388,NA,26.1428,-80.8861,26.1411,-80.8845,WGS84,314,Cell #AY14,"17N 2891503 E, 511389 N",UTM,WGS84,1,145,388,species,A,A,A +Ludwigia microcarpa,Smallfruit primrosewillow,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,ludwmicr,Human Observation,2003-03-05,BICY,569,NA,26.0167,-81.1132,26.0146,-81.1121,WGS84,314,Cell #AB28,"17N 2877539 E, 488676 N",UTM,WGS84,1,160,569,species,A,A,A +Myrica cerifera,"Wax myrtle, Southern Bayberry",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,myriceri,Human Observation,2004-03-25,BICY,745,NA,26.21,-81.0892,26.2079,-81.0878,WGS84,314,Cell #AE07,"17N 2898939 E, 491088 N",UTM,WGS84,1,140,745,species,A,A,A +Scleria baldwinii,Baldwin's nutrush,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,sclebald,Human Observation,2002-07-17,BICY,163,NA,26.0432,-81.0379,26.0411,-81.0375,WGS84,314,"Cell #AJ25, Central Pines","17N 2880474 E, 496209 N",UTM,WGS84,1,180,163,species,A,A,A +Ficus aurea,"Strangler fig, Golden fig",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,ficuaure,Human Observation,2003-05-27,BICY,451,NA,25.749,-80.8746,25.7489,-80.8775,WGS84,314,Cell #AZ58,"17N 2847898 E, 512578 N",UTM,WGS84,1,270,451,species,A,A,A +Aletris lutea,Yellow colicroot,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,aletlute,Human Observation,2002-09-19,BICY,220,NA,26.1911,-80.8875,26.1922,-80.8853,WGS84,314,Cell #AY09,"17N 2896849 E, 511241 N",UTM,WGS84,1,60,220,species,A,A,A +Scleria georgiana,Slenderfruit nutrush,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,sclegeor,Human Observation,2003-03-06,BICY,573,NA,25.9962,-81.129,25.9956,-81.1266,WGS84,314,Cell #AA30,"17N 2875269 E, 487086 N",UTM,WGS84,1,110,573,species,A,A,A +Ludwigia repens,Creeping primrosewillow,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,ludwrepe,Human Observation,2003-06-19,BICY,740,NA,25.8843,-80.8461,25.8837,-80.8484,WGS84,314,Cell #BC43,"17N 2862884 E, 515418 N",UTM,WGS84,1,255,740,species,A,A,A +Boehmeria cylindrica,"Button-hemp, False nettle, Bog hemp",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,boehcyli,Human Observation,2003-02-04,BICY,469,NA,25.8418,-81.0023,25.8436,-81.0038,WGS84,314,Cell #AM47,"17N 2858162 E, 499774 N",UTM,WGS84,1,330,469,species,A,A,A +Dichanthelium dichotomum,Cypress witchgrass,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,dichdich,Human Observation,2004-05-06,BICY,341,NA,26.2422,-81.0507,26.24,-81.0504,WGS84,314,Cell #AH03,"17N 2902502 E, 494939 N",UTM,WGS84,1,175,341,species,A,A,A +Psychotria nervosa,Shiny-leaved wild-coffee,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,psycnerv,Human Observation,2003-03-13,BICY,739,NA,25.7616,-80.9307,25.7635,-80.9312,WGS84,314,Cell #AT56,"17N 2849280 E, 506953 N",UTM,WGS84,1,350,739,species,A,A,A +Hyptis alata,"Musky mint, Clustered bushmint",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,hyptalat,Human Observation,2004-05-13,BICY,428,NA,25.8978,-81.2753,25.8964,-81.2736,WGS84,314,Cell #L41,"17N 2864400 E, 472424 N",UTM,WGS84,1,130,428,species,A,A,A +Sabatia bartramii,Bartram's rosegentian,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,sababart,Human Observation,2004-04-07,BICY,438,NA,26.2498,-81.2265,26.2476,-81.2262,WGS84,314,Cell #Q02,"17N 2903369 E, 477380 N",UTM,WGS84,1,180,438,species,A,A,A +Nymphoides aquatica,Big floatingheart,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,nympaqua,Human Observation,2003-07-02,BICY,707,NA,25.6812,-80.9505,25.6827,-80.9524,WGS84,314,Cell #AR65,"17N 2840382 E, 504964 N",UTM,WGS84,1,315,707,species,A,A,A +Spartina bakeri,Sand cordgrass,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,sparbake,Human Observation,2002-05-29,BICY,204,NA,25.9464,-81.2971,25.9444,-81.2968,WGS84,314,Cell #J36,"17N 2869783 E, 470257 N",UTM,WGS84,1,180,204,species,A,A,A +Rhynchospora colorata,Starrush whitetop,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,rhyncolo,Human Observation,2004-03-26,BICY,414,NA,26.2242,-81.0649,26.2242,-81.0674,WGS84,314,Cell #AG05,"17N 2900516 E, 493515 N",UTM,WGS84,1,270,414,species,A,A,A +Panicum hemitomon,Maidencane,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,panihemi,Human Observation,2004-06-02,BICY,356,NA,25.9555,-81.0064,25.9541,-81.0043,WGS84,314,Cell #AM35,"17N 2870752 E, 499364 N",UTM,WGS84,1,135,356,species,A,A,A +Eupatorium mohrii,Mohr's thoroughwort,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,eupamohr,Human Observation,2004-03-24,BICY,411,NA,26.22,-81.0859,26.2213,-81.0839,WGS84,314,Cell #AE05,"17N 2900049 E, 491423 N",UTM,WGS84,1,30,411,species,A,A,A +Ipomoea sagittata,Everglades morningglory,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,ipomsagi,Human Observation,2003-03-07,BICY,558,NA,25.7369,-80.9716,25.7351,-80.973,WGS84,314,Cell #AP59,"17N 2846549 E, 502853 N",UTM,WGS84,1,220,558,species,A,A,A +Fraxinus caroliniana,"Water ash, Carolina ash, Pop ash",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,fraxcaro,Human Observation,2004-06-03,BICY,353,NA,26.0243,-81.0653,26.0246,-81.0678,WGS84,314,Cell #AG27,"17N 2878374 E, 493467 N",UTM,WGS84,1,295,353,species,A,A,A +Toxicodendron radicans,Eastern poison-ivy,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,toxiradi,Human Observation,2003-06-04,BICY,521,NA,25.8672,-81.353,25.8687,-81.3513,WGS84,314,Cell #D44 (originally labeled E45),"17N 2861021 E, 464635 N",UTM,WGS84,1,60,521,species,A,A,A +Tillandsia fasciculata var. densispica,"Stiff-leaved wild-pine, Cardinal airplant",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,tillfascdens,Human Observation,2004-03-17,BICY,377,NA,26.1818,-81.343,26.1802,-81.3413,WGS84,314,Cell #E10,"17N 2895858 E, 465728 N",UTM,WGS84,1,150,377,species,A,A,A +Rhynchospora colorata,Starrush whitetop,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,rhyncolo,Human Observation,2003-03-26,BICY,693,NA,25.6592,-81.0263,25.6585,-81.024,WGS84,314,Cell #AK68,"17N 2837939 E, 497357 N",UTM,WGS84,1,110,693,species,A,A,A +Aster subulatus,Annual saltmarsh aster,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,astesubu,Human Observation,2002-11-14,BICY,284,NA,26.0767,-81.272,26.0774,-81.2743,WGS84,314,Cell #L21,"17N 2884209 E, 472799 N",UTM,WGS84,1,290,284,species,A,A,A +Juncus megacephalus,Bighead rush,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,juncmega,Human Observation,2003-03-25,BICY,681,NA,25.9646,-81.2476,25.9632,-81.2495,WGS84,314,Cell #O34,"17N 2871789 E, 475210 N",UTM,WGS84,1,235,681,species,A,A,A +Sisyrinchium angustifolium,Narroleaf blueeyed-grass,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,sisyangu,Human Observation,2003-06-03,BICY,515,NA,25.717,-81.0562,25.7186,-81.0581,WGS84,314,Cell #AH61,"17N 2844349 E, 494364 N",UTM,WGS84,1,320,515,species,A,A,A +Utricularia subulata,Zigzag bladderwort,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,utrisubu,Human Observation,2003-05-14,BICY,640,NA,26.1761,-81.1817,26.1789,-81.1821,WGS84,314,Cell #U10,"17N 2895202 E, 481846 N",UTM,WGS84,1,0,640,species,A,A,A +Pluchea rosea,Rosy camphorweed,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,plucrose,Human Observation,2002-08-29,BICY,249,NA,25.7858,-81.0958,25.7852,-81.0936,WGS84,314,Cell #AD54,"17N 2851968 E, 490392 N",UTM,WGS84,1,110,249,species,A,A,A +Tillandsia usneoides,Spanish-moss,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,tillusne,Human Observation,2003-06-19,BICY,740,NA,25.8843,-80.8461,25.8837,-80.8484,WGS84,314,Cell #BC43,"17N 2862884 E, 515418 N",UTM,WGS84,1,255,740,species,A,A,A +Eupatorium mohrii,Mohr's thoroughwort,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,eupamohr,Human Observation,2004-05-13,BICY,430,NA,25.9072,-81.2737,25.9054,-81.2743,WGS84,314,Cell #L40,"17N 2865437 E, 472583 N",UTM,WGS84,1,220,430,species,A,A,A +Phlebodium aureum,Golden polypody,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,phleaure,Human Observation,2003-09-16,BICY,719,NA,26.1624,-81.0283,26.1609,-81.026,WGS84,314,Cell #AK12,"17N 2893665 E, 497173 N",UTM,WGS84,1,130,719,species,A,A,A +Sagittaria lancifolia,Bulltongue arrowhead,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,sagilanc,Human Observation,2003-07-17,BICY,714,NA,25.8076,-81.214,25.8094,-81.2151,WGS84,314,Cell #R61,"17N 2854390 E, 478553 N",UTM,WGS84,1,340,714,species,A,A,A +Pleopeltis polypodioides var. michauxiana,Resurrection fern,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,pleopolymich,Human Observation,2002-07-31,BICY,253,NA,26.0454,-81.3423,26.0451,-81.3397,WGS84,314,Cell #E25,"17N 2880757 E, 465755 N",UTM,WGS84,1,110,253,species,A,A,A +Cladium jamaicense,"Saw-grass, Jamaica swamp sawgrass",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,cladjama,Human Observation,2003-04-29,BICY,606,NA,25.8642,-81.2501,25.8627,-81.2519,WGS84,314,Cell #N45,"17N 2860672 E, 474942 N",UTM,WGS84,1,230,606,species,A,A,A +NA,NA,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,cf. spermacoce floridana,Human Observation,2003-03-13,BICY,633,Spermococe cf floridana,26.0488,-81.0668,26.0487,-81.0641,WGS84,314,Cell #AG24,"17N 2881089 E, 493320 N",UTM,WGS84,1,100,633,NA,A,R,A +Paspalum conjugatum,"Sour paspalum, Hilograss",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,paspconj,Human Observation,2004-03-17,BICY,378,NA,26.186,-81.343,26.1854,-81.3406,WGS84,314,Cell #E09,"17N 2896326 E, 465728 N",UTM,WGS84,1,110,378,species,A,A,A +Tillandsia balbisiana,"Reflexed wild-pine, Northern needleleaf",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,tillbalb,Human Observation,2004-06-22,BICY,311,NA,26.1685,-81.2779,26.1706,-81.2771,WGS84,314,Cell #L11,"17N 2894377 E, 472231 N",UTM,WGS84,1,25,311,species,A,A,A +Crinum americanum,"Swamp-lily, Seven-sisters, String-lily",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,crinamer,Human Observation,2003-02-28,BICY,578,NA,25.7753,-80.9975,25.775,-80.9999,WGS84,314,Cell #AN55,"17N 2850797 E, 500253 N",UTM,WGS84,1,265,578,species,A,A,A +Ludwigia repens,Creeping primrosewillow,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,ludwrepe,Human Observation,2003-02-27,BICY,588,NA,26.0397,-81.1252,26.0401,-81.1231,WGS84,314,Cell #AA25,"17N 2880083 E, 487479 N",UTM,WGS84,1,85,588,species,A,A,A +Vitis rotundifolia,"Muscadine, Muscadine grape",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,vitirotu,Human Observation,2002-05-21,BICY,216,NA,26.2511,-80.9297,26.2535,-80.9293,WGS84,314,Cell #AU02,"17N 2903494 E, 507020 N",UTM,WGS84,1,5,216,species,A,A,A +Boehmeria cylindrica,"Button-hemp, False nettle, Bog hemp",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,boehcyli,Human Observation,2003-05-13,BICY,611,NA,26.1457,-81.2422,26.1447,-81.2445,WGS84,314,Cell #O14,"17N 2891842 E, 475791 N",UTM,WGS84,1,265,611,species,A,A,A +Fuirena breviseta,Saltmarsh umbrellasedge,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,fuirbrev,Human Observation,2003-03-05,BICY,568,NA,26.0167,-81.1132,26.0165,-81.1107,WGS84,314,Cell #AB28,"17N 2877539 E, 488676 N",UTM,WGS84,1,95,568,species,A,A,A +Proserpinaca palustris,"Mermaid weed, Marsh mermaidweed",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,prospalu,Human Observation,2003-05-14,BICY,641,NA,26.1761,-81.1817,26.1759,-81.1846,WGS84,314,Cell #U10,"17N 2895202 E, 481846 N",UTM,WGS84,1,270,641,species,A,A,A +Rhynchospora divergens,Spreading beaksedge,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,rhyndive,Human Observation,2003-02-11,BICY,490,NA,26.0752,-81.293,26.0774,-81.2932,WGS84,314,Cell #J21,"17N 2884040 E, 470692 N",UTM,WGS84,1,5,490,species,A,A,A +Proserpinaca palustris,"Mermaid weed, Marsh mermaidweed",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,prospalu,Human Observation,2004-04-14,BICY,416,NA,26.2163,-81.0953,26.2174,-81.0932,WGS84,314,Cell #AJ06,"17N 2899645 E, 490479 N",UTM,WGS84,1,70,416,species,A,A,A +Andropogon virginicus var. glaucus,Chalky bluestem,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,andrvirgglau,Human Observation,2003-04-10,BICY,666,NA,26.1004,-81.1641,26.0983,-81.1641,WGS84,314,Cell #W19,"17N 2886815 E, 483592 N",UTM,WGS84,1,190,666,species,A,A,A +Cladium jamaicense,"Saw-grass, Jamaica swamp sawgrass",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,cladjama,Human Observation,2003-06-06,BICY,509,NA,26.1338,-80.9446,26.1337,-80.9422,WGS84,314,Cell #AS15,"17N 2890502 E, 505535 N",UTM,WGS84,1,100,509,species,A,A,A +Sisyrinchium angustifolium,Narroleaf blueeyed-grass,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,sisyangu,Human Observation,2003-02-19,BICY,596,NA,26.0084,-81.2316,26.0063,-81.2316,WGS84,314,Cell #P29,"17N 2876637 E, 476826 N",UTM,WGS84,1,190,596,species,A,A,A +Tillandsia fasciculata var. densispica,"Stiff-leaved wild-pine, Cardinal airplant",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,tillfascdens,Human Observation,2002-05-31,BICY,202,NA,26.2044,-81.066,26.2022,-81.0659,WGS84,314,Cell #AG07,"17N 2898326 E, 493407 N",UTM,WGS84,1,180,202,species,A,A,A +Pluchea rosea,Rosy camphorweed,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,plucrose,Human Observation,2003-07-17,BICY,714,NA,25.8076,-81.214,25.8094,-81.2151,WGS84,314,Cell #R61,"17N 2854390 E, 478553 N",UTM,WGS84,1,340,714,species,A,A,A +Sisyrinchium angustifolium,Narroleaf blueeyed-grass,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,sisyangu,Human Observation,2003-02-27,BICY,575,NA,25.9273,-80.9622,25.9258,-80.9605,WGS84,314,Cell #AQ38,"17N 2867634 E, 503783 N",UTM,WGS84,1,140,575,species,A,A,A +Eremochloa ophiuroides,Centipede grass,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,eremophi,Human Observation,2004-05-20,BICY,393,NA,26.2529,-80.8936,26.2541,-80.8915,WGS84,314,Cell #AX02,"17N 2903700 E, 510627 N",UTM,WGS84,1,60,393,species,A,A,A +Crinum americanum,"Swamp-lily, Seven-sisters, String-lily",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,crinamer,Human Observation,2003-05-27,BICY,451,NA,25.749,-80.8746,25.7489,-80.8775,WGS84,314,Cell #AZ58,"17N 2847898 E, 512578 N",UTM,WGS84,1,270,451,species,A,A,A +Ludwigia alata,Winged primrosewillow,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,ludwalat,Human Observation,2003-02-05,BICY,465,NA,26.1795,-80.9152,26.1798,-80.9177,WGS84,314,Cell #AV10,"17N 2895561 E, 508470 N",UTM,WGS84,1,280,465,species,A,A,A +Lobelia glandulosa,Glade lobelia,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,lobeglan,Human Observation,2002-11-05,BICY,280,NA,25.8708,-81.2282,25.8686,-81.228,WGS84,314,Cell #Q44,"17N 2861398 E, 477142 N",UTM,WGS84,1,180,280,species,A,A,A +Myrica cerifera,"Wax myrtle, Southern Bayberry",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,myriceri,Human Observation,2003-03-28,BICY,626,NA,25.9163,-81.0604,25.9183,-81.0611,WGS84,314,Cell #AG39,"17N 2866413 E, 493955 N",UTM,WGS84,1,350,626,species,A,A,A +Vitis cinerea var. floridana,Florida grape,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,viticineflor,Human Observation,2002-05-31,BICY,202,NA,26.2044,-81.066,26.2022,-81.0659,WGS84,314,Cell #AG07,"17N 2898326 E, 493407 N",UTM,WGS84,1,180,202,species,A,A,A +Senna ligustrina,"Privet senna, Privet wild sensitive plant",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,sennligu,Human Observation,2003-05-23,BICY,531,Senna species,25.8048,-80.9224,25.8046,-80.9249,WGS84,314,Cell #AU51,"17N 2854064 E, 507777 N",UTM,WGS84,1,270,531,species,A,A,A +Parthenocissus quinquefolia,"Virginia-creeper, Woodbine",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,partquin,Human Observation,2003-06-13,BICY,504,NA,26.2456,-81.1057,26.2438,-81.1047,WGS84,314,Cell #AC03,"17N 2902890 E, 489446 N",UTM,WGS84,1,160,504,species,A,A,A +Rhynchospora odorata,Fragrant beaksedge,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,rhynodor,Human Observation,2004-04-14,BICY,420,NA,26.2176,-81.0845,26.2191,-81.0828,WGS84,314,Cell #AE06,"17N 2899785 E, 491558 N",UTM,WGS84,1,50,420,species,A,A,A +Canna flaccida,"Golden canna, Bandana-of-the-everglades",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,cannflac,Human Observation,2003-05-02,BICY,511,NA,26.0974,-81.32,26.098,-81.3178,WGS84,314,Cell #H19,"17N 2886505 E, 468000 N",UTM,WGS84,1,75,511,species,A,A,A +Cladium jamaicense,"Saw-grass, Jamaica swamp sawgrass",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,cladjama,Human Observation,2003-03-06,BICY,554,NA,26.2322,-81.3052,26.2335,-81.3074,WGS84,314,Cell #I04,"17N 2901439 E, 469519 N",UTM,WGS84,1,310,554,species,A,A,A +Utricularia purpurea,Eastern purple bladderwort,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,utripurp,Human Observation,2003-03-12,BICY,631,NA,26.0746,-81.0252,26.0725,-81.0244,WGS84,314,Cell #AK22,"17N 2883951 E, 497476 N",UTM,WGS84,1,180,631,species,A,A,A +Cyperus haspan,Haspan flatsedge,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,cypehasp,Human Observation,2003-04-24,BICY,613,NA,25.7194,-81.0846,25.7216,-81.0853,WGS84,314,Cell #AE61,"17N 2844609 E, 491518 N",UTM,WGS84,1,345,613,species,A,A,A +Ipomoea sagittata,Everglades morningglory,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,ipomsagi,Human Observation,2003-04-09,BICY,683,NA,26.0881,-81.1551,26.0859,-81.1554,WGS84,314,Cell #X20,"17N 2885455 E, 484489 N",UTM,WGS84,1,190,683,species,A,A,A +Eragrostis elliottii,Elliott's love grass,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,eragelli,Human Observation,2002-09-18,BICY,233,NA,25.7252,-81.0306,25.7256,-81.033,WGS84,314,Cell #AJ60,"17N 2845250 E, 496927 N",UTM,WGS84,1,290,233,species,A,A,A +Rapanea punctata,"Myrsine, Colicwood",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,rapapunc,Human Observation,2003-01-04,BICY,459,NA,26.2036,-80.9318,26.203,-80.934,WGS84,314,Cell #AT07,"17N 2898234 E, 506815 N",UTM,WGS84,1,250,459,species,A,A,A +Sagittaria graminea var. chapmanii,Chapman's arrowhead,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,sagigramchap,Human Observation,2002-08-23,BICY,246,NA,25.8536,-81.2248,25.8555,-81.2262,WGS84,314,Cell #Q46,"17N 2859495 E, 477474 N",UTM,WGS84,1,330,246,species,A,A,A +Pleopeltis polypodioides var. michauxiana,Resurrection fern,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,pleopolymich,Human Observation,2003-04-16,BICY,661,NA,26.2547,-81.0622,26.255,-81.0642,WGS84,314,Cell #AG02,"17N 2903897 E, 493787 N",UTM,WGS84,1,280,661,species,A,A,A +Mikania scandens,"Climbing hempweed, Climbing hempvine",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,mikascan,Human Observation,2003-03-19,BICY,629,NA,25.9812,-81.1982,25.9791,-81.1982,WGS84,314,Cell #T32,"17N 2873621 E, 480164 N",UTM,WGS84,1,190,629,species,A,A,A +Dichanthelium erectifolium,Erectleaf witchgrass,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,dicherec,Human Observation,2002-05-08,BICY,135,NA,25.8891,-81.067,25.8905,-81.065,WGS84,314,"Cell #AG42, endpoint estimated using arcmap","17N 2863405 E, 493293 N",UTM,WGS84,1,45,135,species,A,A,A +Ipomoea sagittata,Everglades morningglory,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,ipomsagi,Human Observation,2004-03-31,BICY,319,NA,26.1349,-81.057,26.1335,-81.055,WGS84,314,Cell #AH15,"17N 2890624 E, 494305 N",UTM,WGS84,1,130,319,species,A,A,A +Setaria parviflora,"Knotroot foxtail, Yellow bristlegrass",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,setaparv,Human Observation,2002-06-04,BICY,268,NA,25.9992,-81.1001,25.9993,-81.1023,WGS84,314,Cell #AC30,"17N 2875600 E, 489986 N",UTM,WGS84,1,225,268,species,A,A,A +Smilax auriculata,Earleaf greenbrier,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,smilauri,Human Observation,2003-02-20,BICY,495,NA,25.9569,-80.947,25.9559,-80.9449,WGS84,314,Cell #AS35,"17N 2870917 E, 505304 N",UTM,WGS84,1,125,495,species,A,A,A +Solidago stricta,"Narrow-leaved goldenrod, Wand goldenrod",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,solistri,Human Observation,2003-05-02,BICY,511,NA,26.0974,-81.32,26.098,-81.3178,WGS84,314,Cell #H19,"17N 2886505 E, 468000 N",UTM,WGS84,1,75,511,species,A,A,A +Gratiola ramosa,Branched hedgehyssop,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,gratramo,Human Observation,2003-03-25,BICY,690,NA,25.935,-80.9886,25.9338,-80.9864,WGS84,314,Cell #AO37,"17N 2868490 E, 501141 N",UTM,WGS84,1,125,690,species,A,A,A +Tillandsia fasciculata var. densispica,"Stiff-leaved wild-pine, Cardinal airplant",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,tillfascdens,Human Observation,2003-06-06,BICY,509,NA,26.1338,-80.9446,26.1337,-80.9422,WGS84,314,Cell #AS15,"17N 2890502 E, 505535 N",UTM,WGS84,1,100,509,species,A,A,A +Panicum hemitomon,Maidencane,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,panihemi,Human Observation,2003-05-02,BICY,655,NA,26.2526,-81.1916,26.252,-81.1939,WGS84,314,Cell #T02,"17N 2903667 E, 480866 N",UTM,WGS84,1,260,655,species,A,A,A +Hyptis alata,"Musky mint, Clustered bushmint",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,hyptalat,Human Observation,2004-03-11,BICY,398,NA,25.7817,-80.9812,25.7817,-80.9837,WGS84,314,Cell #AO54,"17N 2851513 E, 501882 N",UTM,WGS84,1,270,398,species,A,A,A +Taxodium ascendens,Pond cypress,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,taxoasce,Human Observation,2003-05-09,BICY,648,NA,25.8875,-81.049,25.8894,-81.0484,WGS84,314,Cell #AI42,"17N 2863229 E, 495090 N",UTM,WGS84,1,30,648,species,A,A,A +Muhlenbergia capillaris,"Muhlygrass, Hairawnmuhly",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,muhlcapi,Human Observation,2003-06-03,BICY,516,NA,25.7102,-81.0764,25.7104,-81.0789,WGS84,314,Cell #AF62,"17N 2843594 E, 492335 N",UTM,WGS84,1,280,516,species,A,A,A +Thelypteris palustris var. pubescens,Marsh fern,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,thelpalupube,Human Observation,2004-06-22,BICY,313,NA,26.1627,-81.2799,26.1606,-81.2794,WGS84,314,Cell #L12,"17N 2893733 E, 472025 N",UTM,WGS84,1,180,313,species,A,A,A +Sagittaria lancifolia,Bulltongue arrowhead,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,sagilanc,Human Observation,2003-07-09,BICY,721,NA,26.2346,-81.285,26.2353,-81.2871,WGS84,314,Cell #K04,"17N 2901693 E, 471533 N",UTM,WGS84,1,290,721,species,A,A,A +Spartina bakeri,Sand cordgrass,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,sparbake,Human Observation,2003-03-06,BICY,573,NA,25.9962,-81.129,25.9956,-81.1266,WGS84,314,Cell #AA30,"17N 2875269 E, 487086 N",UTM,WGS84,1,110,573,species,A,A,A +Panicum rigidulum,Redtop panicum,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,panirigi,Human Observation,2002-08-29,BICY,249,NA,25.7858,-81.0958,25.7852,-81.0936,WGS84,314,Cell #AD54,"17N 2851968 E, 490392 N",UTM,WGS84,1,110,249,species,A,A,A +Chiococca parvifolia,Pineland snowberry,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,chioparv,Human Observation,2003-04-16,BICY,660,NA,26.2547,-81.0622,26.2528,-81.0628,WGS84,314,Cell #AG02,"17N 2903897 E, 493787 N",UTM,WGS84,1,200,660,species,A,A,A +Rhynchospora divergens,Spreading beaksedge,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,rhyndive,Human Observation,2003-04-10,BICY,667,NA,26.1004,-81.1641,26.0986,-81.1655,WGS84,314,Cell #W19,"17N 2886815 E, 483592 N",UTM,WGS84,1,220,667,species,A,A,A +Dichanthelium erectifolium,Erectleaf witchgrass,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,dicherec,Human Observation,2002-07-11,BICY,155,NA,26.1057,-81.284,26.1035,-81.2833,WGS84,314,Cell #K18,"17N 2887417 E, 471604 N",UTM,WGS84,1,170,155,species,A,A,A +Melochia spicata,Bretonica peluda,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,melospic,Human Observation,2004-04-07,BICY,432,NA,26.25,-81.2548,26.2478,-81.2547,WGS84,314,Cell #N02,"17N 2903396 E, 474557 N",UTM,WGS84,1,180,432,species,A,A,A +Solidago stricta,"Narrow-leaved goldenrod, Wand goldenrod",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,solistri,Human Observation,2003-01-04,BICY,459,NA,26.2036,-80.9318,26.203,-80.934,WGS84,314,Cell #AT07,"17N 2898234 E, 506815 N",UTM,WGS84,1,250,459,species,A,A,A +Typha domingensis,Southern cat-tail,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,typhdomi,Human Observation,2002-05-20,BICY,190,NA,25.7828,-80.8764,25.7807,-80.8773,WGS84,314,"Cell #AZ54, inside Loop Rd.","17N 2851635 E, 512389 N",UTM,WGS84,1,205,190,species,A,A,A +Myrica cerifera,"Wax myrtle, Southern Bayberry",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,myriceri,Human Observation,2003-06-19,BICY,741,NA,25.8843,-80.8461,25.8826,-80.8465,WGS84,314,Cell #BC43,"17N 2862884 E, 515418 N",UTM,WGS84,1,180,741,species,A,A,A +Crinum americanum,"Swamp-lily, Seven-sisters, String-lily",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,crinamer,Human Observation,2002-08-23,BICY,237,NA,25.8448,-81.2201,25.8466,-81.2215,WGS84,314,Cell #Q47,"17N 2858519 E, 477943 N",UTM,WGS84,1,330,237,species,A,A,A +Crinum americanum,"Swamp-lily, Seven-sisters, String-lily",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,crinamer,Human Observation,2002-08-22,BICY,242,NA,25.9059,-81.2415,25.9053,-81.2441,WGS84,314,Cell #O40,"17N 2865287 E, 475811 N",UTM,WGS84,1,260,242,species,A,A,A +Toxicodendron radicans,Eastern poison-ivy,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,toxiradi,Human Observation,2004-06-10,BICY,315,NA,26.1551,-81.1871,26.1539,-81.1851,WGS84,314,Cell #U13,"17N 2892878 E, 481301 N",UTM,WGS84,1,125,315,species,A,A,A +Juncus megacephalus,Bighead rush,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,juncmega,Human Observation,2003-04-08,BICY,674,NA,26.0673,-81.1525,26.0695,-81.1521,WGS84,314,"Cell #X22, endpoint corrected using arcmap","17N 2883144 E, 484751 N",UTM,WGS84,1,15,674,species,A,A,A +Ilex cassine,"Dahoon holly, Dahoon",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,ilexcass,Human Observation,2003-05-24,BICY,533,NA,25.8115,-81.1422,25.8129,-81.1407,WGS84,314,Cell #Y51,"17N 2854812 E, 485751 N",UTM,WGS84,1,40,533,species,A,A,A +Quercus laurifolia,"Laurel oak, Diamond oak",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,querlaur,Human Observation,2002-05-22,BICY,219,NA,25.7737,-81.0393,25.7735,-81.0388,WGS84,314,Cell #AJ55 (North of Loop Road),"17N 2850623 E, 496063 N",UTM,WGS84,1,155,219,species,A,A,A +Tillandsia fasciculata var. densispica,"Stiff-leaved wild-pine, Cardinal airplant",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,tillfascdens,Human Observation,2003-02-07,BICY,493,NA,25.8691,-81.0272,25.8679,-81.0294,WGS84,314,Cell #AK44,"17N 2861184 E, 497273 N",UTM,WGS84,1,250,493,species,A,A,A +Pluchea rosea,Rosy camphorweed,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,plucrose,Human Observation,2003-03-28,BICY,684,NA,25.9193,-81.0491,25.9181,-81.047,WGS84,314,Cell #AI39,"17N 2866752 E, 495080 N",UTM,WGS84,1,130,684,species,A,A,A +Iris hexagona,"Dixie iris, Prairie iris",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,irishexa,Human Observation,2004-05-04,BICY,342,NA,25.863,-81.1021,25.8628,-81.1046,WGS84,314,Cell #AC45,"17N 2860512 E, 489770 N",UTM,WGS84,1,270,342,species,A,A,A +Ilex cassine,"Dahoon holly, Dahoon",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,ilexcass,Human Observation,2003-02-06,BICY,455,NA,25.9529,-81.3444,25.9541,-81.3422,WGS84,314,Cell #E35,"17N 2870515 E, 465524 N",UTM,WGS84,1,65,455,species,A,A,A +Persea palustris,Swamp bay,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,perspalu,Human Observation,2002-09-17,BICY,223,NA,25.6988,-80.9736,25.7,-80.9758,WGS84,314,Cell #AP63,"17N 2842329 E, 502644 N",UTM,WGS84,1,310,223,species,A,A,A +Samolus ebracteatus,"Water pimpernel, Limewater brookweed",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,samoebra,Human Observation,2003-03-04,BICY,562,NA,26.0403,-81.0942,26.042,-81.0956,WGS84,314,Cell #AD25,"17N 2880145 E, 490578 N",UTM,WGS84,1,320,562,species,A,A,A +Melaleuca quinquenervia,Punktree,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,melaquin,Human Observation,2002-06-17,BICY,145,NA,25.8329,-81.1112,25.8339,-81.1134,WGS84,314,"Cell #AB48, W of Monroe Station S of Tamiami Trai","17N 2857179 E, 488852 N",UTM,WGS84,1,305,145,species,A,A,A +Elionurus tripsacoides,Pan-American balsamscale,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,eliotrip,Human Observation,2003-05-02,BICY,512,NA,26.1068,-81.3197,26.1068,-81.3174,WGS84,314,Cell #H18,"17N 2887550 E, 468039 N",UTM,WGS84,1,100,512,species,A,A,A +Cephalanthus occidentalis,Common buttonbush,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,cephocci,Human Observation,2004-05-07,BICY,368,NA,25.7236,-80.9208,25.7257,-80.9206,WGS84,314,Cell #AU60,"17N 2845078 E, 507948 N",UTM,WGS84,1,0,368,species,A,A,A +Dichanthelium erectifolium,Erectleaf witchgrass,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,dicherec,Human Observation,2002-05-31,BICY,203,NA,26.2044,-81.066,26.2044,-81.066,WGS84,314,Cell #AG07 (was mislabeled as AD31),"17N 2898326 E, 493407 N",UTM,WGS84,1,50,203,species,A,A,A +Rapanea punctata,"Myrsine, Colicwood",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,rapapunc,Human Observation,2003-05-29,BICY,538,NA,25.7563,-80.9028,25.7582,-80.9038,WGS84,314,Cell #AW57,"17N 2848699 E, 509752 N",UTM,WGS84,1,350,538,species,A,A,A +Pluchea rosea,Rosy camphorweed,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,plucrose,Human Observation,2004-03-17,BICY,377,NA,26.1818,-81.343,26.1802,-81.3413,WGS84,314,Cell #E10,"17N 2895858 E, 465728 N",UTM,WGS84,1,150,377,species,A,A,A +Myrica cerifera,"Wax myrtle, Southern Bayberry",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,myriceri,Human Observation,2002-05-29,BICY,205,NA,25.9464,-81.2971,25.9466,-81.2971,WGS84,314,Cell #J36,"17N 2869783 E, 470257 N",UTM,WGS84,1,270,205,species,A,A,A +Cephalanthus occidentalis,Common buttonbush,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,cephocci,Human Observation,2003-06-18,BICY,696,NA,26.047,-81.1762,26.0461,-81.1739,WGS84,314,Cell #V25,"17N 2880903 E, 482375 N",UTM,WGS84,1,125,696,species,A,A,A +Hedyotis uniflora,Clustered mille graine,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,hedyunif,Human Observation,2004-05-05,BICY,328,NA,26.2408,-81.0341,26.243,-81.0343,WGS84,314,Cell #AJ03,"17N 2902357 E, 496596 N",UTM,WGS84,1,0,328,species,A,A,A +Hyptis alata,"Musky mint, Clustered bushmint",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,hyptalat,Human Observation,2003-04-08,BICY,675,NA,26.0673,-81.1525,26.0673,-81.155,WGS84,314,Cell #X22,"17N 2883144 E, 484751 N",UTM,WGS84,1,270,675,species,A,A,A +Rhynchospora inundata,Narrowfruit horned beaksedge,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,rhyninun,Human Observation,2003-03-04,BICY,563,NA,26.0403,-81.0942,26.0419,-81.0923,WGS84,314,Cell #AD25,"17N 2880145 E, 490578 N",UTM,WGS84,1,50,563,species,A,A,A +Taxodium ascendens,Pond cypress,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,taxoasce,Human Observation,2003-05-09,BICY,650,NA,25.8993,-81.0752,25.9015,-81.075,WGS84,314,Cell #AF41,"17N 2864531 E, 492472 N",UTM,WGS84,1,10,650,species,A,A,A +Aster bracei,Brace's aster,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,astebrac,Human Observation,2003-02-28,BICY,578,NA,25.7753,-80.9975,25.775,-80.9999,WGS84,314,Cell #AN55,"17N 2850797 E, 500253 N",UTM,WGS84,1,265,578,species,A,A,A +Hydrolea corymbosa,Skyflower,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,hydrcory,Human Observation,2003-02-19,BICY,597,NA,26.0084,-81.2316,26.0087,-81.2339,WGS84,314,Cell #P29,"17N 2876637 E, 476826 N",UTM,WGS84,1,280,597,species,A,A,A +Proserpinaca palustris,"Mermaid weed, Marsh mermaidweed",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,prospalu,Human Observation,2003-04-17,BICY,665,NA,26.2321,-81.0449,26.2297,-81.0447,WGS84,314,Cell #AI04,"17N 2901387 E, 495513 N",UTM,WGS84,1,180,665,species,A,A,A +Serenoa repens,Saw palmetto,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,sererepe,Human Observation,2003-06-12,BICY,503,NA,25.8961,-81.1523,25.8979,-81.1507,WGS84,314,Cell #X41,"17N 2864187 E, 484747 N",UTM,WGS84,1,50,503,species,A,A,A +Sarcostemma clausum,"Whitevine, White twinevine",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,sarcclau,Human Observation,2003-06-19,BICY,741,NA,25.8843,-80.8461,25.8826,-80.8465,WGS84,314,Cell #BC43,"17N 2862884 E, 515418 N",UTM,WGS84,1,180,741,species,A,A,A +Smilax laurifolia,"Catbrier, Laurel greenbrier, Bamboo vine",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,smillaur,Human Observation,2003-05-29,BICY,538,NA,25.7563,-80.9028,25.7582,-80.9038,WGS84,314,Cell #AW57,"17N 2848699 E, 509752 N",UTM,WGS84,1,350,538,species,A,A,A +Setaria parviflora,"Knotroot foxtail, Yellow bristlegrass",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,setaparv,Human Observation,2003-06-18,BICY,699,NA,26.0257,-81.2201,26.0263,-81.2225,WGS84,314,Cell #Q27,"17N 2878553 E, 477980 N",UTM,WGS84,1,290,699,species,A,A,A +Ipomoea sagittata,Everglades morningglory,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,ipomsagi,Human Observation,2002-08-22,BICY,244,NA,25.9154,-81.2418,25.9144,-81.2439,WGS84,314,"Cell #O39, endpoint corrected using arcmap","17N 2866336 E, 475780 N",UTM,WGS84,1,245,244,species,A,A,A +Cynanchum blodgettii,Blodgett's swallowwort,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,cynablod,Human Observation,2004-06-03,BICY,352,NA,26.0243,-81.0653,26.0258,-81.067,WGS84,314,Cell #AG27,"17N 2878374 E, 493467 N",UTM,WGS84,1,335,352,species,A,A,A +Andropogon virginicus var. glaucus,Chalky bluestem,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,andrvirgglau,Human Observation,2004-03-30,BICY,391,NA,26.1527,-80.8913,26.1549,-80.891,WGS84,314,Cell #AX13,"17N 2892602 E, 510865 N",UTM,WGS84,1,10,391,species,A,A,A +Centella asiatica,"Coinwort, Spadeleaf",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,centasia,Human Observation,2004-03-30,BICY,389,NA,26.1428,-80.8861,26.142,-80.8883,WGS84,314,Cell #AY14,"17N 2891503 E, 511389 N",UTM,WGS84,1,250,389,species,A,A,A +Dichanthelium erectifolium,Erectleaf witchgrass,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,dicherec,Human Observation,2002-05-22,BICY,213,NA,25.7595,-81.0428,25.7604,-81.0449,WGS84,314,Cell #AI56,"17N 2849056 E, 495705 N",UTM,WGS84,1,280,213,species,A,A,A +Taxodium ascendens,Pond cypress,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,taxoasce,Human Observation,2002-09-17,BICY,222,NA,25.6988,-80.9736,25.6966,-80.974,WGS84,314,Cell #AP63,"17N 2842329 E, 502644 N",UTM,WGS84,1,200,222,species,A,A,A +Sisyrinchium angustifolium,Narroleaf blueeyed-grass,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,sisyangu,Human Observation,2003-03-04,BICY,562,NA,26.0403,-81.0942,26.042,-81.0956,WGS84,314,Cell #AD25,"17N 2880145 E, 490578 N",UTM,WGS84,1,320,562,species,A,A,A +Dichanthelium erectifolium,Erectleaf witchgrass,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,dicherec,Human Observation,2003-03-11,BICY,546,NA,26.1881,-81.0574,26.1859,-81.0576,WGS84,314,Cell #AH09,"17N 2896517 E, 494269 N",UTM,WGS84,1,190,546,species,A,A,A +Utricularia foliosa,Leafy bladderwort,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,utrifoli,Human Observation,2004-05-13,BICY,431,NA,25.9072,-81.2737,25.9078,-81.2714,WGS84,314,Cell #L40,"17N 2865437 E, 472583 N",UTM,WGS84,1,75,431,species,A,A,A +Pontederia cordata,Pickerelweed,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,pontcord,Human Observation,2003-05-22,BICY,523,NA,25.9615,-80.8461,25.963,-80.8442,WGS84,314,Cell #BC34,"17N 2871431 E, 515404 N",UTM,WGS84,1,50,523,species,A,A,A +Thelypteris kunthii,Southern shield fern,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,thelkunt,Human Observation,2003-03-13,BICY,634,NA,26.065,-81.0271,26.0629,-81.0261,WGS84,314,Cell #AK23,"17N 2882885 E, 497287 N",UTM,WGS84,1,160,634,species,A,A,A +Hydrolea corymbosa,Skyflower,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,hydrcory,Human Observation,2003-03-18,BICY,614,NA,25.8982,-81.1038,25.8962,-81.104,WGS84,314,Cell #AC41,"17N 2864411 E, 489601 N",UTM,WGS84,1,190,614,species,A,A,A +Melothria pendula,Creeping-cucumber,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,melopend,Human Observation,2004-05-05,BICY,330,NA,26.2506,-81.0295,26.2484,-81.0298,WGS84,314,Cell #AK02,"17N 2903435 E, 497051 N",UTM,WGS84,1,185,330,species,A,A,A +Eragrostis elliottii,Elliott's love grass,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,eragelli,Human Observation,2003-02-27,BICY,577,NA,25.9345,-80.9503,25.9324,-80.9514,WGS84,314,Cell #AR37,"17N 2868429 E, 504977 N",UTM,WGS84,1,210,577,species,A,A,A +Vaccinium myrsinites,Shiny blueberry,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,vaccmyrs,Human Observation,2004-03-24,BICY,411,NA,26.22,-81.0859,26.2213,-81.0839,WGS84,314,Cell #AE05,"17N 2900049 E, 491423 N",UTM,WGS84,1,30,411,species,A,A,A +Cladium jamaicense,"Saw-grass, Jamaica swamp sawgrass",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,cladjama,Human Observation,2002-09-18,BICY,224,NA,25.7079,-81.0433,25.7064,-81.0452,WGS84,314,Cell #AI62,"17N 2843334 E, 495652 N",UTM,WGS84,1,235,224,species,A,A,A +Piriqueta caroliniana,Pitted stripeseed,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,piricaro,Human Observation,2003-02-20,BICY,599,NA,25.9997,-81.1907,25.9983,-81.1925,WGS84,314,Cell #T30,"17N 2875659 E, 480919 N",UTM,WGS84,1,240,599,species,A,A,A +Diodia virginiana,"Buttonweed, Virginia buttonweed",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,diodvirg,Human Observation,2003-05-09,BICY,651,NA,25.8993,-81.0752,25.8992,-81.0729,WGS84,314,Cell #AF41,"17N 2864531 E, 492472 N",UTM,WGS84,1,85,651,species,A,A,A +Coreopsis leavenworthii,Leavenworth's tickseed,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,coreleav,Human Observation,2003-03-13,BICY,633,NA,26.0488,-81.0668,26.0487,-81.0641,WGS84,314,Cell #AG24,"17N 2881089 E, 493320 N",UTM,WGS84,1,100,633,species,A,A,A +Serenoa repens,Saw palmetto,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,sererepe,Human Observation,2004-03-11,BICY,398,NA,25.7817,-80.9812,25.7817,-80.9837,WGS84,314,Cell #AO54,"17N 2851513 E, 501882 N",UTM,WGS84,1,270,398,species,A,A,A +Vitis cinerea var. floridana,Florida grape,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,viticineflor,Human Observation,2002-05-21,BICY,217,NA,26.2511,-80.9297,26.25,-80.9279,WGS84,314,Cell #AU02,"17N 2903494 E, 507020 N",UTM,WGS84,1,130,217,species,A,A,A +Hyptis alata,"Musky mint, Clustered bushmint",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,hyptalat,Human Observation,2003-06-12,BICY,502,NA,25.8961,-81.1523,25.8982,-81.1514,WGS84,314,"Cell #X41, endpoint estimated using arcmap","17N 2864187 E, 484747 N",UTM,WGS84,1,15,502,species,A,A,A +Cephalanthus occidentalis,Common buttonbush,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,cephocci,Human Observation,2003-03-12,BICY,543,NA,26.0617,-81.0309,26.0631,-81.0327,WGS84,314,Cell #AJ23,"17N 2882518 E, 496908 N",UTM,WGS84,1,315,543,species,A,A,A +Blechnum serrulatum,"Swamp fern, Toothed midsorus fern",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,blecserr,Human Observation,2003-04-10,BICY,669,NA,26.0691,-81.1605,26.0687,-81.1629,WGS84,314,Cell #W22,"17N 2883351 E, 483950 N",UTM,WGS84,1,265,669,species,A,A,A +Dichanthelium commutatum,Variable witchgrass,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,dichcomm,Human Observation,2002-08-01,BICY,254,NA,26.1693,-81.2554,26.1694,-81.2578,WGS84,314,Cell #N11,"17N 2894454 E, 474478 N",UTM,WGS84,1,280,254,species,A,A,A +Crinum americanum,"Swamp-lily, Seven-sisters, String-lily",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,crinamer,Human Observation,2004-03-24,BICY,425,NA,25.9726,-81.3357,25.9744,-81.3339,WGS84,314,Cell #F33,"17N 2872694 E, 466400 N",UTM,WGS84,1,45,425,species,A,A,A +Saururus cernuus,Lizard's tail,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,saurcern,Human Observation,2002-05-09,BICY,182,NA,25.9254,-80.8441,25.927,-80.8422,WGS84,314,Cell #BC38,"17N 2867427 E, 515616 N",UTM,WGS84,1,50,182,species,A,A,A +Vitis rotundifolia,"Muscadine, Muscadine grape",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,vitirotu,Human Observation,2002-10-29,BICY,279,NA,26.1134,-81.2906,26.1113,-81.2902,WGS84,314,Cell #J17,"17N 2888274 E, 470944 N",UTM,WGS84,1,175,279,species,A,A,A +Nephrolepis exaltata,Wild Boston fern,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,nephexal,Human Observation,2004-06-16,BICY,335,NA,26.2329,-81.0986,26.2331,-81.0962,WGS84,314,Cell #AD04,"17N 2901479 E, 490153 N",UTM,WGS84,1,90,335,species,A,A,A +Encyclia tampensis,Florida butterfly orchid,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,encytamp,Human Observation,2004-03-24,BICY,371,NA,25.9769,-81.3355,25.9771,-81.333,WGS84,314,Cell #F32,"17N 2873174 E, 466418 N",UTM,WGS84,1,90,371,species,A,A,A +Vitis cinerea var. floridana,Florida grape,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,viticineflor,Human Observation,2003-03-13,BICY,739,NA,25.7616,-80.9307,25.7635,-80.9312,WGS84,314,Cell #AT56,"17N 2849280 E, 506953 N",UTM,WGS84,1,350,739,species,A,A,A +Elionurus tripsacoides,Pan-American balsamscale,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,eliotrip,Human Observation,2003-03-25,BICY,618,NA,25.944,-80.9871,25.946,-80.9862,WGS84,314,Cell #AO36,"17N 2869481 E, 501294 N",UTM,WGS84,1,20,618,species,A,A,A +Myrica cerifera,"Wax myrtle, Southern Bayberry",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,myriceri,Human Observation,2003-05-22,BICY,536,NA,25.7995,-81.1676,25.8013,-81.1668,WGS84,314,Cell #W52,"17N 2853490 E, 483199 N",UTM,WGS84,1,30,536,species,A,A,A +Aristida purpurascens,Arrowfeather threeawn,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,arispurp,Human Observation,2004-03-24,BICY,411,NA,26.22,-81.0859,26.2213,-81.0839,WGS84,314,Cell #AE05,"17N 2900049 E, 491423 N",UTM,WGS84,1,30,411,species,A,A,A +Chrysobalanus icaco,Coco-plum,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,chryicac,Human Observation,2003-03-25,BICY,618,NA,25.944,-80.9871,25.946,-80.9862,WGS84,314,Cell #AO36,"17N 2869481 E, 501294 N",UTM,WGS84,1,20,618,species,A,A,A +Rhynchospora colorata,Starrush whitetop,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,rhyncolo,Human Observation,2002-05-07,BICY,168,NA,25.8341,-81.0889,25.8317,-81.0883,WGS84,314,"Cell #AE48, W. of Loop Rd. S of Monroe","17N 2857310 E, 491088 N",UTM,WGS84,1,170,168,species,A,A,A +Phyllanthus caroliniensis subsp. saxicola,Rock Carolina leafflower,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,phylcarosaxi,Human Observation,2002-11-08,BICY,271,NA,25.7561,-81.0054,25.7563,-81.0064,WGS84,314,"Cell #AM57, origin estimated with ARCMap","17N 2848673 E, 499461 N",UTM,WGS84,1,280,271,species,A,A,A +Psychotria nervosa,Shiny-leaved wild-coffee,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,psycnerv,Human Observation,2004-05-07,BICY,297,NA,25.7238,-80.9174,25.7236,-80.9199,WGS84,314,"Cell #AV60, Hess Hammock","17N 2845103 E, 508290 N",UTM,WGS84,1,270,297,species,A,A,A +Rapanea punctata,"Myrsine, Colicwood",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,rapapunc,Human Observation,2003-03-04,BICY,561,NA,26.0296,-81.0943,26.0282,-81.0962,WGS84,314,Cell #AD27,"17N 2878960 E, 490566 N",UTM,WGS84,1,245,561,species,A,A,A +Bacopa caroliniana,"Lemon hyssop, Lemon bacopa, Blue waterhyssop",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,bacocaro,Human Observation,2003-04-29,BICY,607,NA,25.8642,-81.2501,25.8662,-81.252,WGS84,314,Cell #N45,"17N 2860672 E, 474942 N",UTM,WGS84,1,320,607,species,A,A,A +Paspalum monostachyum,Gulfdune paspalum,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,paspmono,Human Observation,2002-06-12,BICY,139,NA,26.0416,-81.0282,26.0437,-81.0284,WGS84,314,"Cell #AK25, Middle Pines, east of Cal Stone","17N 2880288 E, 497181 N",UTM,WGS84,1,355,139,species,A,A,A +Annona glabra,Pond-apple,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,annoglab,Human Observation,2004-05-04,BICY,343,NA,25.863,-81.1021,25.8608,-81.1019,WGS84,314,Cell #AC45,"17N 2860512 E, 489770 N",UTM,WGS84,1,100,343,species,A,A,A +Serenoa repens,Saw palmetto,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,sererepe,Human Observation,2003-03-04,BICY,563,NA,26.0403,-81.0942,26.0419,-81.0923,WGS84,314,Cell #AD25,"17N 2880145 E, 490578 N",UTM,WGS84,1,50,563,species,A,A,A +Thelypteris kunthii,Southern shield fern,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,thelkunt,Human Observation,2003-03-12,BICY,543,NA,26.0617,-81.0309,26.0631,-81.0327,WGS84,314,Cell #AJ23,"17N 2882518 E, 496908 N",UTM,WGS84,1,315,543,species,A,A,A +Hypericum cistifolium,Roundpod St. John's-wort,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,hypecist,Human Observation,2004-06-02,BICY,356,NA,25.9555,-81.0064,25.9541,-81.0043,WGS84,314,Cell #AM35,"17N 2870752 E, 499364 N",UTM,WGS84,1,135,356,species,A,A,A +Flaveria linearis,Narrowleaf yellowtops,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,flavline,Human Observation,2003-09-09,BICY,737,NA,26.1814,-81.244,26.1817,-81.2461,WGS84,314,Cell #O10,"17N 2895793 E, 475619 N",UTM,WGS84,1,290,737,species,A,A,A +Taxodium ascendens,Pond cypress,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,taxoasce,Human Observation,2004-03-11,BICY,399,NA,25.7817,-80.9812,25.7801,-80.9827,WGS84,314,Cell #AO54,"17N 2851513 E, 501882 N",UTM,WGS84,1,225,399,species,A,A,A +Vitis rotundifolia,"Muscadine, Muscadine grape",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,vitirotu,Human Observation,2002-07-31,BICY,195,NA,26.0499,-81.3429,26.0497,-81.3404,WGS84,314,"Cell #E24, Deep Lake","17N 2881252 E, 465701 N",UTM,WGS84,1,100,195,species,A,A,A +Pleopeltis polypodioides var. michauxiana,Resurrection fern,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,pleopolymich,Human Observation,2003-05-29,BICY,539,NA,25.7563,-80.9028,25.7583,-80.9018,WGS84,314,Cell #AW57,"17N 2848699 E, 509752 N",UTM,WGS84,1,35,539,species,A,A,A +Erigeron quercifolius,"Southern-fleabane, Oakleaf fleabane",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,erigquer,Human Observation,2004-04-07,BICY,438,NA,26.2498,-81.2265,26.2476,-81.2262,WGS84,314,Cell #Q02,"17N 2903369 E, 477380 N",UTM,WGS84,1,180,438,species,A,A,A +Serenoa repens,Saw palmetto,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,sererepe,Human Observation,2004-06-01,BICY,317,NA,25.9346,-81.0368,25.9348,-81.0343,WGS84,314,Cell #AJ37,"17N 2868446 E, 496319 N",UTM,WGS84,1,85,317,species,A,A,A +Muhlenbergia capillaris,"Muhlygrass, Hairawnmuhly",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,muhlcapi,Human Observation,2003-02-06,BICY,455,NA,25.9529,-81.3444,25.9541,-81.3422,WGS84,314,Cell #E35,"17N 2870515 E, 465524 N",UTM,WGS84,1,65,455,species,A,A,A +Eupatorium mikanioides,"Semaphore eupatorium, Semaphore thoroughwort",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,eupamika,Human Observation,2004-04-01,BICY,326,NA,26.179,-81.0835,26.1777,-81.0817,WGS84,314,Cell #AE10,"17N 2895514 E, 491661 N",UTM,WGS84,1,140,326,species,A,A,A +Ludwigia microcarpa,Smallfruit primrosewillow,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,ludwmicr,Human Observation,2003-09-10,BICY,729,NA,26.2428,-80.9525,26.243,-80.9549,WGS84,314,Cell #AR03,"17N 2902579 E, 504740 N",UTM,WGS84,1,275,729,species,A,A,A +Thelypteris kunthii,Southern shield fern,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,thelkunt,Human Observation,2003-11-26,BICY,474,NA,25.8255,-80.9092,25.8276,-80.9083,WGS84,314,Cell #AW49,"17N 2856359 E, 509099 N",UTM,WGS84,1,15,474,species,A,A,A +Phlebodium aureum,Golden polypody,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,phleaure,Human Observation,2002-08-02,BICY,199,NA,25.8494,-80.995,25.8502,-80.9974,WGS84,314,Cell #AN46,"17N 2859003 E, 500497 N",UTM,WGS84,1,295,199,species,A,A,A +Panicum virgatum,Switchgrass,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,panivirg,Human Observation,2003-04-17,BICY,664,NA,26.2321,-81.0449,26.2343,-81.0448,WGS84,314,Cell #AI04,"17N 2901387 E, 495513 N",UTM,WGS84,1,10,664,species,A,A,A +Tillandsia utriculata,"Giant wild-pine, Giant airplant",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,tillutri,Human Observation,2004-04-06,BICY,422,NA,25.7633,-80.9177,25.7614,-80.919,WGS84,314,Cell #AV56,"17N 2849471 E, 508257 N",UTM,WGS84,1,315,422,species,A,A,A +Eupatorium mikanioides,"Semaphore eupatorium, Semaphore thoroughwort",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,eupamika,Human Observation,2002-06-05,BICY,264,NA,26.0206,-81.1546,26.0206,-81.1546,WGS84,314,Cell #X28,"17N 2877975 E, 484532 N",UTM,WGS84,1,160,264,species,A,A,A +Pleopeltis polypodioides var. michauxiana,Resurrection fern,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,pleopolymich,Human Observation,2004-03-25,BICY,745,NA,26.21,-81.0892,26.2079,-81.0878,WGS84,314,Cell #AE07,"17N 2898939 E, 491088 N",UTM,WGS84,1,140,745,species,A,A,A +Nephrolepis exaltata,Wild Boston fern,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,nephexal,Human Observation,2003-06-18,BICY,696,NA,26.047,-81.1762,26.0461,-81.1739,WGS84,314,Cell #V25,"17N 2880903 E, 482375 N",UTM,WGS84,1,125,696,species,A,A,A +Smilax auriculata,Earleaf greenbrier,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,smilauri,Human Observation,2003-09-09,BICY,737,NA,26.1814,-81.244,26.1817,-81.2461,WGS84,314,Cell #O10,"17N 2895793 E, 475619 N",UTM,WGS84,1,290,737,species,A,A,A +Saccharum giganteum,Sugarcane plumegrass,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,saccgiga,Human Observation,2004-06-01,BICY,316,NA,25.9346,-81.0368,25.9352,-81.0391,WGS84,314,Cell #AJ37,"17N 2868446 E, 496319 N",UTM,WGS84,1,300,316,species,A,A,A +Rudbeckia hirta,Blackeyed susan,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,rudbhirt,Human Observation,2004-05-05,BICY,329,NA,26.2408,-81.0341,26.2394,-81.0359,WGS84,314,Cell #AJ03,"17N 2902357 E, 496596 N",UTM,WGS84,1,240,329,species,A,A,A +Cyperus haspan,Haspan flatsedge,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,cypehasp,Human Observation,2004-05-13,BICY,428,NA,25.8978,-81.2753,25.8964,-81.2736,WGS84,314,Cell #L41,"17N 2864400 E, 472424 N",UTM,WGS84,1,130,428,species,A,A,A +Spermacoce assurgens,Woodland false buttonweed,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,sperassu,Human Observation,2003-05-23,BICY,530,NA,25.8048,-80.9224,25.8066,-80.9227,WGS84,314,Cell #AU51,"17N 2854064 E, 507777 N",UTM,WGS84,1,5,530,species,A,A,A +Eupatorium serotinum,Lateflowering thoroughwort,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,eupasero,Human Observation,2004-05-06,BICY,341,NA,26.2422,-81.0507,26.24,-81.0504,WGS84,314,Cell #AH03,"17N 2902502 E, 494939 N",UTM,WGS84,1,175,341,species,A,A,A +Ruellia succulenta,Thickleaf wild petunia,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,ruelsucc,Human Observation,2002-07-17,BICY,163,NA,26.0432,-81.0379,26.0411,-81.0375,WGS84,314,"Cell #AJ25, Central Pines","17N 2880474 E, 496209 N",UTM,WGS84,1,180,163,species,A,A,A +Spiranthes odorata,"Fragrant lady's-tresses, Marsh lady's-tresses",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,spirodor,Human Observation,2004-06-08,BICY,348,NA,25.8547,-81.0005,25.8568,-81.0001,WGS84,314,Cell #AM46,"17N 2859588 E, 499945 N",UTM,WGS84,1,30,348,species,A,A,A +Acer rubrum,Red maple,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,acerrubr,Human Observation,2004-04-29,BICY,404,NA,25.8211,-81.0303,25.8192,-81.0318,WGS84,314,Cell #AJ50,"17N 2855868 E, 496959 N",UTM,WGS84,1,220,404,species,A,A,A +Randia aculeata,White indigoberry,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,randacul,Human Observation,2003-01-04,BICY,460,NA,26.2036,-80.9318,26.2058,-80.9315,WGS84,314,Cell #AT07,"17N 2898234 E, 506815 N",UTM,WGS84,1,10,460,species,A,A,A +Berchemia scandens,"rattan vine, Alabama supplejack",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,bercscan,Human Observation,2003-09-10,BICY,726,NA,26.2131,-81.3056,26.2109,-81.3057,WGS84,314,Cell #I06,"17N 2899315 E, 469471 N",UTM,WGS84,1,195,726,species,A,A,A +Magnolia virginiana,Sweet-bay,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,magnvirg,Human Observation,2003-11-26,BICY,474,NA,25.8255,-80.9092,25.8276,-80.9083,WGS84,314,Cell #AW49,"17N 2856359 E, 509099 N",UTM,WGS84,1,15,474,species,A,A,A +Thelypteris interrupta,"Interrupted maiden fern, Hottentot fern",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,thelinte,Human Observation,2004-06-16,BICY,335,NA,26.2329,-81.0986,26.2331,-81.0962,WGS84,314,Cell #AD04,"17N 2901479 E, 490153 N",UTM,WGS84,1,90,335,species,A,A,A +Nephrolepis exaltata,Wild Boston fern,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,nephexal,Human Observation,2002-08-09,BICY,260,NA,26.1786,-81.0048,26.18,-81.0071,WGS84,314,Cell #AM10,"17N 2895459 E, 499518 N",UTM,WGS84,1,285,260,species,A,A,A +Muhlenbergia capillaris,"Muhlygrass, Hairawnmuhly",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,muhlcapi,Human Observation,2003-03-25,BICY,618,NA,25.944,-80.9871,25.946,-80.9862,WGS84,314,Cell #AO36,"17N 2869481 E, 501294 N",UTM,WGS84,1,20,618,species,A,A,A +Hydrolea corymbosa,Skyflower,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,hydrcory,Human Observation,2002-11-05,BICY,272,NA,25.9062,-81.22,25.9078,-81.2214,WGS84,314,Cell #Q40,"17N 2865313 E, 477963 N",UTM,WGS84,1,325,272,species,A,A,A +Ipomoea sagittata,Everglades morningglory,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,ipomsagi,Human Observation,2004-03-30,BICY,391,NA,26.1527,-80.8913,26.1549,-80.891,WGS84,314,Cell #AX13,"17N 2892602 E, 510865 N",UTM,WGS84,1,10,391,species,A,A,A +Rhexia mariana,"Pale meadowbeauty, Maryland meadowbeauty",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,rhexmari,Human Observation,2003-05-03,BICY,652,NA,26.2534,-81.2022,26.2518,-81.2006,WGS84,314,Cell #S02,"17N 2903766 E, 479805 N",UTM,WGS84,1,145,652,species,A,A,A +Centella asiatica,"Coinwort, Spadeleaf",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,centasia,Human Observation,2002-05-31,BICY,129,NA,26.2159,-81.0498,26.2163,-81.0475,WGS84,314,"Cell #AIO6, Kissimmee Billy Area","17N 2899596 E, 495029 N",UTM,WGS84,1,80,129,species,A,A,A +Hydrocotyle,NA,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,hydrocotyle sp.,Human Observation,2003-04-29,BICY,734,NA,25.8842,-81.2758,25.8822,-81.2749,WGS84,314,Cell #L43,"17N 2862884 E, 472375 N",UTM,WGS84,1,170,734,genus,A,A,A +Panicum virgatum,Switchgrass,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,panivirg,Human Observation,2004-05-04,BICY,343,NA,25.863,-81.1021,25.8608,-81.1019,WGS84,314,Cell #AC45,"17N 2860512 E, 489770 N",UTM,WGS84,1,100,343,species,A,A,A +Panicum virgatum,Switchgrass,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,panivirg,Human Observation,2003-02-26,BICY,590,NA,26.045,-81.1655,26.0428,-81.1655,WGS84,314,Cell #W25,"17N 2880675 E, 483442 N",UTM,WGS84,1,190,590,species,A,A,A +Setaria parviflora,"Knotroot foxtail, Yellow bristlegrass",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,setaparv,Human Observation,2004-05-13,BICY,429,NA,25.8978,-81.2753,25.9001,-81.2749,WGS84,314,Cell #L41,"17N 2864400 E, 472424 N",UTM,WGS84,1,10,429,species,A,A,A +Bacopa caroliniana,"Lemon hyssop, Lemon bacopa, Blue waterhyssop",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,bacocaro,Human Observation,2003-02-05,BICY,468,NA,26.1795,-80.9405,26.1775,-80.9416,WGS84,314,Cell #AS10,"17N 2895569 E, 505946 N",UTM,WGS84,1,210,468,species,A,A,A +Rhynchospora microcarpa,Southern beaksedge,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,rhynmicr2,Human Observation,2003-07-02,BICY,707,NA,25.6812,-80.9505,25.6827,-80.9524,WGS84,314,Cell #AR65,"17N 2840382 E, 504964 N",UTM,WGS84,1,315,707,species,A,A,A +Ludwigia repens,Creeping primrosewillow,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,ludwrepe,Human Observation,2002-08-28,BICY,228,NA,26.0141,-80.8956,26.0134,-80.8981,WGS84,314,Cell #AX28,"17N 2877249 E, 510444 N",UTM,WGS84,1,260,228,species,A,A,A +Pluchea rosea,Rosy camphorweed,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,plucrose,Human Observation,2002-09-18,BICY,233,NA,25.7252,-81.0306,25.7256,-81.033,WGS84,314,Cell #AJ60,"17N 2845250 E, 496927 N",UTM,WGS84,1,290,233,species,A,A,A +Tillandsia paucifolia,"Twisted wild-pine, Potbelly airplant",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,tillpauc,Human Observation,2003-04-10,BICY,669,NA,26.0691,-81.1605,26.0687,-81.1629,WGS84,314,Cell #W22,"17N 2883351 E, 483950 N",UTM,WGS84,1,265,669,species,A,A,A +Ipomoea sagittata,Everglades morningglory,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,ipomsagi,Human Observation,2003-04-08,BICY,671,NA,26.0603,-81.165,26.0584,-81.1662,WGS84,314,Cell #W23,"17N 2882371 E, 483496 N",UTM,WGS84,1,210,671,species,A,A,A +Panicum rigidulum,Redtop panicum,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,panirigi,Human Observation,2003-09-10,BICY,727,NA,26.2131,-81.3056,26.2133,-81.3069,WGS84,314,Cell #I06,"17N 2899315 E, 469471 N",UTM,WGS84,1,240,727,species,A,A,A +Agalinis linifolia,Flaxleaf false foxglove,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,agallini,Human Observation,2003-03-25,BICY,690,NA,25.935,-80.9886,25.9338,-80.9864,WGS84,314,Cell #AO37,"17N 2868490 E, 501141 N",UTM,WGS84,1,125,690,species,A,A,A +Bacopa caroliniana,"Lemon hyssop, Lemon bacopa, Blue waterhyssop",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,bacocaro,Human Observation,2002-09-17,BICY,196,NA,25.7085,-80.9687,25.7096,-80.9668,WGS84,314,Cell #AQ62,"17N 2843408 E, 503144 N",UTM,WGS84,1,135,196,species,A,A,A +Ipomoea sagittata,Everglades morningglory,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,ipomsagi,Human Observation,2002-08-28,BICY,228,NA,26.0141,-80.8956,26.0134,-80.8981,WGS84,314,Cell #AX28,"17N 2877249 E, 510444 N",UTM,WGS84,1,260,228,species,A,A,A +Annona glabra,Pond-apple,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,annoglab,Human Observation,2004-04-15,BICY,386,NA,26.2539,-81.0377,26.2524,-81.0396,WGS84,314,Cell #AJ02,"17N 2903800 E, 496238 N",UTM,WGS84,1,235,386,species,A,A,A +Coreopsis leavenworthii,Leavenworth's tickseed,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,coreleav,Human Observation,2003-03-25,BICY,618,NA,25.944,-80.9871,25.946,-80.9862,WGS84,314,Cell #AO36,"17N 2869481 E, 501294 N",UTM,WGS84,1,20,618,species,A,A,A +Vitis rotundifolia,"Muscadine, Muscadine grape",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,vitirotu,Human Observation,2002-10-31,BICY,274,NA,25.9152,-81.2644,25.9163,-81.2664,WGS84,314,Cell #M39,"17N 2866314 E, 473518 N",UTM,WGS84,1,305,274,species,A,A,A +Pleopeltis polypodioides var. michauxiana,Resurrection fern,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,pleopolymich,Human Observation,2003-03-14,BICY,552,NA,26.2265,-81.2674,26.2243,-81.2672,WGS84,314,Cell #M05,"17N 2900793 E, 473289 N",UTM,WGS84,1,180,552,species,A,A,A +Andropogon glomeratus var. pumilus,Common bushy bluestem,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,andrglompumi,Human Observation,2004-06-17,BICY,333,NA,25.8815,-81.1742,25.8816,-81.1766,WGS84,314,Cell #V43,"17N 2862570 E, 482551 N",UTM,WGS84,1,260,333,species,A,A,A +Leersia hexandra,Southern cutgrass,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,leerhexa,Human Observation,2003-03-06,BICY,555,NA,26.2322,-81.3052,26.2299,-81.3059,WGS84,314,Cell #I04,"17N 2901439 E, 469519 N",UTM,WGS84,1,205,555,species,A,A,A +Panicum virgatum,Switchgrass,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,panivirg,Human Observation,2002-08-23,BICY,236,NA,25.8448,-81.2201,25.8471,-81.2204,WGS84,314,Cell #Q47,"17N 2858519 E, 477943 N",UTM,WGS84,1,0,236,species,A,A,A +Ludwigia microcarpa,Smallfruit primrosewillow,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,ludwmicr,Human Observation,2002-08-02,BICY,199,NA,25.8494,-80.995,25.8502,-80.9974,WGS84,314,Cell #AN46,"17N 2859003 E, 500497 N",UTM,WGS84,1,295,199,species,A,A,A +Flaveria linearis,Narrowleaf yellowtops,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,flavline,Human Observation,2002-10-29,BICY,290,NA,26.1255,-81.2857,26.1276,-81.2851,WGS84,314,Cell #K16,"17N 2889619 E, 471434 N",UTM,WGS84,1,25,290,species,A,A,A +Conoclinium coelestinum,Blue mistflower,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,conocoel,Human Observation,2004-04-14,BICY,421,NA,26.2176,-81.0845,26.219,-81.0864,WGS84,314,Cell #AE06,"17N 2899785 E, 491558 N",UTM,WGS84,1,310,421,species,A,A,A +Panicum virgatum,Switchgrass,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,panivirg,Human Observation,2003-04-04,BICY,678,NA,26.079,-81.098,26.0769,-81.097,WGS84,314,Cell #AD21,"17N 2884432 E, 490194 N",UTM,WGS84,1,165,678,species,A,A,A +Eupatorium mikanioides,"Semaphore eupatorium, Semaphore thoroughwort",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,eupamika,Human Observation,2002-10-29,BICY,291,NA,26.1255,-81.2857,26.1233,-81.2869,WGS84,314,Cell #K16,"17N 2889619 E, 471434 N",UTM,WGS84,1,210,291,species,A,A,A +Pluchea rosea,Rosy camphorweed,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,plucrose,Human Observation,2003-02-26,BICY,590,NA,26.045,-81.1655,26.0428,-81.1655,WGS84,314,Cell #W25,"17N 2880675 E, 483442 N",UTM,WGS84,1,190,590,species,A,A,A +Baccharis glomeruliflora,Silverling,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,baccglom,Human Observation,2003-05-02,BICY,512,NA,26.1068,-81.3197,26.1068,-81.3174,WGS84,314,Cell #H18,"17N 2887550 E, 468039 N",UTM,WGS84,1,100,512,species,A,A,A +Thelypteris kunthii,Southern shield fern,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,thelkunt,Human Observation,2002-08-09,BICY,261,NA,26.1786,-81.0048,26.1769,-81.0032,WGS84,314,Cell #AM10,"17N 2895459 E, 499518 N",UTM,WGS84,1,145,261,species,A,A,A +Pennisetum purpureum,"Napier grass, Elephantgrass",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,pennpurp,Human Observation,2002-11-08,BICY,288,NA,25.748,-80.9377,25.75,-80.9372,WGS84,314,Cell #AT58,"17N 2847783 E, 506247 N",UTM,WGS84,1,20,288,species,A,A,A +Flaveria linearis,Narrowleaf yellowtops,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,flavline,Human Observation,2004-06-03,BICY,352,NA,26.0243,-81.0653,26.0258,-81.067,WGS84,314,Cell #AG27,"17N 2878374 E, 493467 N",UTM,WGS84,1,335,352,species,A,A,A +Proserpinaca palustris,"Mermaid weed, Marsh mermaidweed",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,prospalu,Human Observation,2004-04-14,BICY,421,NA,26.2176,-81.0845,26.219,-81.0864,WGS84,314,Cell #AE06,"17N 2899785 E, 491558 N",UTM,WGS84,1,310,421,species,A,A,A +Rhynchospora microcarpa,Southern beaksedge,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,rhynmicr2,Human Observation,2003-03-26,BICY,693,NA,25.6592,-81.0263,25.6585,-81.024,WGS84,314,Cell #AK68,"17N 2837939 E, 497357 N",UTM,WGS84,1,110,693,species,A,A,A +Salix caroliniana,Coastal Plain willow,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,salicaro,Human Observation,2002-08-01,BICY,254,NA,26.1693,-81.2554,26.1694,-81.2578,WGS84,314,Cell #N11,"17N 2894454 E, 474478 N",UTM,WGS84,1,280,254,species,A,A,A +Rhynchospora microcarpa,Southern beaksedge,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,rhynmicr2,Human Observation,2004-03-17,BICY,378,NA,26.186,-81.343,26.1854,-81.3406,WGS84,314,Cell #E09,"17N 2896326 E, 465728 N",UTM,WGS84,1,110,378,species,A,A,A +Harrisella porrecta,Needleroot airplant orchid,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,harrporr,Human Observation,2003-04-16,BICY,660,NA,26.2547,-81.0622,26.2528,-81.0628,WGS84,314,Cell #AG02,"17N 2903897 E, 493787 N",UTM,WGS84,1,200,660,species,A,A,A +Sabal palmetto,Cabbage palm,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,sabapalm,Human Observation,2004-06-02,BICY,355,NA,26.007,-81.0699,26.0092,-81.0692,WGS84,314,Cell #AG29,"17N 2876456 E, 493009 N",UTM,WGS84,1,30,355,species,A,A,A +Eryngium baldwinii,Baldwin's eryngo,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,erynbald,Human Observation,2004-05-05,BICY,328,NA,26.2408,-81.0341,26.243,-81.0343,WGS84,314,Cell #AJ03,"17N 2902357 E, 496596 N",UTM,WGS84,1,0,328,species,A,A,A +Epidendrum rigidum,Stiff-flower star orchid,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,epidrigi,Human Observation,2004-04-29,BICY,404,NA,25.8211,-81.0303,25.8192,-81.0318,WGS84,314,Cell #AJ50,"17N 2855868 E, 496959 N",UTM,WGS84,1,220,404,species,A,A,A +Myrica cerifera,"Wax myrtle, Southern Bayberry",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,myriceri,Human Observation,2004-06-16,BICY,335,NA,26.2329,-81.0986,26.2331,-81.0962,WGS84,314,Cell #AD04,"17N 2901479 E, 490153 N",UTM,WGS84,1,90,335,species,A,A,A +Fuirena breviseta,Saltmarsh umbrellasedge,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,fuirbrev,Human Observation,2003-03-04,BICY,560,NA,26.0296,-81.0943,26.0296,-81.0918,WGS84,314,Cell #AD27,"17N 2878960 E, 490566 N",UTM,WGS84,1,90,560,species,A,A,A +Smilax laurifolia,"Catbrier, Laurel greenbrier, Bamboo vine",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,smillaur,Human Observation,2003-09-10,BICY,727,NA,26.2131,-81.3056,26.2133,-81.3069,WGS84,314,Cell #I06,"17N 2899315 E, 469471 N",UTM,WGS84,1,240,727,species,A,A,A +Vitis rotundifolia,"Muscadine, Muscadine grape",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,vitirotu,Human Observation,2003-03-05,BICY,568,NA,26.0167,-81.1132,26.0165,-81.1107,WGS84,314,Cell #AB28,"17N 2877539 E, 488676 N",UTM,WGS84,1,95,568,species,A,A,A +Hypericum tetrapetalum,Fourpetal St. John's-wort,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,hypetetr,Human Observation,2004-03-24,BICY,411,NA,26.22,-81.0859,26.2213,-81.0839,WGS84,314,Cell #AE05,"17N 2900049 E, 491423 N",UTM,WGS84,1,30,411,species,A,A,A +Pluchea rosea,Rosy camphorweed,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,plucrose,Human Observation,2003-03-18,BICY,617,NA,25.9166,-81.1158,25.9143,-81.1156,WGS84,314,Cell #AB39,"17N 2866448 E, 488404 N",UTM,WGS84,1,185,617,species,A,A,A +Aristida purpurascens,Arrowfeather threeawn,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,arispurp,Human Observation,2003-02-21,BICY,452,NA,26.0064,-80.9098,26.0048,-80.908,WGS84,314,Cell #AW29,"17N 2876396 E, 509026 N",UTM,WGS84,1,140,452,species,A,A,A +Cyperus haspan,Haspan flatsedge,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,cypehasp,Human Observation,2002-10-31,BICY,276,NA,25.8982,-81.257,25.8975,-81.255,WGS84,314,Cell #N41,"17N 2864436 E, 474256 N",UTM,WGS84,1,110,276,species,A,A,A +Bacopa caroliniana,"Lemon hyssop, Lemon bacopa, Blue waterhyssop",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,bacocaro,Human Observation,2003-05-15,BICY,643,NA,25.9071,-81.3325,25.9056,-81.3342,WGS84,314,Cell #F40,"17N 2865443 E, 466694 N",UTM,WGS84,1,230,643,species,A,A,A +Tillandsia fasciculata var. densispica,"Stiff-leaved wild-pine, Cardinal airplant",Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,tillfascdens,Human Observation,2002-08-29,BICY,251,NA,25.784300000000002,-81.0757,25.7827,-81.0774,WGS84,314,Cell #AF54,"17N 2851797 E, 492406 N",UTM,WGS84,1,230,251,species,A,A,A +Panicum rigidulum,Redtop panicum,Guide to the Vascular Plants of Florida. Second Edition. Richard P. Wunderlin and Bruce F. Hansen. 2003. University Press of Florida,panirigi,Human Observation,2002-05-22,BICY,213,NA,25.7595,-81.0428,25.7604,-81.0449,WGS84,314,Cell #AI56,"17N 2849056 E, 495705 N",UTM,WGS84,1,280,213,species,A,A,A From 268e856e984492620b2ccf6c6355a7bf2f3d30e9 Mon Sep 17 00:00:00 2001 From: Rob Baker Date: Thu, 8 Feb 2024 14:53:08 -0700 Subject: [PATCH 05/33] add vignettes for DRR use --- vignettes/a01_DRR_Background.Rmd | 53 +++ vignettes/a02_Using_DRR_Template.Rmd | 478 +++++++++++++++++++++++++++ 2 files changed, 531 insertions(+) create mode 100644 vignettes/a01_DRR_Background.Rmd create mode 100644 vignettes/a02_Using_DRR_Template.Rmd diff --git a/vignettes/a01_DRR_Background.Rmd b/vignettes/a01_DRR_Background.Rmd new file mode 100644 index 0000000..d65b993 --- /dev/null +++ b/vignettes/a01_DRR_Background.Rmd @@ -0,0 +1,53 @@ +--- +title: "Getting Started with NPS DRRs" +output: rmarkdown::html_vignette +vignette: > + %\VignetteIndexEntry{Getting Started with NPS DRRs} + %\VignetteEnging{knitr::rmarkdown} + %\VignetteEncoding{UTF-8} +--- + +```{r setup, include=FALSE} +knitr::opts_chunk$set(echo = FALSE) + +# Learn more about creating websites with Distill at: +# https://rstudio.github.io/distill/website.html + +``` + +[![Lifecycle: experimental](https://img.shields.io/badge/lifecycle-experimental-orange.svg)](https://www.tidyverse.org/lifecycle/#experimental) + + + +# DRRs: Background + +[Purpose and Scope of Data Release Reports](PurposeAndScope.html) + +This is a template is for use when drafting Data Release Reports. DRRs are created by the National Park Service and provide detailed descriptions of valuable research datasets, including the methods used to collect the data and technical analyses supporting the quality of the measurements. Data Release Reports focus on helping others reuse data rather than presenting results, testing hypotheses, or presenting new interpretations and in-depth analyses. + +# About this Template +This template contains an rmarkdown template file, default folder structure for project files, and all the necessary template files to generate an unformatted .docx file. Upon submission for publication, the .docx file will be ingested by EXstyles, converted to an .xml file and fully formatted according to NPS branding upon final publication. The goal of this process is to relieve data producers, managers, and scientists from the burden of formatting and allow them to focus primarily on content. Consequently, the .docx generated for the publication process may not be visually appealing. The content, however, should focus on quality control, of NPS data packages and evaluate their of utility. + +# How to Start a DRR + +New projects can be established using this template by downloading a zip file of the template and associated files and folders from: [This Link](https://github.com/nationalparkservice/DRR_Template/zipball/master) + +1. [How to Use this Template](HowToUseThisTemplate.html) line-by-line instructions and descriptions for how to use the DRR Template. + +2. [The DRR_Template](https://github.com/nationalparkservice/DRR_Template/blob/master/DRR_to_docx.Rmd) the file you make changes to to generate a DRR. Note: this is not a stand-alone file. To create a DRR please download the [zipped template](https://github.com/nationalparkservice/DRR_Template/zipball/master) with all associated files and folders. + +3. [Bibtex reference file](https://github.com/nationalparkservice/DRR_Template/raw/master/reference.bib) is used if you want to automate your citations. Add each citation in bibtex format to this file and save it. Add in-text citations to the DRR Template and your References section will automatically be generated for you when you knit the .Rmd to .docx. You should still visually check the final format in the .docx file for accuracy, completion, and formatting. If you would prefer to manually format your citations, feel free to continue doing so. + +4. [DRR_Report](https://github.com/nationalparkservice/DRR_Template/raw/master/DRR_to_docx.docx) an example of the .docx output file that takes into account your edits and changes to DRR_to_docx.Rmd (assuming you have saved and/or knit the .Rmd to .docx format in Rstudio). + +# Examples +More will be provided as they are published. The following examples are post-formatting and should be used as examples for content generation only. + +1. [DRR for tabular (csv) datasets](DRAFT_2019_Report_NationalMeanDailyFlowsDataSummary.html) of hydrologic data used for calculating hydrologic metrics as a part of the national Environmental Settings monitoring protocol. + +2. [DRR for geospatial (file geodatabase) data](NPS-NRSS-DRR-2020-1.html) continuing custom areas of analysis used for Environmental Settings monitoring protocol. Report created in Microsoft Word and ported to the template. + +# Tips, FAQs, and Errata +(coming soon) + + diff --git a/vignettes/a02_Using_DRR_Template.Rmd b/vignettes/a02_Using_DRR_Template.Rmd new file mode 100644 index 0000000..af08982 --- /dev/null +++ b/vignettes/a02_Using_DRR_Template.Rmd @@ -0,0 +1,478 @@ +--- +title: "Using the DRR Template" +output: rmarkdown::html_vignette +vignette: > + %\VignetteIndexEntry{Using the DRR Template} + %\VignetteEnging{knitr::rmarkdown} + %\VignetteEncoding{UTF-8} +--- + +```{r setup, include=FALSE} +RRpackages <- c('markdown', # links to Sundown rendering library + 'rmarkdown', # newer rendering via pandoc + 'pander', # alternative renderer for markdown, + # plus better tables than just knitr + 'knitr', + "devtools", + "R.rsp", # dynamic generation of scientific reports + "rmdHelpers", # misc from Mark Peterson + # thisFileName() thisFile_knit() + 'yaml', # format data into markdown + 'kableExtra', + 'rmdformats', # templates including automatic ToC, + # also use_bookdown() + 'htmltools' # + ) + +inst <- RRpackages %in% installed.packages() +if (length(RRpackages[!inst]) > 0) { + install.packages(RRpackages[!inst], repos = "http://cran.us.r-project.org", dep = TRUE) +} +lapply(RRpackages, library, character.only = TRUE) + +knitr::opts_chunk$set( + echo = TRUE, + comment = " ", + dev = "svg", + tidy.opts = list(width.cutoff = 60), + tidy = TRUE + ) + +``` + +# Overview + +Data Release Reports (DRRs) are created by the National Park Service and +provide detailed descriptions of valuable research datasets, including +the methods used to collect the data and technical analyses supporting +the quality of the measurements. Data Release Reports focus on helping +others reuse data, rather than presenting results, testing hypotheses, +or presenting new interpretations, methods or in-depth analyses. + +DRRs are intended to document the processing of fully-QAed data to their +final (QCed) form in a reproducible and transparent manner. DRRs +document the data collection methods and quality standards used to +prepare and review data prior to release. DRRs present the quality of +resultant data in the context of fitness for their intended use. + +Each DRR cites source and resultant datasets that are published +concurrently and cross-referenced. Associated datasets are made publicly +available with the exception of data that must be protected from release +as per NPS and park-specific policies. + +Data packages that are published concurrently with DRRs are intended to +be independently citable scientific works that can serve as the basis +for subsequent analysis and reporting by NPS or third parties. + +# Project Set-up + +The Template is not a stand-alone file but instead has multiple +associated and dependent files. New projects can be established using by +downloading the Zip file associated with the latest +[release](https://github.com/nationalparkservice/DRR_Template/releases) +of the DRR template repository on GitHub. + +## Folder Structure + +General directory contents are as follows (Figure 1): + +```{r fig1, echo=FALSE, out.width="30%", fig.align="center", fig.cap="Standard project directory structure for Data Release Reports"} +#knitr::include_graphics("FileStructure.PNG") +``` + +- `input` This is the only location (other than the template script + itself) where you you should manually change or edit files. This is + where data files you need to supply should be placed. + + - `figures` If you have figures that are not generated as part of + running this template, place those files here. + +- `output` Do not edit these files. This is where you can find your + final products. Edits to files in this folder will not be + incorporated when you knit the DRR_to_docx.rmd file. Any edits you + make to files in this directory may be overwritten when you knit the + template. + +- `temp` Do not edit these files. These are files that are either used + or generated during when you knit the DRR_to_docx.rmd template. They + may include graphics, text, or data. + +- You can safely ignore most of the other folders (including `docs`, + `my-website`, `vignettes`,`.github`) and files (including + `_config.yml`, `.gitignore`, `.Rhistory`, `index.html`, and + `national-park-service-DRR.csl`). + +# Reproducible Reports + +The following is for users who are using the `DRR_to_docx.rmd` template +file to generate a data release report using RMarkdown. + +## Standard Code Chunks + +In addition to the report outline and a description of content for each +section, the template includes four standard code chunks. + +**YAML Header:** + +The YAML header helps format the DRR. You should not need to edit any of +the YAML header. + +**R code chunks:** + +- `user_edited_parameters`. A series of parameters that are used in + the creation of the DRR and may be re-used in metadata and + associated data package construction. You will need to edit these + parameters for each DRR. + + - `title`. The title of the Data Release Report. + - `reportNumber`. This is optional, and should *only* be included + if publishing in the semi-official DRR series. Set to NULL if + there is no reportNumber. + - `DRR_DSRefID`. This is the DataStore reference ID for the + report. + - `authorNames`. A list of the author's names. + - `authorAffiliations`. A list of the author's affiliations. The + order of author affiliations must match the order of the authors + in the `authorNames` list. Note that the entirety of each + affiliation is enclosed in a single set of quotations. Line + breaks are indicated with the
tag. Do not worry about + indentation or word wrapping. If two authors have the same + affiliation, list the affiliation twice. + - `authorORCID`. A list of ORCID iDs for each author in the format + "xxxx-xxxx-xxxx-xxxx". If an author does not have an ORCID iD, + specify NA (no quotes). The order of ORCID iDs (and NAs) must + correspond to the order of authors in the `authorNames` list. + Future iterations of the DRR Template will pull ORCID iDs from + metadata and eventually from Active Directory. See + [ORCID](https://www.orcid.org/) for more information about ORCID + iDs or to register an ORCID iD. + - `DRRabstract`. The abstract for the DRR (which may be distinct + from the data package abstract). Pay careful attention to + non-standard characters, line breaks, carriage returns, and + curly-quotes. You may find it useful to write the abstract in + NotePad or some other text editor and NOT a word processor (such + as Microsoft Word). Indicate line breaks with \n and a space + between paragraphs - should you want them - using \n\n. The + Abstract should succinctly describe the study, the assay(s) + performed, the resulting data, and their reuse potential, but + should not make any claims regarding new scientific findings. No + references are allowed in this section. A good suggested length + for abstracts is less than 250 words. + - `dataPackageRefID`. DataStore reference ID for the data package + associated with this report. You must have at least one data + package. Eventually, we will automate importing much of this + information from metadata and include the ability to describe + multiple data packages in a single DRR. + - `dataPackageTitle`. The title of the data package. Must match + the title on DataStore (and metadata). + - `dataPackageDescription`. A short title/subtitle or short + description for the data package. Must match the data package + metadata. + - `dataPackageDOI`. Auto-generated, no need to edit or update. + This is the data package DOI. It is based on the DataStore + reference number. + - `dataPackage_fileNames`. List the file names in your data + package. Do NOT include metadata files. For example, include + "my_data.csv" but do NOT include "my_metadata.xml". + - `dataPackage_fileSizes`. List the approximate size of each data + file. Make sure the order of the file sizes corresponds to the + order of file names in `dataPackage_fileNames`. + `dataPackage_fileDescript`. A short description of the + corresponding data file that helps distinguish it from other + data files. A good guideline is 10 words or less. This will be + used in a table summary table so brevity is a priority. If you + have already created metadata for your data package in EML + format, this should be the same text as found in the + "entityDescription" element for each data file. + +- `setup`. Most users will not need to edit this code chunk. There is + one code snippet for loading packages; the `RRpackages` section is a + suite of packages that are used to assist with reproducible + reporting. You may not need these for your report, but we have + included them as part of the base recommended packages. If you plan + to perform you QC as part of the DRR construction process, you can + add a second code snipped to import necessary packages for your QC + process here. + +- `title_do_not_edit`. These parameters are auto-generated based on + either the EML you supplied (when that becomes an option) or the + information you've already supplied under "user-edited-parameters". + You really should not need to edit these parameters. + +- `authors_do_not_edit`. There is no need to edit this chunk. This + writes the author names, ORCID iDs, and affiliations to the .docx + document based on information supplied in user-edited-parameters. + +- `LoadData`. Any datasets you need to load can go here. For most + people these datasets are used to generate summary statistics on + proportions of data that were flagged as accepted (A) accepted, + estimated (AE) and rejected (R) during the quality control process. + +- `FileTable`. Do not edit. Generates a table of file names, sizes, + and descriptions in the data package being described by the DRR. + +- `dataFlaggingTable`. This sample code provides a summary table + defining the suggested data flagging codes. There is no need to edit + this table. + +- `Listing`. Appendix A, by default is the code listing. This will + generate all code used in generating the report and data packages. + In most cases, code listing is not required. If all QA/QC processes + and data manipulations were performed elsewhere, you should cite + that code (in the methods and references) and leave the "listing + code chunk with the default settings of eval=FALSE and echo=FALSE. + If you have developed custom scripts, you can add those to DataStore + with the reference "Script" and cite them in the DRR. + +- `session-info` is the information about the versions of R and + packages used in generating the report. In most cases, you do not + need to report session info (leave the session-info code chunk + parameters in their default state: eval=FALSE). Session and version + information is only necessary if you have set the "Listing" code + chunk in appendix A to eval=TRUE. In that case, change the "session + info" code chunk parameters to eval=TRUE. + +## Citations + +### Automating Citations + +To automate citations, add the citation in bibtex format to the file +"references.bib". You can manually copy and paste the bibtex for each +reference in, or you can search for it from within Rstudio. From within +Rstudio, make sure you are editing this document using the "Visual" view +(as opposed to "Source"). From the "Insert" drop-down menu, select "\@ +Citation..." (shortcut: Cntrl-Shift-F8). This will open a Graphical User +Interface (GUI) tool where you can view all the citations in your +reference.bib file as well as search multiple databases for references, +automatically insert the bibtex for the reference into your +references.bib file (and customize the unique identifier if you'd like) +and insert the in-text citation into the DRR template. + +```{r fig2, echo=FALSE, out.width="75%", fig.align="center", fig.cap="Adding Citations - Source vs. Visual editing of the Template and how to access the citation manager."} +#knitr::include_graphics("RMD_vis_source.png") +``` + +```{r fig3, echo=FALSE, out.width="75%", fig.align="center", fig.cap="Adding Citations - Using the citation manager."} +#knitr::include_graphics("R_citation_manager.png") +``` + +Once a reference is in your references.bib file, using the Visual view +of the template you can simply type the '\@' symbol and select which +reference to insert in the text. + +If you need to edit how the citation is displayed after inserting it +into the text, switch back to the "Source" view. Each bibtex citation +should start with a unique identifier; the example reference in the +supplied references.bib file has the unique identifier +"@article{Scott1994,". Using the "Source" view in Rstudio, insert the +reference in your text, by combining the "at" symbol with the portion of +the unique identifier after the curly bracket: @Scott1994 . + +| Syntax | Result | +|------------------------------------|-----------------------------------| +| `@Scott1994` concludes that ... | Scott et al., 1994 concludes that ... | +| `@Scott1994[p.33]` concludes that ... | Scott (1994, p.33) concludes that ... | +| ... end of sentence `[@Scott1994]`. | ... end of sentence (Scott et al., 1994). | +| ... end of sentence `[see @Scott1994,p.33]`. | ... end of sentence (see Scott et al. 1994,p.33). | +| delineate multiple authors with colon: `[@Scott1994; @aberdeen1958]` | delineate multiple authors with colon: (Scott et al., 1994; Aberdeen, 1958) | +| Scott et al. conclude that .... [-@Scott1994] | Scott et al. conclude that . . . (1994) | + + +The full citation, properly formatted, will be included in a "References" section at the end of the rendered MS Word document. . . though it is also worth visually +inspecting the .docx for citation completeness and formatting. + +### Manual citations + +If you would like to format your citations manually, please feel free to +do so. Make sure to look at the References section for how to +properly format each citation type. + +# Editing the Text + +The following text in the body of the DRR template will need to be +edited to customize it to each data package. + +### Data Records + +This is a required section and consists of two subheadings: + +- **Data inputs** - an optional subsection used to describe datasets + that the data package is based on if it is a re-analysis, + reorganization, or re-integration of prevously existing data sets. + +- **Summary of datasts created** - this is a required section used to + explain each data record associated with the work (for instance, a + data package), including the DOI indicating where this information + is stored. It shoudl also provide an overview of the data files and + their formats. Each external data record should be cited. + +Sample text is included that uses r code to incorporate previously +specified parameters such as the data package title, file names, and +DOI. + +A code for a sample table summarizing the contents of the data package +(except the metadata) is provided. + +### Data Quality + +This is a required section. and the text includes multiple suggested +text elements and code for an example table defining data flagging +codes. Near future development here will incorporate additional optional +tables to summarize the data quality based on the flags in the data +sets. + +### Usage Notes + +This is a required section that should contain brief instructions to +assist other researchers with reuse of the data. This may include +discussion of software packages (with appropriate citations) that are +suitable for analysing the assay data files, suggested downstream +processing steps (e.g. normalization, etc.), or tips for integrating or +comparing the data records with other datasets. Authors are encouraged +to provide code, programs or data-processing workflows if they may help +others understand or use the data. + +### Methods + +This is a required section that cites previous methods used but should +also be detailed enough in describing data production including the +experimental design, data acquisition assays, and any computational +processing (e.g. normalization, QA, QC) such that others can understand +the methods without referring to associated publications. + +Optional sub-sections within the methods include: + +- **Data Collection and Sampling** +- **Additional Data Sources** +- **Data Processing** +- **Code availability** + +### References + +This required section includes full bibliographic references for each +paper, chapter, book, data package, dataset, protocol, etc cited within +the DRR. + +There are numerous examples of proper formatting for each of these. +Future versions of the DRR will enable automatic reference formatting +given a correctly formatted bibtex file with the references (.bib). + +## Figures + +Figures should be inserted using code chunks in all cases so that figure +settings can be set in the chunk header. The chunk header should at a +minimum set the fig.align parameter to “center” and the specify the +figure caption (fig.cap parameter). Inserting figures this way will +ensure that the caption is properly formatted and it will apply copy the +caption to the figure’s “alt text” tag, making it 508-compliant. + +For example: + +```` markdown +`r ''````{r fig2, echo=FALSE, out.width="70%", fig.align="center", fig.cap="Example general workflow to incude in the methods section."} +knitr::include_graphics("ProcessingWorkflow.png") +``` +```` + +Results in: + +```{r fig4, echo=FALSE, out.width="70%", fig.align="center", fig.cap="Example general workflow to incude in the methods section."} +#knitr::include_graphics("ProcessingWorkflow.png") +``` + +## Tables + +Tables should be created using the kable function. Specifying the +caption in the kable function call (as opposed to inline markdown text) +will ensure that the caption is appropriately formatted. + +For example: + +```` markdown +`r ''````{r Table2, echo=FALSE} +c1<-c("Protocol1","Protocol2","Protocol3") +c2<-c("Park Unit 1","Park Unit 2","Park Unit 3") +c3<-c("Site 1","Site 2","Site 3") +c4<-c("Date 1","Date 2","Date 3") +c5<-c("GEOXXXXX","GEOXXXXX","GEOXXXXX") +Table2<-data.frame(c1,c2,c3,c4,c5) + +kable(Table2, + col.names=c("Subjects","Park Units","Locations","Sampling Dates","Data"), + caption="**Table 1.** Monitoring study example Data Records table.") %>% + kable_styling(bootstrap_options = c("striped", "hover", "condensed", "responsive"),full_width=F) +``` +```` + +Results in: + +```{r Table2, echo=FALSE} +c1<-c("Protocol1","Protocol2","Protocol3") +c2<-c("Park Unit 1","Park Unit 2","Park Unit 3") +c3<-c("Site 1","Site 2","Site 3") +c4<-c("Date 1","Date 2","Date 3") +c5<-c("GEOXXXXX","GEOXXXXX","GEOXXXXX") +Table2<-data.frame(c1,c2,c3,c4,c5) + +kable(Table2, + col.names=c("Subjects","Park Units","Locations","Sampling Dates","Data"), + caption="**Table 1.** Monitoring study example Data Records table.") %>% + kable_styling(bootstrap_options = c("striped", "hover", "condensed", "responsive"),full_width=F) +``` + +# Publishing DRRs + +## Report Numbers + +Because data release reports and associated data packages are +cross-referential, report numbers are typically assigned early in data +processing and quality evaluation. + +- **DataStore Reference Numbers.** When developing a report and data + packages, DataStore references should be created as early in the + process as practicable. While the report and data packages are in + development, these should not be activated. + +- **Report Numbers.** If you are planning to publish a Data Release + Report with an official DRR number, please contact the IMD Deputy + Chief with the DataStore reference number associated with the DRR. + +- **Persistent Identifiers.** Digital object identifiers (DOIs) will + be assigned to all DRRs and concurrently published data packages. + DOIs will resolve to a DataStore Reference; DOIs are reserved when a + draft reference is initiated in DataStore. They are not activated + until the publication process, including relevant review, is + complete. + +DRR DOIs have the format: + +Data package DOIs have the format: + +Where the "xxxxxx" is the 7-digit DataStore reference number. + +## Liability Statements + +Under no circumstances should reports and associated data packages or +metadata published in the DRR series contain disclaimers or text that +suggests that the work does not meet scientific integrity or information +quality standards of the National Park Service. The following +disclaimers are suitable for use, depending on whether the data are +provisional or final (or approved or certified). + +> **For approved & published data sets:** "Unless otherwise stated, all +> data, metadata and related materials are considered to satisfy the +> quality standards relative to the purpose for which the data were +> collected. Although these data and associated metadata have been +> reviewed for accuracy and completeness and approved for release by the +> National Park Service Inventory and Monitoring Division, no warranty +> expressed or implied is made regarding the display or utility of the +> data for other purposes, nor on all computer systems, nor shall the +> act of distribution constitute any such warranty." + +> **For provisional data:** "The data you have secured from the National +> Park Service (NPS) database identified as [database name] have not +> received approval for release by the NPS Inventory and Monitoring +> Division, and as such are provisional and subject to revision. The +> data are released on the condition that neither the NPS nor the U.S. +> Government shall be held liable for any damages resulting from its +> authorized or unauthorized use." From e04508a38c8aa9e1c75b08a6260ec9ee82ed497f Mon Sep 17 00:00:00 2001 From: Rob Baker Date: Thu, 8 Feb 2024 14:53:26 -0700 Subject: [PATCH 06/33] update via devtools::document and pkgdown --- docs/404.html | 15 + docs/LICENSE-text.html | 13 + docs/LICENSE.html | 13 + docs/articles/QCkit.html | 15 + docs/articles/a01_DRR_Background.html | 208 +++++ docs/articles/a02_Using_DRR_Template.html | 661 +++++++++++++++ .../bsTable-3.3.7/bootstrapTable.js | 801 ++++++++++++++++++ .../bsTable-3.3.7/bootstrapTable.min.css | 14 + .../kePrint-0.0.1/kePrint.js | 8 + .../lightable-0.0.1/lightable.css | 272 ++++++ docs/articles/index.html | 19 +- docs/authors.html | 13 + docs/index.html | 15 + docs/news/index.html | 13 + docs/pkgdown.yml | 4 +- docs/reference/DC_col_check.html | 13 + docs/reference/QCkit-package.html | 13 + docs/reference/check_dc_cols.html | 13 + docs/reference/check_te.html | 13 + docs/reference/convert_datetime_format.html | 13 + docs/reference/convert_long_to_utm.html | 13 + docs/reference/convert_utm_to_ll.html | 13 + docs/reference/create_datastore_script.html | 13 + docs/reference/fix_utc_offset.html | 13 + docs/reference/fuzz_location.html | 13 + docs/reference/get_custom_flags.html | 13 + docs/reference/get_dc_flags.html | 13 + docs/reference/get_df_flags.html | 13 + docs/reference/get_dp_flags.html | 13 + docs/reference/get_elevation.html | 13 + docs/reference/get_park_polygon.html | 13 + docs/reference/get_taxon_rank.html | 13 + docs/reference/get_utm_zone.html | 13 + docs/reference/index.html | 13 + docs/reference/long2UTM.html | 13 + docs/reference/order_cols.html | 13 + docs/reference/replace_blanks.html | 13 + docs/reference/te_check.html | 13 + docs/reference/utm_to_ll.html | 13 + docs/reference/validate_coord.html | 13 + docs/sitemap.xml | 6 + .../skeleton/skeleton.Rmd | 2 +- 42 files changed, 2414 insertions(+), 3 deletions(-) create mode 100644 docs/articles/a01_DRR_Background.html create mode 100644 docs/articles/a02_Using_DRR_Template.html create mode 100644 docs/articles/a02_Using_DRR_Template_files/bsTable-3.3.7/bootstrapTable.js create mode 100644 docs/articles/a02_Using_DRR_Template_files/bsTable-3.3.7/bootstrapTable.min.css create mode 100644 docs/articles/a02_Using_DRR_Template_files/kePrint-0.0.1/kePrint.js create mode 100644 docs/articles/a02_Using_DRR_Template_files/lightable-0.0.1/lightable.css diff --git a/docs/404.html b/docs/404.html index 5be2d8c..1524df3 100644 --- a/docs/404.html +++ b/docs/404.html @@ -44,6 +44,21 @@
  • Reference
  • +
  • Changelog
  • diff --git a/docs/LICENSE-text.html b/docs/LICENSE-text.html index 4337d4b..b053670 100644 --- a/docs/LICENSE-text.html +++ b/docs/LICENSE-text.html @@ -28,6 +28,19 @@
  • Reference
  • +
  • Changelog
  • diff --git a/docs/LICENSE.html b/docs/LICENSE.html index 63e5820..79ca434 100644 --- a/docs/LICENSE.html +++ b/docs/LICENSE.html @@ -28,6 +28,19 @@
  • Reference
  • +
  • Changelog
  • diff --git a/docs/articles/QCkit.html b/docs/articles/QCkit.html index 2276dd5..e3cd71b 100644 --- a/docs/articles/QCkit.html +++ b/docs/articles/QCkit.html @@ -45,6 +45,21 @@
  • Reference
  • +
  • Changelog
  • diff --git a/docs/articles/a01_DRR_Background.html b/docs/articles/a01_DRR_Background.html new file mode 100644 index 0000000..a90167b --- /dev/null +++ b/docs/articles/a01_DRR_Background.html @@ -0,0 +1,208 @@ + + + + + + + +Getting Started with NPS DRRs • QCkit + + + + + + + + + + + + +
    +
    + + + + +
    +
    + + + + + +

    Lifecycle: experimental

    +
    +

    DRRs: Background +

    +

    Purpose and Scope of Data Release +Reports

    +

    This is a template is for use when drafting Data Release Reports. +DRRs are created by the National Park Service and provide detailed +descriptions of valuable research datasets, including the methods used +to collect the data and technical analyses supporting the quality of the +measurements. Data Release Reports focus on helping others reuse data +rather than presenting results, testing hypotheses, or presenting new +interpretations and in-depth analyses.

    +
    +
    +

    About this Template +

    +

    This template contains an rmarkdown template file, default folder +structure for project files, and all the necessary template files to +generate an unformatted .docx file. The file will be ingested by +EXstyles, converted to an .xml file and fully formatted according to NPS +branding upon final publication. The goal of this process is to relieve +data producers, managers, and scientists from the burden of formatting +and allow them to focus primarily on content. The content should +document the collection, processing, quality control, of NPS data +packages and evaluate their of utility.

    +

    This template is under active development to improve style and 508 +compliance.

    +
    +
    +

    How to Start a DRR +

    +

    New projects can be established using this template by downloading a +zip file of the template and associated files and folders from: This +Link

    +
      +
    1. How to Use this Template +line-by-line instructions and descriptions for how to use the DRR +Template.

    2. +
    3. The +DRR_Template the file you make changes to to generate a DRR. Note: +this is not a stand-alone file. To create a DRR please download the zipped +template with all associated files and folders.

    4. +
    5. Bibtex +reference file is used if you want to automate your citations. Add +each citation in bibtex format to this file and save it. Add in-text +citations to the DRR Template and your References section will +automatically be generated for you when you knit the .Rmd to .docx. You +should still visually check the final format in the .docx file for +accuracy, completion, and formatting. If you would prefer to manually +format your citations, feel free to continue doing so.

    6. +
    7. DRR_Report +an example of the .docx output file that takes into account your edits +and changes to DRR_to_docx.Rmd (assuming you have saved and/or knit the +.Rmd to .docx format in Rstudio).

    8. +
    +
    +
    +

    Examples +

    +

    More will be provided as they are published. The following examples +are post-formatting and should be used as examples for content +generation only.

    +
      +
    1. DRR for +tabular (csv) datasets of hydrologic data used for calculating +hydrologic metrics as a part of the national Environmental Settings +monitoring protocol.

    2. +
    3. DRR for geospatial (file +geodatabase) data continuing custom areas of analysis used for +Environmental Settings monitoring protocol. Report created in Microsoft +Word and ported to the template.

    4. +
    +
    +
    +

    Tips, FAQs, and Errata +

    +

    (coming soon)

    +
    +
    + + + +
    + + + +
    + +
    +

    +

    Site built with pkgdown 2.0.7.

    +
    + +
    +
    + + + + + + + + diff --git a/docs/articles/a02_Using_DRR_Template.html b/docs/articles/a02_Using_DRR_Template.html new file mode 100644 index 0000000..18adf6c --- /dev/null +++ b/docs/articles/a02_Using_DRR_Template.html @@ -0,0 +1,661 @@ + + + + + + + +Using the DRR Template • QCkit + + + + + + + + + + + + +
    +
    + + + + +
    + +
    +
    + + + + +
    +

    Overview +

    +

    Data Release Reports (DRRs) are created by the National Park Service +and provide detailed descriptions of valuable research datasets, +including the methods used to collect the data and technical analyses +supporting the quality of the measurements. Data Release Reports focus +on helping others reuse data, rather than presenting results, testing +hypotheses, or presenting new interpretations, methods or in-depth +analyses.

    +

    DRRs are intended to document the processing of fully-QAed data to +their final (QCed) form in a reproducible and transparent manner. DRRs +document the data collection methods and quality standards used to +prepare and review data prior to release. DRRs present the quality of +resultant data in the context of fitness for their intended use.

    +

    Each DRR cites source and resultant datasets that are published +concurrently and cross-referenced. Associated datasets are made publicly +available with the exception of data that must be protected from release +as per NPS and park-specific policies.

    +

    Data packages that are published concurrently with DRRs are intended +to be independently citable scientific works that can serve as the basis +for subsequent analysis and reporting by NPS or third parties.

    +
    +
    +

    Project Set-up +

    +

    The Template is not a stand-alone file but instead has multiple +associated and dependent files. New projects can be established using by +downloading the Zip file associated with the latest release +of the DRR template repository on GitHub.

    +
    +

    Folder Structure +

    +

    General directory contents are as follows (Figure 1):

    +
      +
    • +

      input This is the only location (other than the +template script itself) where you you should manually change or edit +files. This is where data files you need to supply should be placed.

      +
        +
      • +figures If you have figures that are not generated as +part of running this template, place those files here.
      • +
      +
    • +
    • output Do not edit these files. This is where you +can find your final products. Edits to files in this folder will not be +incorporated when you knit the DRR_to_docx.rmd file. Any edits you make +to files in this directory may be overwritten when you knit the +template.

    • +
    • temp Do not edit these files. These are files that +are either used or generated during when you knit the DRR_to_docx.rmd +template. They may include graphics, text, or data.

    • +
    • You can safely ignore most of the other folders (including +docs, my-website, +vignettes,.github) and files (including +_config.yml, .gitignore, +.Rhistory, index.html, and +national-park-service-DRR.csl).

    • +
    +
    +
    +
    +

    Reproducible Reports +

    +

    The following is for users who are using the +DRR_to_docx.rmd template file to generate a data release +report using RMarkdown.

    +
    +

    Standard Code Chunks +

    +

    In addition to the report outline and a description of content for +each section, the template includes four standard code chunks.

    +

    YAML Header:

    +

    The YAML header helps format the DRR. You should not need to edit any +of the YAML header.

    +

    R code chunks:

    +
      +
    • +

      user_edited_parameters. A series of parameters that +are used in the creation of the DRR and may be re-used in metadata and +associated data package construction. You will need to edit these +parameters for each DRR.

      +
        +
      • +title. The title of the Data Release Report.
      • +
      • +reportNumber. This is optional, and should +only be included if publishing in the semi-official DRR series. +Set to NULL if there is no reportNumber.
      • +
      • +DRR_DSRefID. This is the DataStore reference ID for the +report.
      • +
      • +authorNames. A list of the author’s names.
      • +
      • +authorAffiliations. A list of the author’s +affiliations. The order of author affiliations must match the order of +the authors in the authorNames list. Note that the entirety +of each affiliation is enclosed in a single set of quotations. Line +breaks are indicated with the
        tag. Do not worry about indentation +or word wrapping. If two authors have the same affiliation, list the +affiliation twice.
      • +
      • +authorORCID. A list of ORCID iDs for each author in the +format “xxxx-xxxx-xxxx-xxxx”. If an author does not have an ORCID iD, +specify NA (no quotes). The order of ORCID iDs (and NAs) must correspond +to the order of authors in the authorNames list. Future +iterations of the DRR Template will pull ORCID iDs from metadata and +eventually from Active Directory. See ORCID for more information about ORCID +iDs or to register an ORCID iD.
      • +
      • +DRRabstract. The abstract for the DRR (which may be +distinct from the data package abstract). Pay careful attention to +non-standard characters, line breaks, carriage returns, and +curly-quotes. You may find it useful to write the abstract in NotePad or +some other text editor and NOT a word processor (such as Microsoft +Word). Indicate line breaks with and a space between paragraphs - should +you want them - using . The Abstract should succinctly describe the +study, the assay(s) performed, the resulting data, and their reuse +potential, but should not make any claims regarding new scientific +findings. No references are allowed in this section. A good suggested +length for abstracts is less than 250 words.
      • +
      • +dataPackageRefID. DataStore reference ID for the data +package associated with this report. You must have at least one data +package. Eventually, we will automate importing much of this information +from metadata and include the ability to describe multiple data packages +in a single DRR.
      • +
      • +dataPackageTitle. The title of the data package. Must +match the title on DataStore (and metadata).
      • +
      • +dataPackageDescription. A short title/subtitle or short +description for the data package. Must match the data package +metadata.
      • +
      • +dataPackageDOI. Auto-generated, no need to edit or +update. This is the data package DOI. It is based on the DataStore +reference number.
      • +
      • +dataPackage_fileNames. List the file names in your data +package. Do NOT include metadata files. For example, include +“my_data.csv” but do NOT include “my_metadata.xml”.
      • +
      • +dataPackage_fileSizes. List the approximate size of +each data file. Make sure the order of the file sizes corresponds to the +order of file names in dataPackage_fileNames. +dataPackage_fileDescript. A short description of the +corresponding data file that helps distinguish it from other data files. +A good guideline is 10 words or less. This will be used in a table +summary table so brevity is a priority. If you have already created +metadata for your data package in EML format, this should be the same +text as found in the “entityDescription” element for each data +file.
      • +
      +
    • +
    • setup. Most users will not need to edit this code +chunk. There is one code snippet for loading packages; the +RRpackages section is a suite of packages that are used to +assist with reproducible reporting. You may not need these for your +report, but we have included them as part of the base recommended +packages. If you plan to perform you QC as part of the DRR construction +process, you can add a second code snipped to import necessary packages +for your QC process here.

    • +
    • title_do_not_edit. These parameters are +auto-generated based on either the EML you supplied (when that becomes +an option) or the information you’ve already supplied under +“user-edited-parameters”. You really should not need to edit these +parameters.

    • +
    • authors_do_not_edit. There is no need to edit this +chunk. This writes the author names, ORCID iDs, and affiliations to the +.docx document based on information supplied in +user-edited-parameters.

    • +
    • LoadData. Any datasets you need to load can go here. +For most people these datasets are used to generate summary statistics +on proportions of data that were flagged as accepted (A) accepted, +estimated (AE) and rejected (R) during the quality control +process.

    • +
    • FileTable. Do not edit. Generates a table of file +names, sizes, and descriptions in the data package being described by +the DRR.

    • +
    • dataFlaggingTable. This sample code provides a +summary table defining the suggested data flagging codes. There is no +need to edit this table.

    • +
    • Listing. Appendix A, by default is the code listing. +This will generate all code used in generating the report and data +packages. In most cases, code listing is not required. If all QA/QC +processes and data manipulations were performed elsewhere, you should +cite that code (in the methods and references) and leave the “listing +code chunk with the default settings of eval=FALSE and echo=FALSE. If +you have developed custom scripts, you can add those to DataStore with +the reference”Script” and cite them in the DRR.

    • +
    • session-info is the information about the versions +of R and packages used in generating the report. In most cases, you do +not need to report session info (leave the session-info code chunk +parameters in their default state: eval=FALSE). Session and version +information is only necessary if you have set the “Listing” code chunk +in appendix A to eval=TRUE. In that case, change the “session info” code +chunk parameters to eval=TRUE.

    • +
    +
    +
    +

    Citations +

    +
    +

    Automating Citations +

    +

    To automate citations, add the citation in bibtex format to the file +“references.bib”. You can manually copy and paste the bibtex for each +reference in, or you can search for it from within Rstudio. From within +Rstudio, make sure you are editing this document using the “Visual” view +(as opposed to “Source”). From the “Insert” drop-down menu, select “@ +Citation…” (shortcut: Cntrl-Shift-F8). This will open a Graphical User +Interface (GUI) tool where you can view all the citations in your +reference.bib file as well as search multiple databases for references, +automatically insert the bibtex for the reference into your +references.bib file (and customize the unique identifier if you’d like) +and insert the in-text citation into the DRR template.

    +

    Once a reference is in your references.bib file, using the Visual +view of the template you can simply type the ‘@’ symbol and select which +reference to insert in the text.

    +

    If you need to edit how the citation is displayed after inserting it +into the text, switch back to the “Source” view. Each bibtex citation +should start with a unique identifier; the example reference in the +supplied references.bib file has the unique identifier “@article{Scott1994,”. Using the “Source” view in +Rstudio, insert the reference in your text, by combining the “at” symbol +with the portion of the unique identifier after the curly bracket: @Scott1994 .

    + ++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    SyntaxResult
    +@Scott1994 concludes that …Scott et al., 1994 concludes that …
    +@Scott1994[p.33] concludes that …Scott (1994, p.33) concludes that …
    … end of sentence [@Scott1994].… end of sentence (Scott et al., 1994).
    … end of sentence [see @Scott1994,p.33].… end of sentence (see Scott et al. 1994,p.33).
    delineate multiple authors with colon: +[@Scott1994; @aberdeen1958] +delineate multiple authors with colon: (Scott et al., 1994; +Aberdeen, 1958)
    Scott et al. conclude that …. [-@Scott1994] +Scott et al. conclude that . . . (1994)
    +

    The full citation, properly formatted, will be included in a +“References” section at the end of the rendered MS Word document. . . +though it is also worth visually inspecting the .docx for citation +completeness and formatting.

    +
    +
    +

    Manual citations +

    +

    If you would like to format your citations manually, please feel free +to do so. Make sure to look at the References section for how to +properly format each citation type.

    +
    +
    +
    +
    +

    Editing the Text +

    +

    The following text in the body of the DRR template will need to be +edited to customize it to each data package.

    +
    +

    Data Records +

    +

    This is a required section and consists of two subheadings:

    +
      +
    • Data inputs - an optional subsection used to +describe datasets that the data package is based on if it is a +re-analysis, reorganization, or re-integration of prevously existing +data sets.

    • +
    • Summary of datasts created - this is a required +section used to explain each data record associated with the work (for +instance, a data package), including the DOI indicating where this +information is stored. It shoudl also provide an overview of the data +files and their formats. Each external data record should be +cited.

    • +
    +

    Sample text is included that uses r code to incorporate previously +specified parameters such as the data package title, file names, and +DOI.

    +

    A code for a sample table summarizing the contents of the data +package (except the metadata) is provided.

    +
    +
    +

    Data Quality +

    +

    This is a required section. and the text includes multiple suggested +text elements and code for an example table defining data flagging +codes. Near future development here will incorporate additional optional +tables to summarize the data quality based on the flags in the data +sets.

    +
    +
    +

    Usage Notes +

    +

    This is a required section that should contain brief instructions to +assist other researchers with reuse of the data. This may include +discussion of software packages (with appropriate citations) that are +suitable for analysing the assay data files, suggested downstream +processing steps (e.g. normalization, etc.), or tips for integrating or +comparing the data records with other datasets. Authors are encouraged +to provide code, programs or data-processing workflows if they may help +others understand or use the data.

    +
    +
    +

    Methods +

    +

    This is a required section that cites previous methods used but +should also be detailed enough in describing data production including +the experimental design, data acquisition assays, and any computational +processing (e.g. normalization, QA, QC) such that others can understand +the methods without referring to associated publications.

    +

    Optional sub-sections within the methods include:

    +
      +
    • Data Collection and Sampling
    • +
    • Additional Data Sources
    • +
    • Data Processing
    • +
    • Code availability
    • +
    +
    +
    +

    References +

    +

    This required section includes full bibliographic references for each +paper, chapter, book, data package, dataset, protocol, etc cited within +the DRR.

    +

    There are numerous examples of proper formatting for each of these. +Future versions of the DRR will enable automatic reference formatting +given a correctly formatted bibtex file with the references (.bib).

    +
    +
    +

    Figures +

    +

    Figures should be inserted using code chunks in all cases so that +figure settings can be set in the chunk header. The chunk header should +at a minimum set the fig.align parameter to “center” and the specify the +figure caption (fig.cap parameter). Inserting figures this way will +ensure that the caption is properly formatted and it will apply copy the +caption to the figure’s “alt text” tag, making it 508-compliant.

    +

    For example:

    +
    ```{r fig2, echo=FALSE, out.width="70%", fig.align="center", fig.cap="Example general workflow to incude in the methods section."} 
    +knitr::include_graphics("ProcessingWorkflow.png")
    +```
    +

    Results in:

    +
    +
    +

    Tables +

    +

    Tables should be created using the kable function. Specifying the +caption in the kable function call (as opposed to inline markdown text) +will ensure that the caption is appropriately formatted.

    +

    For example:

    +
    ```{r Table2, echo=FALSE}
    +c1<-c("Protocol1","Protocol2","Protocol3")
    +c2<-c("Park Unit 1","Park Unit 2","Park Unit 3")
    +c3<-c("Site 1","Site 2","Site 3")
    +c4<-c("Date 1","Date 2","Date 3")
    +c5<-c("GEOXXXXX","GEOXXXXX","GEOXXXXX")
    +Table2<-data.frame(c1,c2,c3,c4,c5)
    +
    +kable(Table2, 
    +      col.names=c("Subjects","Park Units","Locations","Sampling Dates","Data"),
    +      caption="**Table 1.** Monitoring study example Data Records table.") %>%
    +  kable_styling(bootstrap_options = c("striped", "hover", "condensed", "responsive"),full_width=F)
    +```
    +

    Results in:

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +Table 1. Monitoring study example Data Records table. +
    +Subjects + +Park Units + +Locations + +Sampling Dates + +Data +
    +Protocol1 + +Park Unit 1 + +Site 1 + +Date 1 + +GEOXXXXX +
    +Protocol2 + +Park Unit 2 + +Site 2 + +Date 2 + +GEOXXXXX +
    +Protocol3 + +Park Unit 3 + +Site 3 + +Date 3 + +GEOXXXXX +
    +
    +
    +
    +

    Publishing DRRs +

    +
    +

    Report Numbers +

    +

    Because data release reports and associated data packages are +cross-referential, report numbers are typically assigned early in data +processing and quality evaluation.

    +
      +
    • DataStore Reference Numbers. When developing a +report and data packages, DataStore references should be created as +early in the process as practicable. While the report and data packages +are in development, these should not be activated.

    • +
    • Report Numbers. If you are planning to publish a +Data Release Report with an official DRR number, please contact the IMD +Deputy Chief with the DataStore reference number associated with the +DRR.

    • +
    • Persistent Identifiers. Digital object +identifiers (DOIs) will be assigned to all DRRs and concurrently +published data packages. DOIs will resolve to a DataStore Reference; +DOIs are reserved when a draft reference is initiated in DataStore. They +are not activated until the publication process, including relevant +review, is complete.

    • +
    +

    DRR DOIs have the format: https://doi.org/10.36967/xxxxxxx

    +

    Data package DOIs have the format: https://doi.org/10.57830/xxxxxxx

    +

    Where the “xxxxxx” is the 7-digit DataStore reference number.

    +
    +
    +

    Liability Statements +

    +

    Under no circumstances should reports and associated data packages or +metadata published in the DRR series contain disclaimers or text that +suggests that the work does not meet scientific integrity or information +quality standards of the National Park Service. The following +disclaimers are suitable for use, depending on whether the data are +provisional or final (or approved or certified).

    +
    +

    For approved & published data sets: “Unless +otherwise stated, all data, metadata and related materials are +considered to satisfy the quality standards relative to the purpose for +which the data were collected. Although these data and associated +metadata have been reviewed for accuracy and completeness and approved +for release by the National Park Service Inventory and Monitoring +Division, no warranty expressed or implied is made regarding the display +or utility of the data for other purposes, nor on all computer systems, +nor shall the act of distribution constitute any such warranty.”

    +
    +
    +

    For provisional data: “The data you have secured +from the National Park Service (NPS) database identified as [database +name] have not received approval for release by the NPS Inventory and +Monitoring Division, and as such are provisional and subject to +revision. The data are released on the condition that neither the NPS +nor the U.S. Government shall be held liable for any damages resulting +from its authorized or unauthorized use.”

    +
    +
    +
    +
    + + + +
    + + + +
    + +
    +

    +

    Site built with pkgdown 2.0.7.

    +
    + +
    +
    + + + + + + + + diff --git a/docs/articles/a02_Using_DRR_Template_files/bsTable-3.3.7/bootstrapTable.js b/docs/articles/a02_Using_DRR_Template_files/bsTable-3.3.7/bootstrapTable.js new file mode 100644 index 0000000..0c83d3b --- /dev/null +++ b/docs/articles/a02_Using_DRR_Template_files/bsTable-3.3.7/bootstrapTable.js @@ -0,0 +1,801 @@ +/* ======================================================================== + * Bootstrap: tooltip.js v3.4.1 + * https://getbootstrap.com/docs/3.4/javascript/#tooltip + * Inspired by the original jQuery.tipsy by Jason Frame + * ======================================================================== + * Copyright 2011-2019 Twitter, Inc. + * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) + * ======================================================================== */ + ++function ($) { + 'use strict'; + + var DISALLOWED_ATTRIBUTES = ['sanitize', 'whiteList', 'sanitizeFn'] + + var uriAttrs = [ + 'background', + 'cite', + 'href', + 'itemtype', + 'longdesc', + 'poster', + 'src', + 'xlink:href' + ] + + var ARIA_ATTRIBUTE_PATTERN = /^aria-[\w-]*$/i + + var DefaultWhitelist = { + // Global attributes allowed on any supplied element below. + '*': ['class', 'dir', 'id', 'lang', 'role', ARIA_ATTRIBUTE_PATTERN], + a: ['target', 'href', 'title', 'rel'], + area: [], + b: [], + br: [], + col: [], + code: [], + div: [], + em: [], + hr: [], + h1: [], + h2: [], + h3: [], + h4: [], + h5: [], + h6: [], + i: [], + img: ['src', 'alt', 'title', 'width', 'height'], + li: [], + ol: [], + p: [], + pre: [], + s: [], + small: [], + span: [], + sub: [], + sup: [], + strong: [], + u: [], + ul: [] + } + + /** + * A pattern that recognizes a commonly useful subset of URLs that are safe. + * + * Shoutout to Angular 7 https://github.com/angular/angular/blob/7.2.4/packages/core/src/sanitization/url_sanitizer.ts + */ + var SAFE_URL_PATTERN = /^(?:(?:https?|mailto|ftp|tel|file):|[^&:/?#]*(?:[/?#]|$))/gi + + /** + * A pattern that matches safe data URLs. Only matches image, video and audio types. + * + * Shoutout to Angular 7 https://github.com/angular/angular/blob/7.2.4/packages/core/src/sanitization/url_sanitizer.ts + */ + var DATA_URL_PATTERN = /^data:(?:image\/(?:bmp|gif|jpeg|jpg|png|tiff|webp)|video\/(?:mpeg|mp4|ogg|webm)|audio\/(?:mp3|oga|ogg|opus));base64,[a-z0-9+/]+=*$/i + + function allowedAttribute(attr, allowedAttributeList) { + var attrName = attr.nodeName.toLowerCase() + + if ($.inArray(attrName, allowedAttributeList) !== -1) { + if ($.inArray(attrName, uriAttrs) !== -1) { + return Boolean(attr.nodeValue.match(SAFE_URL_PATTERN) || attr.nodeValue.match(DATA_URL_PATTERN)) + } + + return true + } + + var regExp = $(allowedAttributeList).filter(function (index, value) { + return value instanceof RegExp + }) + + // Check if a regular expression validates the attribute. + for (var i = 0, l = regExp.length; i < l; i++) { + if (attrName.match(regExp[i])) { + return true + } + } + + return false + } + + function sanitizeHtml(unsafeHtml, whiteList, sanitizeFn) { + if (unsafeHtml.length === 0) { + return unsafeHtml + } + + if (sanitizeFn && typeof sanitizeFn === 'function') { + return sanitizeFn(unsafeHtml) + } + + // IE 8 and below don't support createHTMLDocument + if (!document.implementation || !document.implementation.createHTMLDocument) { + return unsafeHtml + } + + var createdDocument = document.implementation.createHTMLDocument('sanitization') + createdDocument.body.innerHTML = unsafeHtml + + var whitelistKeys = $.map(whiteList, function (el, i) { return i }) + var elements = $(createdDocument.body).find('*') + + for (var i = 0, len = elements.length; i < len; i++) { + var el = elements[i] + var elName = el.nodeName.toLowerCase() + + if ($.inArray(elName, whitelistKeys) === -1) { + el.parentNode.removeChild(el) + + continue + } + + var attributeList = $.map(el.attributes, function (el) { return el }) + var whitelistedAttributes = [].concat(whiteList['*'] || [], whiteList[elName] || []) + + for (var j = 0, len2 = attributeList.length; j < len2; j++) { + if (!allowedAttribute(attributeList[j], whitelistedAttributes)) { + el.removeAttribute(attributeList[j].nodeName) + } + } + } + + return createdDocument.body.innerHTML + } + + // TOOLTIP PUBLIC CLASS DEFINITION + // =============================== + + var Tooltip = function (element, options) { + this.type = null + this.options = null + this.enabled = null + this.timeout = null + this.hoverState = null + this.$element = null + this.inState = null + + this.init('tooltip', element, options) + } + + Tooltip.VERSION = '3.4.1' + + Tooltip.TRANSITION_DURATION = 150 + + Tooltip.DEFAULTS = { + animation: true, + placement: 'top', + selector: false, + template: '', + trigger: 'hover focus', + title: '', + delay: 0, + html: false, + container: false, + viewport: { + selector: 'body', + padding: 0 + }, + sanitize : true, + sanitizeFn : null, + whiteList : DefaultWhitelist + } + + Tooltip.prototype.init = function (type, element, options) { + this.enabled = true + this.type = type + this.$element = $(element) + this.options = this.getOptions(options) + this.$viewport = this.options.viewport && $(document).find($.isFunction(this.options.viewport) ? this.options.viewport.call(this, this.$element) : (this.options.viewport.selector || this.options.viewport)) + this.inState = { click: false, hover: false, focus: false } + + if (this.$element[0] instanceof document.constructor && !this.options.selector) { + throw new Error('`selector` option must be specified when initializing ' + this.type + ' on the window.document object!') + } + + var triggers = this.options.trigger.split(' ') + + for (var i = triggers.length; i--;) { + var trigger = triggers[i] + + if (trigger == 'click') { + this.$element.on('click.' + this.type, this.options.selector, $.proxy(this.toggle, this)) + } else if (trigger != 'manual') { + var eventIn = trigger == 'hover' ? 'mouseenter' : 'focusin' + var eventOut = trigger == 'hover' ? 'mouseleave' : 'focusout' + + this.$element.on(eventIn + '.' + this.type, this.options.selector, $.proxy(this.enter, this)) + this.$element.on(eventOut + '.' + this.type, this.options.selector, $.proxy(this.leave, this)) + } + } + + this.options.selector ? + (this._options = $.extend({}, this.options, { trigger: 'manual', selector: '' })) : + this.fixTitle() + } + + Tooltip.prototype.getDefaults = function () { + return Tooltip.DEFAULTS + } + + Tooltip.prototype.getOptions = function (options) { + var dataAttributes = this.$element.data() + + for (var dataAttr in dataAttributes) { + if (dataAttributes.hasOwnProperty(dataAttr) && $.inArray(dataAttr, DISALLOWED_ATTRIBUTES) !== -1) { + delete dataAttributes[dataAttr] + } + } + + options = $.extend({}, this.getDefaults(), dataAttributes, options) + + if (options.delay && typeof options.delay == 'number') { + options.delay = { + show: options.delay, + hide: options.delay + } + } + + if (options.sanitize) { + options.template = sanitizeHtml(options.template, options.whiteList, options.sanitizeFn) + } + + return options + } + + Tooltip.prototype.getDelegateOptions = function () { + var options = {} + var defaults = this.getDefaults() + + this._options && $.each(this._options, function (key, value) { + if (defaults[key] != value) options[key] = value + }) + + return options + } + + Tooltip.prototype.enter = function (obj) { + var self = obj instanceof this.constructor ? + obj : $(obj.currentTarget).data('bs.' + this.type) + + if (!self) { + self = new this.constructor(obj.currentTarget, this.getDelegateOptions()) + $(obj.currentTarget).data('bs.' + this.type, self) + } + + if (obj instanceof $.Event) { + self.inState[obj.type == 'focusin' ? 'focus' : 'hover'] = true + } + + if (self.tip().hasClass('in') || self.hoverState == 'in') { + self.hoverState = 'in' + return + } + + clearTimeout(self.timeout) + + self.hoverState = 'in' + + if (!self.options.delay || !self.options.delay.show) return self.show() + + self.timeout = setTimeout(function () { + if (self.hoverState == 'in') self.show() + }, self.options.delay.show) + } + + Tooltip.prototype.isInStateTrue = function () { + for (var key in this.inState) { + if (this.inState[key]) return true + } + + return false + } + + Tooltip.prototype.leave = function (obj) { + var self = obj instanceof this.constructor ? + obj : $(obj.currentTarget).data('bs.' + this.type) + + if (!self) { + self = new this.constructor(obj.currentTarget, this.getDelegateOptions()) + $(obj.currentTarget).data('bs.' + this.type, self) + } + + if (obj instanceof $.Event) { + self.inState[obj.type == 'focusout' ? 'focus' : 'hover'] = false + } + + if (self.isInStateTrue()) return + + clearTimeout(self.timeout) + + self.hoverState = 'out' + + if (!self.options.delay || !self.options.delay.hide) return self.hide() + + self.timeout = setTimeout(function () { + if (self.hoverState == 'out') self.hide() + }, self.options.delay.hide) + } + + Tooltip.prototype.show = function () { + var e = $.Event('show.bs.' + this.type) + + if (this.hasContent() && this.enabled) { + this.$element.trigger(e) + + var inDom = $.contains(this.$element[0].ownerDocument.documentElement, this.$element[0]) + if (e.isDefaultPrevented() || !inDom) return + var that = this + + var $tip = this.tip() + + var tipId = this.getUID(this.type) + + this.setContent() + $tip.attr('id', tipId) + this.$element.attr('aria-describedby', tipId) + + if (this.options.animation) $tip.addClass('fade') + + var placement = typeof this.options.placement == 'function' ? + this.options.placement.call(this, $tip[0], this.$element[0]) : + this.options.placement + + var autoToken = /\s?auto?\s?/i + var autoPlace = autoToken.test(placement) + if (autoPlace) placement = placement.replace(autoToken, '') || 'top' + + $tip + .detach() + .css({ top: 0, left: 0, display: 'block' }) + .addClass(placement) + .data('bs.' + this.type, this) + + this.options.container ? $tip.appendTo($(document).find(this.options.container)) : $tip.insertAfter(this.$element) + this.$element.trigger('inserted.bs.' + this.type) + + var pos = this.getPosition() + var actualWidth = $tip[0].offsetWidth + var actualHeight = $tip[0].offsetHeight + + if (autoPlace) { + var orgPlacement = placement + var viewportDim = this.getPosition(this.$viewport) + + placement = placement == 'bottom' && pos.bottom + actualHeight > viewportDim.bottom ? 'top' : + placement == 'top' && pos.top - actualHeight < viewportDim.top ? 'bottom' : + placement == 'right' && pos.right + actualWidth > viewportDim.width ? 'left' : + placement == 'left' && pos.left - actualWidth < viewportDim.left ? 'right' : + placement + + $tip + .removeClass(orgPlacement) + .addClass(placement) + } + + var calculatedOffset = this.getCalculatedOffset(placement, pos, actualWidth, actualHeight) + + this.applyPlacement(calculatedOffset, placement) + + var complete = function () { + var prevHoverState = that.hoverState + that.$element.trigger('shown.bs.' + that.type) + that.hoverState = null + + if (prevHoverState == 'out') that.leave(that) + } + + $.support.transition && this.$tip.hasClass('fade') ? + $tip + .one('bsTransitionEnd', complete) + .emulateTransitionEnd(Tooltip.TRANSITION_DURATION) : + complete() + } + } + + Tooltip.prototype.applyPlacement = function (offset, placement) { + var $tip = this.tip() + var width = $tip[0].offsetWidth + var height = $tip[0].offsetHeight + + // manually read margins because getBoundingClientRect includes difference + var marginTop = parseInt($tip.css('margin-top'), 10) + var marginLeft = parseInt($tip.css('margin-left'), 10) + + // we must check for NaN for ie 8/9 + if (isNaN(marginTop)) marginTop = 0 + if (isNaN(marginLeft)) marginLeft = 0 + + offset.top += marginTop + offset.left += marginLeft + + // $.fn.offset doesn't round pixel values + // so we use setOffset directly with our own function B-0 + $.offset.setOffset($tip[0], $.extend({ + using: function (props) { + $tip.css({ + top: Math.round(props.top), + left: Math.round(props.left) + }) + } + }, offset), 0) + + $tip.addClass('in') + + // check to see if placing tip in new offset caused the tip to resize itself + var actualWidth = $tip[0].offsetWidth + var actualHeight = $tip[0].offsetHeight + + if (placement == 'top' && actualHeight != height) { + offset.top = offset.top + height - actualHeight + } + + var delta = this.getViewportAdjustedDelta(placement, offset, actualWidth, actualHeight) + + if (delta.left) offset.left += delta.left + else offset.top += delta.top + + var isVertical = /top|bottom/.test(placement) + var arrowDelta = isVertical ? delta.left * 2 - width + actualWidth : delta.top * 2 - height + actualHeight + var arrowOffsetPosition = isVertical ? 'offsetWidth' : 'offsetHeight' + + $tip.offset(offset) + this.replaceArrow(arrowDelta, $tip[0][arrowOffsetPosition], isVertical) + } + + Tooltip.prototype.replaceArrow = function (delta, dimension, isVertical) { + this.arrow() + .css(isVertical ? 'left' : 'top', 50 * (1 - delta / dimension) + '%') + .css(isVertical ? 'top' : 'left', '') + } + + Tooltip.prototype.setContent = function () { + var $tip = this.tip() + var title = this.getTitle() + + if (this.options.html) { + if (this.options.sanitize) { + title = sanitizeHtml(title, this.options.whiteList, this.options.sanitizeFn) + } + + $tip.find('.tooltip-inner').html(title) + } else { + $tip.find('.tooltip-inner').text(title) + } + + $tip.removeClass('fade in top bottom left right') + } + + Tooltip.prototype.hide = function (callback) { + var that = this + var $tip = $(this.$tip) + var e = $.Event('hide.bs.' + this.type) + + function complete() { + if (that.hoverState != 'in') $tip.detach() + if (that.$element) { // TODO: Check whether guarding this code with this `if` is really necessary. + that.$element + .removeAttr('aria-describedby') + .trigger('hidden.bs.' + that.type) + } + callback && callback() + } + + this.$element.trigger(e) + + if (e.isDefaultPrevented()) return + + $tip.removeClass('in') + + $.support.transition && $tip.hasClass('fade') ? + $tip + .one('bsTransitionEnd', complete) + .emulateTransitionEnd(Tooltip.TRANSITION_DURATION) : + complete() + + this.hoverState = null + + return this + } + + Tooltip.prototype.fixTitle = function () { + var $e = this.$element + if ($e.attr('title') || typeof $e.attr('data-original-title') != 'string') { + $e.attr('data-original-title', $e.attr('title') || '').attr('title', '') + } + } + + Tooltip.prototype.hasContent = function () { + return this.getTitle() + } + + Tooltip.prototype.getPosition = function ($element) { + $element = $element || this.$element + + var el = $element[0] + var isBody = el.tagName == 'BODY' + + var elRect = el.getBoundingClientRect() + if (elRect.width == null) { + // width and height are missing in IE8, so compute them manually; see https://github.com/twbs/bootstrap/issues/14093 + elRect = $.extend({}, elRect, { width: elRect.right - elRect.left, height: elRect.bottom - elRect.top }) + } + var isSvg = window.SVGElement && el instanceof window.SVGElement + // Avoid using $.offset() on SVGs since it gives incorrect results in jQuery 3. + // See https://github.com/twbs/bootstrap/issues/20280 + var elOffset = isBody ? { top: 0, left: 0 } : (isSvg ? null : $element.offset()) + var scroll = { scroll: isBody ? document.documentElement.scrollTop || document.body.scrollTop : $element.scrollTop() } + var outerDims = isBody ? { width: $(window).width(), height: $(window).height() } : null + + return $.extend({}, elRect, scroll, outerDims, elOffset) + } + + Tooltip.prototype.getCalculatedOffset = function (placement, pos, actualWidth, actualHeight) { + return placement == 'bottom' ? { top: pos.top + pos.height, left: pos.left + pos.width / 2 - actualWidth / 2 } : + placement == 'top' ? { top: pos.top - actualHeight, left: pos.left + pos.width / 2 - actualWidth / 2 } : + placement == 'left' ? { top: pos.top + pos.height / 2 - actualHeight / 2, left: pos.left - actualWidth } : + /* placement == 'right' */ { top: pos.top + pos.height / 2 - actualHeight / 2, left: pos.left + pos.width } + + } + + Tooltip.prototype.getViewportAdjustedDelta = function (placement, pos, actualWidth, actualHeight) { + var delta = { top: 0, left: 0 } + if (!this.$viewport) return delta + + var viewportPadding = this.options.viewport && this.options.viewport.padding || 0 + var viewportDimensions = this.getPosition(this.$viewport) + + if (/right|left/.test(placement)) { + var topEdgeOffset = pos.top - viewportPadding - viewportDimensions.scroll + var bottomEdgeOffset = pos.top + viewportPadding - viewportDimensions.scroll + actualHeight + if (topEdgeOffset < viewportDimensions.top) { // top overflow + delta.top = viewportDimensions.top - topEdgeOffset + } else if (bottomEdgeOffset > viewportDimensions.top + viewportDimensions.height) { // bottom overflow + delta.top = viewportDimensions.top + viewportDimensions.height - bottomEdgeOffset + } + } else { + var leftEdgeOffset = pos.left - viewportPadding + var rightEdgeOffset = pos.left + viewportPadding + actualWidth + if (leftEdgeOffset < viewportDimensions.left) { // left overflow + delta.left = viewportDimensions.left - leftEdgeOffset + } else if (rightEdgeOffset > viewportDimensions.right) { // right overflow + delta.left = viewportDimensions.left + viewportDimensions.width - rightEdgeOffset + } + } + + return delta + } + + Tooltip.prototype.getTitle = function () { + var title + var $e = this.$element + var o = this.options + + title = $e.attr('data-original-title') + || (typeof o.title == 'function' ? o.title.call($e[0]) : o.title) + + return title + } + + Tooltip.prototype.getUID = function (prefix) { + do prefix += ~~(Math.random() * 1000000) + while (document.getElementById(prefix)) + return prefix + } + + Tooltip.prototype.tip = function () { + if (!this.$tip) { + this.$tip = $(this.options.template) + if (this.$tip.length != 1) { + throw new Error(this.type + ' `template` option must consist of exactly 1 top-level element!') + } + } + return this.$tip + } + + Tooltip.prototype.arrow = function () { + return (this.$arrow = this.$arrow || this.tip().find('.tooltip-arrow')) + } + + Tooltip.prototype.enable = function () { + this.enabled = true + } + + Tooltip.prototype.disable = function () { + this.enabled = false + } + + Tooltip.prototype.toggleEnabled = function () { + this.enabled = !this.enabled + } + + Tooltip.prototype.toggle = function (e) { + var self = this + if (e) { + self = $(e.currentTarget).data('bs.' + this.type) + if (!self) { + self = new this.constructor(e.currentTarget, this.getDelegateOptions()) + $(e.currentTarget).data('bs.' + this.type, self) + } + } + + if (e) { + self.inState.click = !self.inState.click + if (self.isInStateTrue()) self.enter(self) + else self.leave(self) + } else { + self.tip().hasClass('in') ? self.leave(self) : self.enter(self) + } + } + + Tooltip.prototype.destroy = function () { + var that = this + clearTimeout(this.timeout) + this.hide(function () { + that.$element.off('.' + that.type).removeData('bs.' + that.type) + if (that.$tip) { + that.$tip.detach() + } + that.$tip = null + that.$arrow = null + that.$viewport = null + that.$element = null + }) + } + + Tooltip.prototype.sanitizeHtml = function (unsafeHtml) { + return sanitizeHtml(unsafeHtml, this.options.whiteList, this.options.sanitizeFn) + } + + // TOOLTIP PLUGIN DEFINITION + // ========================= + + function Plugin(option) { + return this.each(function () { + var $this = $(this) + var data = $this.data('bs.tooltip') + var options = typeof option == 'object' && option + + if (!data && /destroy|hide/.test(option)) return + if (!data) $this.data('bs.tooltip', (data = new Tooltip(this, options))) + if (typeof option == 'string') data[option]() + }) + } + + var old = $.fn.tooltip + + $.fn.tooltip = Plugin + $.fn.tooltip.Constructor = Tooltip + + + // TOOLTIP NO CONFLICT + // =================== + + $.fn.tooltip.noConflict = function () { + $.fn.tooltip = old + return this + } + +}(jQuery); + +/* ======================================================================== + * Bootstrap: popover.js v3.4.1 + * https://getbootstrap.com/docs/3.4/javascript/#popovers + * ======================================================================== + * Copyright 2011-2019 Twitter, Inc. + * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) + * ======================================================================== */ + + ++function ($) { + 'use strict'; + + // POPOVER PUBLIC CLASS DEFINITION + // =============================== + + var Popover = function (element, options) { + this.init('popover', element, options) + } + + if (!$.fn.tooltip) throw new Error('Popover requires tooltip.js') + + Popover.VERSION = '3.4.1' + + Popover.DEFAULTS = $.extend({}, $.fn.tooltip.Constructor.DEFAULTS, { + placement: 'right', + trigger: 'click', + content: '', + template: '' + }) + + + // NOTE: POPOVER EXTENDS tooltip.js + // ================================ + + Popover.prototype = $.extend({}, $.fn.tooltip.Constructor.prototype) + + Popover.prototype.constructor = Popover + + Popover.prototype.getDefaults = function () { + return Popover.DEFAULTS + } + + Popover.prototype.setContent = function () { + var $tip = this.tip() + var title = this.getTitle() + var content = this.getContent() + + if (this.options.html) { + var typeContent = typeof content + + if (this.options.sanitize) { + title = this.sanitizeHtml(title) + + if (typeContent === 'string') { + content = this.sanitizeHtml(content) + } + } + + $tip.find('.popover-title').html(title) + $tip.find('.popover-content').children().detach().end()[ + typeContent === 'string' ? 'html' : 'append' + ](content) + } else { + $tip.find('.popover-title').text(title) + $tip.find('.popover-content').children().detach().end().text(content) + } + + $tip.removeClass('fade top bottom left right in') + + // IE8 doesn't accept hiding via the `:empty` pseudo selector, we have to do + // this manually by checking the contents. + if (!$tip.find('.popover-title').html()) $tip.find('.popover-title').hide() + } + + Popover.prototype.hasContent = function () { + return this.getTitle() || this.getContent() + } + + Popover.prototype.getContent = function () { + var $e = this.$element + var o = this.options + + return $e.attr('data-content') + || (typeof o.content == 'function' ? + o.content.call($e[0]) : + o.content) + } + + Popover.prototype.arrow = function () { + return (this.$arrow = this.$arrow || this.tip().find('.arrow')) + } + + + // POPOVER PLUGIN DEFINITION + // ========================= + + function Plugin(option) { + return this.each(function () { + var $this = $(this) + var data = $this.data('bs.popover') + var options = typeof option == 'object' && option + + if (!data && /destroy|hide/.test(option)) return + if (!data) $this.data('bs.popover', (data = new Popover(this, options))) + if (typeof option == 'string') data[option]() + }) + } + + var old = $.fn.popover + + $.fn.popover = Plugin + $.fn.popover.Constructor = Popover + + + // POPOVER NO CONFLICT + // =================== + + $.fn.popover.noConflict = function () { + $.fn.popover = old + return this + } + +}(jQuery); diff --git a/docs/articles/a02_Using_DRR_Template_files/bsTable-3.3.7/bootstrapTable.min.css b/docs/articles/a02_Using_DRR_Template_files/bsTable-3.3.7/bootstrapTable.min.css new file mode 100644 index 0000000..7d1e81f --- /dev/null +++ b/docs/articles/a02_Using_DRR_Template_files/bsTable-3.3.7/bootstrapTable.min.css @@ -0,0 +1,14 @@ +/*! + * Bootstrap v3.3.7 (http://getbootstrap.com) + * Copyright 2011-2018 Twitter, Inc. + * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) + */ + +/*! + * Generated using the Bootstrap Customizer () + * Config saved to config.json and + *//*! + * Bootstrap v3.3.7 (http://getbootstrap.com) + * Copyright 2011-2016 Twitter, Inc. + * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) + *//*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */table{border-collapse:collapse;border-spacing:0}td,th{padding:0}*{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}*:before,*:after{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}table{background-color:transparent}caption{padding-top:8px;padding-bottom:8px;color:#777;text-align:left}th{text-align:left}.table{width:100%;max-width:100%;margin-bottom:20px}.table>thead>tr>th,.table>tbody>tr>th,.table>tfoot>tr>th,.table>thead>tr>td,.table>tbody>tr>td,.table>tfoot>tr>td{padding:8px;line-height:1.42857143;vertical-align:top;border-top:1px solid #ddd}.table>thead>tr>th{vertical-align:bottom;border-bottom:2px solid #ddd}.table>caption+thead>tr:first-child>th,.table>colgroup+thead>tr:first-child>th,.table>thead:first-child>tr:first-child>th,.table>caption+thead>tr:first-child>td,.table>colgroup+thead>tr:first-child>td,.table>thead:first-child>tr:first-child>td{border-top:0}.table>tbody+tbody{border-top:2px solid #ddd}.table .table{background-color:#fff}.table-condensed>thead>tr>th,.table-condensed>tbody>tr>th,.table-condensed>tfoot>tr>th,.table-condensed>thead>tr>td,.table-condensed>tbody>tr>td,.table-condensed>tfoot>tr>td{padding:5px}.table-bordered{border:1px solid #ddd}.table-bordered>thead>tr>th,.table-bordered>tbody>tr>th,.table-bordered>tfoot>tr>th,.table-bordered>thead>tr>td,.table-bordered>tbody>tr>td,.table-bordered>tfoot>tr>td{border:1px solid #ddd}.table-bordered>thead>tr>th,.table-bordered>thead>tr>td{border-bottom-width:2px}.table-striped>tbody>tr:nth-of-type(odd){background-color:#f9f9f9}.table-hover>tbody>tr:hover{background-color:#f5f5f5}table col[class*="col-"]{position:static;float:none;display:table-column}table td[class*="col-"],table th[class*="col-"]{position:static;float:none;display:table-cell}.table>thead>tr>td.active,.table>tbody>tr>td.active,.table>tfoot>tr>td.active,.table>thead>tr>th.active,.table>tbody>tr>th.active,.table>tfoot>tr>th.active,.table>thead>tr.active>td,.table>tbody>tr.active>td,.table>tfoot>tr.active>td,.table>thead>tr.active>th,.table>tbody>tr.active>th,.table>tfoot>tr.active>th{background-color:#f5f5f5}.table-hover>tbody>tr>td.active:hover,.table-hover>tbody>tr>th.active:hover,.table-hover>tbody>tr.active:hover>td,.table-hover>tbody>tr:hover>.active,.table-hover>tbody>tr.active:hover>th{background-color:#e8e8e8}.table>thead>tr>td.success,.table>tbody>tr>td.success,.table>tfoot>tr>td.success,.table>thead>tr>th.success,.table>tbody>tr>th.success,.table>tfoot>tr>th.success,.table>thead>tr.success>td,.table>tbody>tr.success>td,.table>tfoot>tr.success>td,.table>thead>tr.success>th,.table>tbody>tr.success>th,.table>tfoot>tr.success>th{background-color:#dff0d8}.table-hover>tbody>tr>td.success:hover,.table-hover>tbody>tr>th.success:hover,.table-hover>tbody>tr.success:hover>td,.table-hover>tbody>tr:hover>.success,.table-hover>tbody>tr.success:hover>th{background-color:#d0e9c6}.table>thead>tr>td.info,.table>tbody>tr>td.info,.table>tfoot>tr>td.info,.table>thead>tr>th.info,.table>tbody>tr>th.info,.table>tfoot>tr>th.info,.table>thead>tr.info>td,.table>tbody>tr.info>td,.table>tfoot>tr.info>td,.table>thead>tr.info>th,.table>tbody>tr.info>th,.table>tfoot>tr.info>th{background-color:#d9edf7}.table-hover>tbody>tr>td.info:hover,.table-hover>tbody>tr>th.info:hover,.table-hover>tbody>tr.info:hover>td,.table-hover>tbody>tr:hover>.info,.table-hover>tbody>tr.info:hover>th{background-color:#c4e3f3}.table>thead>tr>td.warning,.table>tbody>tr>td.warning,.table>tfoot>tr>td.warning,.table>thead>tr>th.warning,.table>tbody>tr>th.warning,.table>tfoot>tr>th.warning,.table>thead>tr.warning>td,.table>tbody>tr.warning>td,.table>tfoot>tr.warning>td,.table>thead>tr.warning>th,.table>tbody>tr.warning>th,.table>tfoot>tr.warning>th{background-color:#fcf8e3}.table-hover>tbody>tr>td.warning:hover,.table-hover>tbody>tr>th.warning:hover,.table-hover>tbody>tr.warning:hover>td,.table-hover>tbody>tr:hover>.warning,.table-hover>tbody>tr.warning:hover>th{background-color:#faf2cc}.table>thead>tr>td.danger,.table>tbody>tr>td.danger,.table>tfoot>tr>td.danger,.table>thead>tr>th.danger,.table>tbody>tr>th.danger,.table>tfoot>tr>th.danger,.table>thead>tr.danger>td,.table>tbody>tr.danger>td,.table>tfoot>tr.danger>td,.table>thead>tr.danger>th,.table>tbody>tr.danger>th,.table>tfoot>tr.danger>th{background-color:#f2dede}.table-hover>tbody>tr>td.danger:hover,.table-hover>tbody>tr>th.danger:hover,.table-hover>tbody>tr.danger:hover>td,.table-hover>tbody>tr:hover>.danger,.table-hover>tbody>tr.danger:hover>th{background-color:#ebcccc}.table-responsive{overflow-x:auto;min-height:0.01%}@media screen and (max-width:767px){.table-responsive{width:100%;margin-bottom:15px;overflow-y:hidden;-ms-overflow-style:-ms-autohiding-scrollbar;border:1px solid #ddd}.table-responsive>.table{margin-bottom:0}.table-responsive>.table>thead>tr>th,.table-responsive>.table>tbody>tr>th,.table-responsive>.table>tfoot>tr>th,.table-responsive>.table>thead>tr>td,.table-responsive>.table>tbody>tr>td,.table-responsive>.table>tfoot>tr>td{white-space:nowrap}.table-responsive>.table-bordered{border:0}.table-responsive>.table-bordered>thead>tr>th:first-child,.table-responsive>.table-bordered>tbody>tr>th:first-child,.table-responsive>.table-bordered>tfoot>tr>th:first-child,.table-responsive>.table-bordered>thead>tr>td:first-child,.table-responsive>.table-bordered>tbody>tr>td:first-child,.table-responsive>.table-bordered>tfoot>tr>td:first-child{border-left:0}.table-responsive>.table-bordered>thead>tr>th:last-child,.table-responsive>.table-bordered>tbody>tr>th:last-child,.table-responsive>.table-bordered>tfoot>tr>th:last-child,.table-responsive>.table-bordered>thead>tr>td:last-child,.table-responsive>.table-bordered>tbody>tr>td:last-child,.table-responsive>.table-bordered>tfoot>tr>td:last-child{border-right:0}.table-responsive>.table-bordered>tbody>tr:last-child>th,.table-responsive>.table-bordered>tfoot>tr:last-child>th,.table-responsive>.table-bordered>tbody>tr:last-child>td,.table-responsive>.table-bordered>tfoot>tr:last-child>td{border-bottom:0}}.tooltip{position:absolute;z-index:1070;display:block;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-style:normal;font-weight:normal;letter-spacing:normal;line-break:auto;line-height:1.42857143;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;white-space:normal;word-break:normal;word-spacing:normal;word-wrap:normal;font-size:12px;opacity:0;filter:alpha(opacity=0)}.tooltip.in{opacity:.9;filter:alpha(opacity=90)}.tooltip.top{margin-top:-3px;padding:5px 0}.tooltip.right{margin-left:3px;padding:0 5px}.tooltip.bottom{margin-top:3px;padding:5px 0}.tooltip.left{margin-left:-3px;padding:0 5px}.tooltip-inner{max-width:200px;padding:3px 8px;color:#fff;text-align:center;background-color:#000;border-radius:4px}.tooltip-arrow{position:absolute;width:0;height:0;border-color:transparent;border-style:solid}.tooltip.top .tooltip-arrow{bottom:0;left:50%;margin-left:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.top-left .tooltip-arrow{bottom:0;right:5px;margin-bottom:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.top-right .tooltip-arrow{bottom:0;left:5px;margin-bottom:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.right .tooltip-arrow{top:50%;left:0;margin-top:-5px;border-width:5px 5px 5px 0;border-right-color:#000}.tooltip.left .tooltip-arrow{top:50%;right:0;margin-top:-5px;border-width:5px 0 5px 5px;border-left-color:#000}.tooltip.bottom .tooltip-arrow{top:0;left:50%;margin-left:-5px;border-width:0 5px 5px;border-bottom-color:#000}.tooltip.bottom-left .tooltip-arrow{top:0;right:5px;margin-top:-5px;border-width:0 5px 5px;border-bottom-color:#000}.tooltip.bottom-right .tooltip-arrow{top:0;left:5px;margin-top:-5px;border-width:0 5px 5px;border-bottom-color:#000}.popover{position:absolute;top:0;left:0;z-index:1060;display:none;max-width:276px;padding:1px;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-style:normal;font-weight:normal;letter-spacing:normal;line-break:auto;line-height:1.42857143;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;white-space:normal;word-break:normal;word-spacing:normal;word-wrap:normal;font-size:14px;background-color:#fff;-webkit-background-clip:padding-box;background-clip:padding-box;border:1px solid #ccc;border:1px solid rgba(0,0,0,0.2);border-radius:6px;-webkit-box-shadow:0 5px 10px rgba(0,0,0,0.2);box-shadow:0 5px 10px rgba(0,0,0,0.2)}.popover.top{margin-top:-10px}.popover.right{margin-left:10px}.popover.bottom{margin-top:10px}.popover.left{margin-left:-10px}.popover-title{margin:0;padding:8px 14px;font-size:14px;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;border-radius:5px 5px 0 0}.popover-content{padding:9px 14px}.popover>.arrow,.popover>.arrow:after{position:absolute;display:block;width:0;height:0;border-color:transparent;border-style:solid}.popover>.arrow{border-width:11px}.popover>.arrow:after{border-width:10px;content:""}.popover.top>.arrow{left:50%;margin-left:-11px;border-bottom-width:0;border-top-color:#999;border-top-color:rgba(0,0,0,0.25);bottom:-11px}.popover.top>.arrow:after{content:" ";bottom:1px;margin-left:-10px;border-bottom-width:0;border-top-color:#fff}.popover.right>.arrow{top:50%;left:-11px;margin-top:-11px;border-left-width:0;border-right-color:#999;border-right-color:rgba(0,0,0,0.25)}.popover.right>.arrow:after{content:" ";left:1px;bottom:-10px;border-left-width:0;border-right-color:#fff}.popover.bottom>.arrow{left:50%;margin-left:-11px;border-top-width:0;border-bottom-color:#999;border-bottom-color:rgba(0,0,0,0.25);top:-11px}.popover.bottom>.arrow:after{content:" ";top:1px;margin-left:-10px;border-top-width:0;border-bottom-color:#fff}.popover.left>.arrow{top:50%;right:-11px;margin-top:-11px;border-right-width:0;border-left-color:#999;border-left-color:rgba(0,0,0,0.25)}.popover.left>.arrow:after{content:" ";right:1px;border-right-width:0;border-left-color:#fff;bottom:-10px}.clearfix:before,.clearfix:after{content:" ";display:table}.clearfix:after{clear:both}.center-block{display:block;margin-left:auto;margin-right:auto}.pull-right{float:right !important}.pull-left{float:left !important}.hide{display:none !important}.show{display:block !important}.invisible{visibility:hidden}.text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.hidden{display:none !important}.affix{position:fixed} diff --git a/docs/articles/a02_Using_DRR_Template_files/kePrint-0.0.1/kePrint.js b/docs/articles/a02_Using_DRR_Template_files/kePrint-0.0.1/kePrint.js new file mode 100644 index 0000000..e6fbbfc --- /dev/null +++ b/docs/articles/a02_Using_DRR_Template_files/kePrint-0.0.1/kePrint.js @@ -0,0 +1,8 @@ +$(document).ready(function(){ + if (typeof $('[data-toggle="tooltip"]').tooltip === 'function') { + $('[data-toggle="tooltip"]').tooltip(); + } + if ($('[data-toggle="popover"]').popover === 'function') { + $('[data-toggle="popover"]').popover(); + } +}); diff --git a/docs/articles/a02_Using_DRR_Template_files/lightable-0.0.1/lightable.css b/docs/articles/a02_Using_DRR_Template_files/lightable-0.0.1/lightable.css new file mode 100644 index 0000000..3be3be9 --- /dev/null +++ b/docs/articles/a02_Using_DRR_Template_files/lightable-0.0.1/lightable.css @@ -0,0 +1,272 @@ +/*! + * lightable v0.0.1 + * Copyright 2020 Hao Zhu + * Licensed under MIT (https://github.com/haozhu233/kableExtra/blob/master/LICENSE) + */ + +.lightable-minimal { + border-collapse: separate; + border-spacing: 16px 1px; + width: 100%; + margin-bottom: 10px; +} + +.lightable-minimal td { + margin-left: 5px; + margin-right: 5px; +} + +.lightable-minimal th { + margin-left: 5px; + margin-right: 5px; +} + +.lightable-minimal thead tr:last-child th { + border-bottom: 2px solid #00000050; + empty-cells: hide; + +} + +.lightable-minimal tbody tr:first-child td { + padding-top: 0.5em; +} + +.lightable-minimal.lightable-hover tbody tr:hover { + background-color: #f5f5f5; +} + +.lightable-minimal.lightable-striped tbody tr:nth-child(even) { + background-color: #f5f5f5; +} + +.lightable-classic { + border-top: 0.16em solid #111111; + border-bottom: 0.16em solid #111111; + width: 100%; + margin-bottom: 10px; + margin: 10px 5px; +} + +.lightable-classic tfoot tr td { + border: 0; +} + +.lightable-classic tfoot tr:first-child td { + border-top: 0.14em solid #111111; +} + +.lightable-classic caption { + color: #222222; +} + +.lightable-classic td { + padding-left: 5px; + padding-right: 5px; + color: #222222; +} + +.lightable-classic th { + padding-left: 5px; + padding-right: 5px; + font-weight: normal; + color: #222222; +} + +.lightable-classic thead tr:last-child th { + border-bottom: 0.10em solid #111111; +} + +.lightable-classic.lightable-hover tbody tr:hover { + background-color: #F9EEC1; +} + +.lightable-classic.lightable-striped tbody tr:nth-child(even) { + background-color: #f5f5f5; +} + +.lightable-classic-2 { + border-top: 3px double #111111; + border-bottom: 3px double #111111; + width: 100%; + margin-bottom: 10px; +} + +.lightable-classic-2 tfoot tr td { + border: 0; +} + +.lightable-classic-2 tfoot tr:first-child td { + border-top: 3px double #111111; +} + +.lightable-classic-2 caption { + color: #222222; +} + +.lightable-classic-2 td { + padding-left: 5px; + padding-right: 5px; + color: #222222; +} + +.lightable-classic-2 th { + padding-left: 5px; + padding-right: 5px; + font-weight: normal; + color: #222222; +} + +.lightable-classic-2 tbody tr:last-child td { + border-bottom: 3px double #111111; +} + +.lightable-classic-2 thead tr:last-child th { + border-bottom: 1px solid #111111; +} + +.lightable-classic-2.lightable-hover tbody tr:hover { + background-color: #F9EEC1; +} + +.lightable-classic-2.lightable-striped tbody tr:nth-child(even) { + background-color: #f5f5f5; +} + +.lightable-material { + min-width: 100%; + white-space: nowrap; + table-layout: fixed; + font-family: Roboto, sans-serif; + border: 1px solid #EEE; + border-collapse: collapse; + margin-bottom: 10px; +} + +.lightable-material tfoot tr td { + border: 0; +} + +.lightable-material tfoot tr:first-child td { + border-top: 1px solid #EEE; +} + +.lightable-material th { + height: 56px; + padding-left: 16px; + padding-right: 16px; +} + +.lightable-material td { + height: 52px; + padding-left: 16px; + padding-right: 16px; + border-top: 1px solid #eeeeee; +} + +.lightable-material.lightable-hover tbody tr:hover { + background-color: #f5f5f5; +} + +.lightable-material.lightable-striped tbody tr:nth-child(even) { + background-color: #f5f5f5; +} + +.lightable-material.lightable-striped tbody td { + border: 0; +} + +.lightable-material.lightable-striped thead tr:last-child th { + border-bottom: 1px solid #ddd; +} + +.lightable-material-dark { + min-width: 100%; + white-space: nowrap; + table-layout: fixed; + font-family: Roboto, sans-serif; + border: 1px solid #FFFFFF12; + border-collapse: collapse; + margin-bottom: 10px; + background-color: #363640; +} + +.lightable-material-dark tfoot tr td { + border: 0; +} + +.lightable-material-dark tfoot tr:first-child td { + border-top: 1px solid #FFFFFF12; +} + +.lightable-material-dark th { + height: 56px; + padding-left: 16px; + padding-right: 16px; + color: #FFFFFF60; +} + +.lightable-material-dark td { + height: 52px; + padding-left: 16px; + padding-right: 16px; + color: #FFFFFF; + border-top: 1px solid #FFFFFF12; +} + +.lightable-material-dark.lightable-hover tbody tr:hover { + background-color: #FFFFFF12; +} + +.lightable-material-dark.lightable-striped tbody tr:nth-child(even) { + background-color: #FFFFFF12; +} + +.lightable-material-dark.lightable-striped tbody td { + border: 0; +} + +.lightable-material-dark.lightable-striped thead tr:last-child th { + border-bottom: 1px solid #FFFFFF12; +} + +.lightable-paper { + width: 100%; + margin-bottom: 10px; + color: #444; +} + +.lightable-paper tfoot tr td { + border: 0; +} + +.lightable-paper tfoot tr:first-child td { + border-top: 1px solid #00000020; +} + +.lightable-paper thead tr:last-child th { + color: #666; + vertical-align: bottom; + border-bottom: 1px solid #00000020; + line-height: 1.15em; + padding: 10px 5px; +} + +.lightable-paper td { + vertical-align: middle; + border-bottom: 1px solid #00000010; + line-height: 1.15em; + padding: 7px 5px; +} + +.lightable-paper.lightable-hover tbody tr:hover { + background-color: #F9EEC1; +} + +.lightable-paper.lightable-striped tbody tr:nth-child(even) { + background-color: #00000008; +} + +.lightable-paper.lightable-striped tbody td { + border: 0; +} + diff --git a/docs/articles/index.html b/docs/articles/index.html index 8460db5..ff73649 100644 --- a/docs/articles/index.html +++ b/docs/articles/index.html @@ -28,6 +28,19 @@
  • Reference
  • +
  • Changelog
  • @@ -53,7 +66,11 @@

    Articles

    All vignettes

    -
    QCkit
    +
    Getting Started with NPS DRRs
    +
    +
    Using the DRR Template
    +
    +
    QCkit
    diff --git a/docs/authors.html b/docs/authors.html index 270e84e..e1aa5ec 100644 --- a/docs/authors.html +++ b/docs/authors.html @@ -28,6 +28,19 @@
  • Reference
  • +
  • Changelog
  • diff --git a/docs/index.html b/docs/index.html index 5bb5cee..8c5642e 100644 --- a/docs/index.html +++ b/docs/index.html @@ -45,6 +45,21 @@
  • Reference
  • +
  • Changelog
  • diff --git a/docs/news/index.html b/docs/news/index.html index f4d1ec4..00a81ba 100644 --- a/docs/news/index.html +++ b/docs/news/index.html @@ -28,6 +28,19 @@
  • Reference
  • +
  • Changelog
  • diff --git a/docs/pkgdown.yml b/docs/pkgdown.yml index 4592ace..fab3e6f 100644 --- a/docs/pkgdown.yml +++ b/docs/pkgdown.yml @@ -2,6 +2,8 @@ pandoc: 3.1.1 pkgdown: 2.0.7 pkgdown_sha: ~ articles: + a01_DRR_Background: a01_DRR_Background.html + a02_Using_DRR_Template: a02_Using_DRR_Template.html QCkit: QCkit.html -last_built: 2024-02-02T16:00Z +last_built: 2024-02-08T03:50Z diff --git a/docs/reference/DC_col_check.html b/docs/reference/DC_col_check.html index 2ea563c..5bb027d 100644 --- a/docs/reference/DC_col_check.html +++ b/docs/reference/DC_col_check.html @@ -30,6 +30,19 @@
  • Reference
  • +
  • Changelog
  • diff --git a/docs/reference/QCkit-package.html b/docs/reference/QCkit-package.html index a87ffdb..73c5483 100644 --- a/docs/reference/QCkit-package.html +++ b/docs/reference/QCkit-package.html @@ -28,6 +28,19 @@
  • Reference
  • +
  • Changelog
  • diff --git a/docs/reference/check_dc_cols.html b/docs/reference/check_dc_cols.html index ccf0e29..c9d882b 100644 --- a/docs/reference/check_dc_cols.html +++ b/docs/reference/check_dc_cols.html @@ -28,6 +28,19 @@
  • Reference
  • +
  • Changelog
  • diff --git a/docs/reference/check_te.html b/docs/reference/check_te.html index 48f4062..04dbc29 100644 --- a/docs/reference/check_te.html +++ b/docs/reference/check_te.html @@ -28,6 +28,19 @@
  • Reference
  • +
  • Changelog
  • diff --git a/docs/reference/convert_datetime_format.html b/docs/reference/convert_datetime_format.html index c900787..2cbe245 100644 --- a/docs/reference/convert_datetime_format.html +++ b/docs/reference/convert_datetime_format.html @@ -28,6 +28,19 @@
  • Reference
  • +
  • Changelog
  • diff --git a/docs/reference/convert_long_to_utm.html b/docs/reference/convert_long_to_utm.html index 121bacd..41f8d07 100644 --- a/docs/reference/convert_long_to_utm.html +++ b/docs/reference/convert_long_to_utm.html @@ -32,6 +32,19 @@
  • Reference
  • +
  • Changelog
  • diff --git a/docs/reference/convert_utm_to_ll.html b/docs/reference/convert_utm_to_ll.html index a4334dc..5b3c05e 100644 --- a/docs/reference/convert_utm_to_ll.html +++ b/docs/reference/convert_utm_to_ll.html @@ -32,6 +32,19 @@
  • Reference
  • +
  • Changelog
  • diff --git a/docs/reference/create_datastore_script.html b/docs/reference/create_datastore_script.html index a2b99df..3adb7d5 100644 --- a/docs/reference/create_datastore_script.html +++ b/docs/reference/create_datastore_script.html @@ -33,6 +33,19 @@
  • Reference
  • +
  • Changelog
  • diff --git a/docs/reference/fix_utc_offset.html b/docs/reference/fix_utc_offset.html index 48bbf24..556a268 100644 --- a/docs/reference/fix_utc_offset.html +++ b/docs/reference/fix_utc_offset.html @@ -28,6 +28,19 @@
  • Reference
  • +
  • Changelog
  • diff --git a/docs/reference/fuzz_location.html b/docs/reference/fuzz_location.html index bd2ecf0..1049dcc 100644 --- a/docs/reference/fuzz_location.html +++ b/docs/reference/fuzz_location.html @@ -34,6 +34,19 @@
  • Reference
  • +
  • Changelog
  • diff --git a/docs/reference/get_custom_flags.html b/docs/reference/get_custom_flags.html index 74d4fcf..5c997c3 100644 --- a/docs/reference/get_custom_flags.html +++ b/docs/reference/get_custom_flags.html @@ -43,6 +43,19 @@
  • Reference
  • +
  • Changelog
  • diff --git a/docs/reference/get_dc_flags.html b/docs/reference/get_dc_flags.html index 780df37..e581f48 100644 --- a/docs/reference/get_dc_flags.html +++ b/docs/reference/get_dc_flags.html @@ -36,6 +36,19 @@
  • Reference
  • +
  • Changelog
  • diff --git a/docs/reference/get_df_flags.html b/docs/reference/get_df_flags.html index a3b62e8..2949a33 100644 --- a/docs/reference/get_df_flags.html +++ b/docs/reference/get_df_flags.html @@ -34,6 +34,19 @@
  • Reference
  • +
  • Changelog
  • diff --git a/docs/reference/get_dp_flags.html b/docs/reference/get_dp_flags.html index 738f6f3..f723d78 100644 --- a/docs/reference/get_dp_flags.html +++ b/docs/reference/get_dp_flags.html @@ -34,6 +34,19 @@
  • Reference
  • +
  • Changelog
  • diff --git a/docs/reference/get_elevation.html b/docs/reference/get_elevation.html index e7e3c38..71b92bb 100644 --- a/docs/reference/get_elevation.html +++ b/docs/reference/get_elevation.html @@ -28,6 +28,19 @@
  • Reference
  • +
  • Changelog
  • diff --git a/docs/reference/get_park_polygon.html b/docs/reference/get_park_polygon.html index 8b8c9e3..fca6997 100644 --- a/docs/reference/get_park_polygon.html +++ b/docs/reference/get_park_polygon.html @@ -30,6 +30,19 @@
  • Reference
  • +
  • Changelog
  • diff --git a/docs/reference/get_taxon_rank.html b/docs/reference/get_taxon_rank.html index 2c61c8b..f213880 100644 --- a/docs/reference/get_taxon_rank.html +++ b/docs/reference/get_taxon_rank.html @@ -28,6 +28,19 @@
  • Reference
  • +
  • Changelog
  • diff --git a/docs/reference/get_utm_zone.html b/docs/reference/get_utm_zone.html index 1fc6c88..c601c3f 100644 --- a/docs/reference/get_utm_zone.html +++ b/docs/reference/get_utm_zone.html @@ -30,6 +30,19 @@
  • Reference
  • +
  • Changelog
  • diff --git a/docs/reference/index.html b/docs/reference/index.html index 25477f2..e15a572 100644 --- a/docs/reference/index.html +++ b/docs/reference/index.html @@ -28,6 +28,19 @@
  • Reference
  • +
  • Changelog
  • diff --git a/docs/reference/long2UTM.html b/docs/reference/long2UTM.html index 90e2e2f..35cd714 100644 --- a/docs/reference/long2UTM.html +++ b/docs/reference/long2UTM.html @@ -33,6 +33,19 @@
  • Reference
  • +
  • Changelog
  • diff --git a/docs/reference/order_cols.html b/docs/reference/order_cols.html index b211c88..976a93c 100644 --- a/docs/reference/order_cols.html +++ b/docs/reference/order_cols.html @@ -28,6 +28,19 @@
  • Reference
  • +
  • Changelog
  • diff --git a/docs/reference/replace_blanks.html b/docs/reference/replace_blanks.html index 100bbf2..ccf73fc 100644 --- a/docs/reference/replace_blanks.html +++ b/docs/reference/replace_blanks.html @@ -28,6 +28,19 @@
  • Reference
  • +
  • Changelog
  • diff --git a/docs/reference/te_check.html b/docs/reference/te_check.html index a9576d9..2e6d938 100644 --- a/docs/reference/te_check.html +++ b/docs/reference/te_check.html @@ -30,6 +30,19 @@
  • Reference
  • +
  • Changelog
  • diff --git a/docs/reference/utm_to_ll.html b/docs/reference/utm_to_ll.html index dc8e8e3..02300fb 100644 --- a/docs/reference/utm_to_ll.html +++ b/docs/reference/utm_to_ll.html @@ -30,6 +30,19 @@
  • Reference
  • +
  • Changelog
  • diff --git a/docs/reference/validate_coord.html b/docs/reference/validate_coord.html index e31005d..049f26a 100644 --- a/docs/reference/validate_coord.html +++ b/docs/reference/validate_coord.html @@ -30,6 +30,19 @@
  • Reference
  • +
  • Changelog
  • diff --git a/docs/sitemap.xml b/docs/sitemap.xml index 0b2ba17..932501a 100644 --- a/docs/sitemap.xml +++ b/docs/sitemap.xml @@ -3,6 +3,12 @@ /404.html + + /articles/a01_DRR_Background.html + + + /articles/a02_Using_DRR_Template.html + /articles/index.html diff --git a/inst/rmarkdown/templates/nps-data-release-report-template/skeleton/skeleton.Rmd b/inst/rmarkdown/templates/nps-data-release-report-template/skeleton/skeleton.Rmd index e042a59..5a9dc62 100644 --- a/inst/rmarkdown/templates/nps-data-release-report-template/skeleton/skeleton.Rmd +++ b/inst/rmarkdown/templates/nps-data-release-report-template/skeleton/skeleton.Rmd @@ -347,7 +347,7 @@ data_criteria %>% # Generates a table summarizing QC at the column level within each file. All flagged columns are included. To add additional non-flagged columns, specify them with column names: cols=("my_unflagged_data1", "my_unflagged_data2)" or numbers: cols=c(1:4). All non-missing data in unflagged columns is assumed accepted. If a file has no flagged columns and no specified custom columns, all values for that data file will be listed as "NA". #set directory to the location of your data package: -path <- "../../DataPackageWorkflow/dataPackages/BICY_Veg_Data_Package_Example" +path <- "/BICY_Example" dc_flags <- QCkit::get_custom_flags(directory = path, output="columns") dc_flags$`File Name` <- gsub(".csv", "", dc_flags$`File Name`) From c3c1d2bee53631b9eeb98e87c3194a9bc02bec63 Mon Sep 17 00:00:00 2001 From: Rob Baker Date: Thu, 8 Feb 2024 14:54:05 -0700 Subject: [PATCH 07/33] add template file for datastore interactions unit testing --- tests/testthat/test-datastore_interactions.R | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 tests/testthat/test-datastore_interactions.R diff --git a/tests/testthat/test-datastore_interactions.R b/tests/testthat/test-datastore_interactions.R new file mode 100644 index 0000000..3254f00 --- /dev/null +++ b/tests/testthat/test-datastore_interactions.R @@ -0,0 +1,4 @@ +test_that("multiplication works", { + expect_equal(2 * 2, 4) +}) + From 85e01fbd859562e54c2e3463c7e0f56a5c291572 Mon Sep 17 00:00:00 2001 From: Rob Baker Date: Thu, 8 Feb 2024 15:04:12 -0700 Subject: [PATCH 08/33] rename file structure to get path < 100 chars --- .../skeleton/BICY_Example/Example_BICY_Veg_metadata.xml | 0 .../skeleton/BICY_Example/Mini_BICY_Veg_Geography.csv | 0 .../skeleton/BICY_Example/Mini_BICY_Veg_Intercept_Cleaned.csv | 0 .../skeleton/BICY_Example/Mini_BICY_Veg_Transect_Cleaned.csv | 0 .../skeleton/national-park-service-DRR.csl | 0 .../skeleton/references.bib | 0 .../skeleton/skeleton.Rmd | 0 .../{nps-data-release-report-template => NPS DRR}/template.yaml | 2 +- 8 files changed, 1 insertion(+), 1 deletion(-) rename inst/rmarkdown/templates/{nps-data-release-report-template => NPS DRR}/skeleton/BICY_Example/Example_BICY_Veg_metadata.xml (100%) rename inst/rmarkdown/templates/{nps-data-release-report-template => NPS DRR}/skeleton/BICY_Example/Mini_BICY_Veg_Geography.csv (100%) rename inst/rmarkdown/templates/{nps-data-release-report-template => NPS DRR}/skeleton/BICY_Example/Mini_BICY_Veg_Intercept_Cleaned.csv (100%) rename inst/rmarkdown/templates/{nps-data-release-report-template => NPS DRR}/skeleton/BICY_Example/Mini_BICY_Veg_Transect_Cleaned.csv (100%) rename inst/rmarkdown/templates/{nps-data-release-report-template => NPS DRR}/skeleton/national-park-service-DRR.csl (100%) rename inst/rmarkdown/templates/{nps-data-release-report-template => NPS DRR}/skeleton/references.bib (100%) rename inst/rmarkdown/templates/{nps-data-release-report-template => NPS DRR}/skeleton/skeleton.Rmd (100%) rename inst/rmarkdown/templates/{nps-data-release-report-template => NPS DRR}/template.yaml (62%) diff --git a/inst/rmarkdown/templates/nps-data-release-report-template/skeleton/BICY_Example/Example_BICY_Veg_metadata.xml b/inst/rmarkdown/templates/NPS DRR/skeleton/BICY_Example/Example_BICY_Veg_metadata.xml similarity index 100% rename from inst/rmarkdown/templates/nps-data-release-report-template/skeleton/BICY_Example/Example_BICY_Veg_metadata.xml rename to inst/rmarkdown/templates/NPS DRR/skeleton/BICY_Example/Example_BICY_Veg_metadata.xml diff --git a/inst/rmarkdown/templates/nps-data-release-report-template/skeleton/BICY_Example/Mini_BICY_Veg_Geography.csv b/inst/rmarkdown/templates/NPS DRR/skeleton/BICY_Example/Mini_BICY_Veg_Geography.csv similarity index 100% rename from inst/rmarkdown/templates/nps-data-release-report-template/skeleton/BICY_Example/Mini_BICY_Veg_Geography.csv rename to inst/rmarkdown/templates/NPS DRR/skeleton/BICY_Example/Mini_BICY_Veg_Geography.csv diff --git a/inst/rmarkdown/templates/nps-data-release-report-template/skeleton/BICY_Example/Mini_BICY_Veg_Intercept_Cleaned.csv b/inst/rmarkdown/templates/NPS DRR/skeleton/BICY_Example/Mini_BICY_Veg_Intercept_Cleaned.csv similarity index 100% rename from inst/rmarkdown/templates/nps-data-release-report-template/skeleton/BICY_Example/Mini_BICY_Veg_Intercept_Cleaned.csv rename to inst/rmarkdown/templates/NPS DRR/skeleton/BICY_Example/Mini_BICY_Veg_Intercept_Cleaned.csv diff --git a/inst/rmarkdown/templates/nps-data-release-report-template/skeleton/BICY_Example/Mini_BICY_Veg_Transect_Cleaned.csv b/inst/rmarkdown/templates/NPS DRR/skeleton/BICY_Example/Mini_BICY_Veg_Transect_Cleaned.csv similarity index 100% rename from inst/rmarkdown/templates/nps-data-release-report-template/skeleton/BICY_Example/Mini_BICY_Veg_Transect_Cleaned.csv rename to inst/rmarkdown/templates/NPS DRR/skeleton/BICY_Example/Mini_BICY_Veg_Transect_Cleaned.csv diff --git a/inst/rmarkdown/templates/nps-data-release-report-template/skeleton/national-park-service-DRR.csl b/inst/rmarkdown/templates/NPS DRR/skeleton/national-park-service-DRR.csl similarity index 100% rename from inst/rmarkdown/templates/nps-data-release-report-template/skeleton/national-park-service-DRR.csl rename to inst/rmarkdown/templates/NPS DRR/skeleton/national-park-service-DRR.csl diff --git a/inst/rmarkdown/templates/nps-data-release-report-template/skeleton/references.bib b/inst/rmarkdown/templates/NPS DRR/skeleton/references.bib similarity index 100% rename from inst/rmarkdown/templates/nps-data-release-report-template/skeleton/references.bib rename to inst/rmarkdown/templates/NPS DRR/skeleton/references.bib diff --git a/inst/rmarkdown/templates/nps-data-release-report-template/skeleton/skeleton.Rmd b/inst/rmarkdown/templates/NPS DRR/skeleton/skeleton.Rmd similarity index 100% rename from inst/rmarkdown/templates/nps-data-release-report-template/skeleton/skeleton.Rmd rename to inst/rmarkdown/templates/NPS DRR/skeleton/skeleton.Rmd diff --git a/inst/rmarkdown/templates/nps-data-release-report-template/template.yaml b/inst/rmarkdown/templates/NPS DRR/template.yaml similarity index 62% rename from inst/rmarkdown/templates/nps-data-release-report-template/template.yaml rename to inst/rmarkdown/templates/NPS DRR/template.yaml index ecf68e2..50db208 100644 --- a/inst/rmarkdown/templates/nps-data-release-report-template/template.yaml +++ b/inst/rmarkdown/templates/NPS DRR/template.yaml @@ -1,4 +1,4 @@ -name: NPS Data Release Report Template +name: NPS DRR description: > A description of the template create_dir: FALSE From 02cea683ea3547def8adee84650d51250f513a22 Mon Sep 17 00:00:00 2001 From: Rob Baker Date: Thu, 8 Feb 2024 15:34:51 -0700 Subject: [PATCH 09/33] update file paths to example data files --- inst/rmarkdown/templates/NPS DRR/skeleton/skeleton.Rmd | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/inst/rmarkdown/templates/NPS DRR/skeleton/skeleton.Rmd b/inst/rmarkdown/templates/NPS DRR/skeleton/skeleton.Rmd index 5a9dc62..80f91a9 100644 --- a/inst/rmarkdown/templates/NPS DRR/skeleton/skeleton.Rmd +++ b/inst/rmarkdown/templates/NPS DRR/skeleton/skeleton.Rmd @@ -347,8 +347,7 @@ data_criteria %>% # Generates a table summarizing QC at the column level within each file. All flagged columns are included. To add additional non-flagged columns, specify them with column names: cols=("my_unflagged_data1", "my_unflagged_data2)" or numbers: cols=c(1:4). All non-missing data in unflagged columns is assumed accepted. If a file has no flagged columns and no specified custom columns, all values for that data file will be listed as "NA". #set directory to the location of your data package: -path <- "/BICY_Example" -dc_flags <- QCkit::get_custom_flags(directory = path, output="columns") +dc_flags <- QCkit::get_custom_flags(here::here("Untitled", "BICY_Example"), output="columns") dc_flags$`File Name` <- gsub(".csv", "", dc_flags$`File Name`) @@ -378,8 +377,7 @@ kableExtra::add_footnote( # Generates a table summarizing data quality across all flagged columns of each data file. To add additional non-flagged columns, specify them with column names: cols=("my_unflagged_data1", "my_unflagged_data2)" or numbers: cols=c(1:4). All non-missing data in unflagged columns is assumed accepted. If a file has no flagged columns and no specified custom columns, all values for that data file will be listed as "NA". #set directory to the location of your data package -path<-"../../DataPackageWorkflow/dataPackages/BICY_Veg_Data_Package_Example" -dp_flags <- get_custom_flags(directory = path, output="files") +dp_flags <- get_custom_flags(directory = here::here("Untitled", "BICY_Example"), output="files") #generate table: dp_flags %>% From 44491566fcf5f1eb9001f406921f85fabc502508 Mon Sep 17 00:00:00 2001 From: Rob Baker Date: Thu, 8 Feb 2024 15:35:07 -0700 Subject: [PATCH 10/33] add .pngs for example DRR --- .../skeleton/BICY_Example/FileStructure.PNG | Bin 0 -> 2965 bytes .../skeleton/BICY_Example/PracticalExample.png | Bin 0 -> 40135 bytes .../BICY_Example/ProcessingWorkflow.png | Bin 0 -> 10844 bytes .../BICY_Example/WorkflowModelGeneral.png | Bin 0 -> 15023 bytes .../BICY_Example/WorkflowModelInventories.png | Bin 0 -> 26785 bytes .../BICY_Example/WorkflowModelMonitoring.png | Bin 0 -> 31752 bytes 6 files changed, 0 insertions(+), 0 deletions(-) create mode 100644 inst/rmarkdown/templates/NPS DRR/skeleton/BICY_Example/FileStructure.PNG create mode 100644 inst/rmarkdown/templates/NPS DRR/skeleton/BICY_Example/PracticalExample.png create mode 100644 inst/rmarkdown/templates/NPS DRR/skeleton/BICY_Example/ProcessingWorkflow.png create mode 100644 inst/rmarkdown/templates/NPS DRR/skeleton/BICY_Example/WorkflowModelGeneral.png create mode 100644 inst/rmarkdown/templates/NPS DRR/skeleton/BICY_Example/WorkflowModelInventories.png create mode 100644 inst/rmarkdown/templates/NPS DRR/skeleton/BICY_Example/WorkflowModelMonitoring.png diff --git a/inst/rmarkdown/templates/NPS DRR/skeleton/BICY_Example/FileStructure.PNG b/inst/rmarkdown/templates/NPS DRR/skeleton/BICY_Example/FileStructure.PNG new file mode 100644 index 0000000000000000000000000000000000000000..344356dd38883e1af41f6a22f53da91f1c951566 GIT binary patch literal 2965 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 IjC79qCnAD(YybcN literal 0 HcmV?d00001 diff --git a/inst/rmarkdown/templates/NPS DRR/skeleton/BICY_Example/PracticalExample.png b/inst/rmarkdown/templates/NPS DRR/skeleton/BICY_Example/PracticalExample.png new file mode 100644 index 0000000000000000000000000000000000000000..dcf039fc23c8372e6ea93b9437d9fab4c57e9f9d GIT binary patch literal 40135 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
      Y%yz=e8lIcD#pb*I4W~ zwHHt**`Fa8;+urZ9311pnu?U93M#pGT#$ybCFVx2ztx4;2@a8nW2^JB`h$*t);fH< z&uK*KsGp{p7YefAFn^z49yyg=l@aa zBmUUVd*!g=e6^Bv#)V7pwc_o^{=^OH=Xv@VJ%Q+x;VMd&aZ=uBqWapkQoz@NS_5j z%b!{@CCxG_$L7H?b!on6chFga3%0xrb?UQaP}SaQe0{d{T+wfblbh%*;5Tj$rmN>c zGFCQ2kHE#;1ywpvU@PK&LVk&+8Kx-Jm6KL)_kDO=X-WVL8*(IFMhKT%}sO#s{!eBZA{fgmiU0&(oP`qU4Bmh!IB(kf%WRTM!yth3mnUSumB2CTVr!_ zo3UoFl3h*P5eC|>S_6(rPz4S{P(8&B>3yg{3Mai=$j5h`FRjy|3c5m&?3zFwLw-as z8bGvnzxTMsdXlYX;L$=3gvB-Vsv@YVYX4(eHCDT=O30to#ItAs(^Ugszl`B!IJis| z1y^)B!?=uqBvnje+K(XloQa;96t#<)6Q6j35210WjO#xYG?;a4R`vM%{V{c7X1**2 zP6CoZsG7LN^IVVfQ|QFx1rhjUIJOx-bl@+joo|Y2cE##ZBX97LGX&_*;7F2Q>iI>mb|;&;#+ID(di~(KzZ(e z!AU~Of3NP_U;)6g91^L99u5}+WXDqSaO9`?TgZwVJQ literal 0 HcmV?d00001 diff --git a/inst/rmarkdown/templates/NPS DRR/skeleton/BICY_Example/WorkflowModelGeneral.png b/inst/rmarkdown/templates/NPS DRR/skeleton/BICY_Example/WorkflowModelGeneral.png new file mode 100644 index 0000000000000000000000000000000000000000..506dff02574982bde355e3668432f19b2acdfe68 GIT binary patch literal 15023 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 E0l!*-Pyhe` literal 0 HcmV?d00001 diff --git a/inst/rmarkdown/templates/NPS DRR/skeleton/BICY_Example/WorkflowModelInventories.png b/inst/rmarkdown/templates/NPS DRR/skeleton/BICY_Example/WorkflowModelInventories.png new file mode 100644 index 0000000000000000000000000000000000000000..940e6c07a8ca0b0d29b602cb9daf4c98bef3f02b GIT binary patch literal 26785 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 literal 0 HcmV?d00001 diff --git a/inst/rmarkdown/templates/NPS DRR/skeleton/BICY_Example/WorkflowModelMonitoring.png b/inst/rmarkdown/templates/NPS DRR/skeleton/BICY_Example/WorkflowModelMonitoring.png new file mode 100644 index 0000000000000000000000000000000000000000..39dfb8c4fd757054badafdd8c955fcd0458fd79c GIT binary patch literal 31752 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 AF#rGn literal 0 HcmV?d00001 From eb84ce94d80d95cda2953920047b36b19827710a Mon Sep 17 00:00:00 2001 From: Rob Baker Date: Thu, 8 Feb 2024 15:44:41 -0700 Subject: [PATCH 11/33] remove unnecessary files --- .../skeleton/BICY_Example/FileStructure.PNG | Bin 2965 -> 0 bytes .../skeleton/BICY_Example/PracticalExample.png | Bin 40135 -> 0 bytes .../BICY_Example/WorkflowModelGeneral.png | Bin 15023 -> 0 bytes .../BICY_Example/WorkflowModelInventories.png | Bin 26785 -> 0 bytes .../BICY_Example/WorkflowModelMonitoring.png | Bin 31752 -> 0 bytes 5 files changed, 0 insertions(+), 0 deletions(-) delete mode 100644 inst/rmarkdown/templates/NPS DRR/skeleton/BICY_Example/FileStructure.PNG delete mode 100644 inst/rmarkdown/templates/NPS DRR/skeleton/BICY_Example/PracticalExample.png delete mode 100644 inst/rmarkdown/templates/NPS DRR/skeleton/BICY_Example/WorkflowModelGeneral.png delete mode 100644 inst/rmarkdown/templates/NPS DRR/skeleton/BICY_Example/WorkflowModelInventories.png delete mode 100644 inst/rmarkdown/templates/NPS DRR/skeleton/BICY_Example/WorkflowModelMonitoring.png diff --git a/inst/rmarkdown/templates/NPS DRR/skeleton/BICY_Example/FileStructure.PNG b/inst/rmarkdown/templates/NPS DRR/skeleton/BICY_Example/FileStructure.PNG deleted file mode 100644 index 344356dd38883e1af41f6a22f53da91f1c951566..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 2965 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 IjC79qCnAD(YybcN diff --git a/inst/rmarkdown/templates/NPS DRR/skeleton/BICY_Example/PracticalExample.png b/inst/rmarkdown/templates/NPS DRR/skeleton/BICY_Example/PracticalExample.png deleted file mode 100644 index dcf039fc23c8372e6ea93b9437d9fab4c57e9f9d..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 40135 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 E0l!*-Pyhe` diff --git a/inst/rmarkdown/templates/NPS DRR/skeleton/BICY_Example/WorkflowModelInventories.png b/inst/rmarkdown/templates/NPS DRR/skeleton/BICY_Example/WorkflowModelInventories.png deleted file mode 100644 index 940e6c07a8ca0b0d29b602cb9daf4c98bef3f02b..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 26785 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 diff --git a/inst/rmarkdown/templates/NPS DRR/skeleton/BICY_Example/WorkflowModelMonitoring.png b/inst/rmarkdown/templates/NPS DRR/skeleton/BICY_Example/WorkflowModelMonitoring.png deleted file mode 100644 index 39dfb8c4fd757054badafdd8c955fcd0458fd79c..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 31752 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 AF#rGn From a6ea8ebdf28185e5c5bdeafdbc6ca5d4d7c33441 Mon Sep 17 00:00:00 2001 From: Rob Baker Date: Thu, 8 Feb 2024 15:51:14 -0700 Subject: [PATCH 12/33] add here package; update paths to .pngs --- inst/rmarkdown/templates/NPS DRR/skeleton/skeleton.Rmd | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/inst/rmarkdown/templates/NPS DRR/skeleton/skeleton.Rmd b/inst/rmarkdown/templates/NPS DRR/skeleton/skeleton.Rmd index 80f91a9..7c71940 100644 --- a/inst/rmarkdown/templates/NPS DRR/skeleton/skeleton.Rmd +++ b/inst/rmarkdown/templates/NPS DRR/skeleton/skeleton.Rmd @@ -101,7 +101,8 @@ RRpackages <- c("markdown", "yaml", "kableExtra", "devtools", - "tidyverse") + "tidyverse", + "here") inst <- RRpackages %in% installed.packages() if (length(RRpackages[!inst]) > 0) { @@ -432,7 +433,9 @@ Specific data inputs and outputs should be explicitly cited in the text and incl Authors are encouraged to consider creating a figure that outlines the experimental workflow(s) used to generate and analyse the data output(s) (Figure 1). ```{r figure1, echo=FALSE, fig.cap="Example general workflow to include in the methods section."} -include_graphics("vignettes/common/ProcessingWorkflow.png") +knitr::include_graphics(here::here("Untitled", + "BICY_Example", + "ProcessingWorkflow.png")) ``` ## Data Collection and Sample Processing Methods (optional) From 4882ccd91f00fa77d68e2615435b2b8feba65b22 Mon Sep 17 00:00:00 2001 From: Rob Baker Date: Fri, 9 Feb 2024 08:09:57 -0700 Subject: [PATCH 13/33] Add files for DRR template instructions --- vignettes/articles/Starting-a-DRR.Rmd | 80 +++ vignettes/articles/Using-the-DRR-Template.Rmd | 482 ++++++++++++++++++ vignettes/articles/new_rmd.png | Bin 0 -> 21503 bytes vignettes/articles/new_rmd_template.png | Bin 0 -> 36569 bytes 4 files changed, 562 insertions(+) create mode 100644 vignettes/articles/Starting-a-DRR.Rmd create mode 100644 vignettes/articles/Using-the-DRR-Template.Rmd create mode 100644 vignettes/articles/new_rmd.png create mode 100644 vignettes/articles/new_rmd_template.png diff --git a/vignettes/articles/Starting-a-DRR.Rmd b/vignettes/articles/Starting-a-DRR.Rmd new file mode 100644 index 0000000..1d364d3 --- /dev/null +++ b/vignettes/articles/Starting-a-DRR.Rmd @@ -0,0 +1,80 @@ +--- +title: "Starting a DRR" +--- + +```{r setup, include=FALSE} +knitr::opts_chunk$set(echo = FALSE) + +# Learn more about creating websites with Distill at: +# https://rstudio.github.io/distill/website.html + +``` + + + +[![Lifecycle: experimental](https://img.shields.io/badge/lifecycle-experimental-orange.svg)](https://www.tidyverse.org/lifecycle/#experimental) + + + +# DRRs: Background + +[Purpose and Scope of Data Release Reports](PurposeAndScope.html) + +This is a template is for use when drafting Data Release Reports. DRRs are created by the National Park Service and provide detailed descriptions of valuable research datasets, including the methods used to collect the data and technical analyses supporting the quality of the measurements. Data Release Reports focus on helping others reuse data rather than presenting results, testing hypotheses, or presenting new interpretations and in-depth analyses. + +# About this Template + +This template contains an rmarkdown template file, default folder structure for project files, and all the necessary template files to generate an unformatted .docx file. Upon submission for publication, the .docx file will be ingested by EXstyles, converted to an .xml file and fully formatted according to NPS branding upon final publication. The goal of this process is to relieve data producers, managers, and scientists from the burden of formatting and allow them to focus primarily on content. Consequently, the .docx generated for the publication process may not be visually appealing. The content, however, should focus on quality control, of NPS data packages and evaluate their of utility. + +# How to Start a DRR + +1. **To start your DRR you will need all of your data in flat .csv files**. All quality assurance, quality control, and quality flagging should be completed. Ideally you have already created or are in the process of creating a data package. All of the .csv files you want to describe in the DRR should be in a single folder with **no additional .csv files** (other files such as .txt and .xml will be ignored). This folder can be the same folder you used/are using to create a data package. + +2. **Using Rstudio, open an R project** (Select File \> New Project...) in the same folder as your .csv files. If you already have an R project (.Rproj) initiated from creating a data package, you can use that same R project. + +3. **Install, update (if necessary), and load the QCkit R package**. QCkit can be installed either as a component of the [NPSdataverse](https://nationalparkservice.github.io/NPSdataverse/) or on its own. The benefits of installing the entire NPSdataverse is that upon loading the NPSdataverse, you will automatically be informed if there are any updates to QCkit (or any of the constituent packages). The downside to installing and loading the NPSdataverse is that the first time you install it the process can be lengthy (there are many dependencies) and you may hit the GitHub.com API rate limit. Either installation is from GitHub.com and requires the devtools package to install. + +```{r install_devtools, eval = FALSE} +# Install the devtools package, if you don't already have it: +install.pacakges("devtools") +``` + +```{r install_NPSdataverse, eval = FALSE} +# Install and load QCkit via NPSdataverse: +devtools::install_github("nationalparkservice/NPSdataverse") +library(NPSdataverse) +``` + +```{r install_QCkit, eval = FALSE} +# Install and load just QCkit: +devtools::install_github("nationalparkservice/QCkit") +library(QCkit) +``` + +4. **Open a new DRR Template**. From within Rstudio, select the "File" drop down menu. Choose "New File" and then "R markdown...". This will open up a pop-up dialog box. Select "From Template" on in the right-hand list and choose the template labelled "NPS DRR {QCkit}". You can change the file and folder name to something other than "Untitled", but if you do so the example DRR will not render properly. Click OK. A new folder will be generated in your current working directory titled, "Untitled" (or whatever name you have opted to call it). + +```{r echo = FALSE, out.width = "40%", out.height = "20%", fig.caption = "Opening a new DRR Template"} +knitr::include_graphics(c("new_rmd.png", "new_rmd_template.png")) +``` + +5. + +6. [How to Use this Template](HowToUseThisTemplate.html) line-by-line instructions and descriptions for how to use the DRR Template. + +7. [The DRR_Template](https://github.com/nationalparkservice/DRR_Template/blob/master/DRR_to_docx.Rmd) the file you make changes to to generate a DRR. Note: this is not a stand-alone file. To create a DRR please download the [zipped template](https://github.com/nationalparkservice/DRR_Template/zipball/master) with all associated files and folders. + +8. [Bibtex reference file](https://github.com/nationalparkservice/DRR_Template/raw/master/reference.bib) is used if you want to automate your citations. Add each citation in bibtex format to this file and save it. Add in-text citations to the DRR Template and your References section will automatically be generated for you when you knit the .Rmd to .docx. You should still visually check the final format in the .docx file for accuracy, completion, and formatting. If you would prefer to manually format your citations, feel free to continue doing so. + +9. [DRR_Report](https://github.com/nationalparkservice/DRR_Template/raw/master/DRR_to_docx.docx) an example of the .docx output file that takes into account your edits and changes to DRR_to_docx.Rmd (assuming you have saved and/or knit the .Rmd to .docx format in Rstudio). + +# Examples + +More will be provided as they are published. The following examples are post-formatting and should be used as examples for content generation only. + +1. [DRR for tabular (csv) datasets](DRAFT_2019_Report_NationalMeanDailyFlowsDataSummary.html) of hydrologic data used for calculating hydrologic metrics as a part of the national Environmental Settings monitoring protocol. + +2. [DRR for geospatial (file geodatabase) data](NPS-NRSS-DRR-2020-1.html) continuing custom areas of analysis used for Environmental Settings monitoring protocol. Report created in Microsoft Word and ported to the template. + +# Tips, FAQs, and Errata + +(coming soon) diff --git a/vignettes/articles/Using-the-DRR-Template.Rmd b/vignettes/articles/Using-the-DRR-Template.Rmd new file mode 100644 index 0000000..da82a7c --- /dev/null +++ b/vignettes/articles/Using-the-DRR-Template.Rmd @@ -0,0 +1,482 @@ +--- +title: "Using the DRR Template" +--- + +--- +title: "Using the DRR Template" +output: rmarkdown::html_vignette +vignette: > + %\VignetteIndexEntry{Using the DRR Template} + %\VignetteEnging{knitr::rmarkdown} + %\VignetteEncoding{UTF-8} +--- + +```{r setup, include=FALSE} +RRpackages <- c('markdown', # links to Sundown rendering library + 'rmarkdown', # newer rendering via pandoc + 'pander', # alternative renderer for markdown, + # plus better tables than just knitr + 'knitr', + "devtools", + "R.rsp", # dynamic generation of scientific reports + "rmdHelpers", # misc from Mark Peterson + # thisFileName() thisFile_knit() + 'yaml', # format data into markdown + 'kableExtra', + 'rmdformats', # templates including automatic ToC, + # also use_bookdown() + 'htmltools' # + ) + +inst <- RRpackages %in% installed.packages() +if (length(RRpackages[!inst]) > 0) { + install.packages(RRpackages[!inst], repos = "http://cran.us.r-project.org", dep = TRUE) +} +lapply(RRpackages, library, character.only = TRUE) + +knitr::opts_chunk$set( + echo = TRUE, + comment = " ", + dev = "svg", + tidy.opts = list(width.cutoff = 60), + tidy = TRUE + ) + +``` + +# Overview + +Data Release Reports (DRRs) are created by the National Park Service and +provide detailed descriptions of valuable research datasets, including +the methods used to collect the data and technical analyses supporting +the quality of the measurements. Data Release Reports focus on helping +others reuse data, rather than presenting results, testing hypotheses, +or presenting new interpretations, methods or in-depth analyses. + +DRRs are intended to document the processing of fully-QAed data to their +final (QCed) form in a reproducible and transparent manner. DRRs +document the data collection methods and quality standards used to +prepare and review data prior to release. DRRs present the quality of +resultant data in the context of fitness for their intended use. + +Each DRR cites source and resultant datasets that are published +concurrently and cross-referenced. Associated datasets are made publicly +available with the exception of data that must be protected from release +as per NPS and park-specific policies. + +Data packages that are published concurrently with DRRs are intended to +be independently citable scientific works that can serve as the basis +for subsequent analysis and reporting by NPS or third parties. + +# Project Set-up + +The Template is not a stand-alone file but instead has multiple +associated and dependent files. New projects can be established using by +downloading the Zip file associated with the latest +[release](https://github.com/nationalparkservice/DRR_Template/releases) +of the DRR template repository on GitHub. + +## Folder Structure + +General directory contents are as follows (Figure 1): + +```{r fig1, echo=FALSE, out.width="30%", fig.align="center", fig.cap="Standard project directory structure for Data Release Reports"} +#knitr::include_graphics("FileStructure.PNG") +``` + +- `input` This is the only location (other than the template script + itself) where you you should manually change or edit files. This is + where data files you need to supply should be placed. + + - `figures` If you have figures that are not generated as part of + running this template, place those files here. + +- `output` Do not edit these files. This is where you can find your + final products. Edits to files in this folder will not be + incorporated when you knit the DRR_to_docx.rmd file. Any edits you + make to files in this directory may be overwritten when you knit the + template. + +- `temp` Do not edit these files. These are files that are either used + or generated during when you knit the DRR_to_docx.rmd template. They + may include graphics, text, or data. + +- You can safely ignore most of the other folders (including `docs`, + `my-website`, `vignettes`,`.github`) and files (including + `_config.yml`, `.gitignore`, `.Rhistory`, `index.html`, and + `national-park-service-DRR.csl`). + +# Reproducible Reports + +The following is for users who are using the `DRR_to_docx.rmd` template +file to generate a data release report using RMarkdown. + +## Standard Code Chunks + +In addition to the report outline and a description of content for each +section, the template includes four standard code chunks. + +**YAML Header:** + +The YAML header helps format the DRR. You should not need to edit any of +the YAML header. + +**R code chunks:** + +- `user_edited_parameters`. A series of parameters that are used in + the creation of the DRR and may be re-used in metadata and + associated data package construction. You will need to edit these + parameters for each DRR. + + - `title`. The title of the Data Release Report. + - `reportNumber`. This is optional, and should *only* be included + if publishing in the semi-official DRR series. Set to NULL if + there is no reportNumber. + - `DRR_DSRefID`. This is the DataStore reference ID for the + report. + - `authorNames`. A list of the author's names. + - `authorAffiliations`. A list of the author's affiliations. The + order of author affiliations must match the order of the authors + in the `authorNames` list. Note that the entirety of each + affiliation is enclosed in a single set of quotations. Line + breaks are indicated with the
      tag. Do not worry about + indentation or word wrapping. If two authors have the same + affiliation, list the affiliation twice. + - `authorORCID`. A list of ORCID iDs for each author in the format + "xxxx-xxxx-xxxx-xxxx". If an author does not have an ORCID iD, + specify NA (no quotes). The order of ORCID iDs (and NAs) must + correspond to the order of authors in the `authorNames` list. + Future iterations of the DRR Template will pull ORCID iDs from + metadata and eventually from Active Directory. See + [ORCID](https://www.orcid.org/) for more information about ORCID + iDs or to register an ORCID iD. + - `DRRabstract`. The abstract for the DRR (which may be distinct + from the data package abstract). Pay careful attention to + non-standard characters, line breaks, carriage returns, and + curly-quotes. You may find it useful to write the abstract in + NotePad or some other text editor and NOT a word processor (such + as Microsoft Word). Indicate line breaks with \n and a space + between paragraphs - should you want them - using \n\n. The + Abstract should succinctly describe the study, the assay(s) + performed, the resulting data, and their reuse potential, but + should not make any claims regarding new scientific findings. No + references are allowed in this section. A good suggested length + for abstracts is less than 250 words. + - `dataPackageRefID`. DataStore reference ID for the data package + associated with this report. You must have at least one data + package. Eventually, we will automate importing much of this + information from metadata and include the ability to describe + multiple data packages in a single DRR. + - `dataPackageTitle`. The title of the data package. Must match + the title on DataStore (and metadata). + - `dataPackageDescription`. A short title/subtitle or short + description for the data package. Must match the data package + metadata. + - `dataPackageDOI`. Auto-generated, no need to edit or update. + This is the data package DOI. It is based on the DataStore + reference number. + - `dataPackage_fileNames`. List the file names in your data + package. Do NOT include metadata files. For example, include + "my_data.csv" but do NOT include "my_metadata.xml". + - `dataPackage_fileSizes`. List the approximate size of each data + file. Make sure the order of the file sizes corresponds to the + order of file names in `dataPackage_fileNames`. + `dataPackage_fileDescript`. A short description of the + corresponding data file that helps distinguish it from other + data files. A good guideline is 10 words or less. This will be + used in a table summary table so brevity is a priority. If you + have already created metadata for your data package in EML + format, this should be the same text as found in the + "entityDescription" element for each data file. + +- `setup`. Most users will not need to edit this code chunk. There is + one code snippet for loading packages; the `RRpackages` section is a + suite of packages that are used to assist with reproducible + reporting. You may not need these for your report, but we have + included them as part of the base recommended packages. If you plan + to perform you QC as part of the DRR construction process, you can + add a second code snipped to import necessary packages for your QC + process here. + +- `title_do_not_edit`. These parameters are auto-generated based on + either the EML you supplied (when that becomes an option) or the + information you've already supplied under "user-edited-parameters". + You really should not need to edit these parameters. + +- `authors_do_not_edit`. There is no need to edit this chunk. This + writes the author names, ORCID iDs, and affiliations to the .docx + document based on information supplied in user-edited-parameters. + +- `LoadData`. Any datasets you need to load can go here. For most + people these datasets are used to generate summary statistics on + proportions of data that were flagged as accepted (A) accepted, + estimated (AE) and rejected (R) during the quality control process. + +- `FileTable`. Do not edit. Generates a table of file names, sizes, + and descriptions in the data package being described by the DRR. + +- `dataFlaggingTable`. This sample code provides a summary table + defining the suggested data flagging codes. There is no need to edit + this table. + +- `Listing`. Appendix A, by default is the code listing. This will + generate all code used in generating the report and data packages. + In most cases, code listing is not required. If all QA/QC processes + and data manipulations were performed elsewhere, you should cite + that code (in the methods and references) and leave the "listing + code chunk with the default settings of eval=FALSE and echo=FALSE. + If you have developed custom scripts, you can add those to DataStore + with the reference "Script" and cite them in the DRR. + +- `session-info` is the information about the versions of R and + packages used in generating the report. In most cases, you do not + need to report session info (leave the session-info code chunk + parameters in their default state: eval=FALSE). Session and version + information is only necessary if you have set the "Listing" code + chunk in appendix A to eval=TRUE. In that case, change the "session + info" code chunk parameters to eval=TRUE. + +## Citations + +### Automating Citations + +To automate citations, add the citation in bibtex format to the file +"references.bib". You can manually copy and paste the bibtex for each +reference in, or you can search for it from within Rstudio. From within +Rstudio, make sure you are editing this document using the "Visual" view +(as opposed to "Source"). From the "Insert" drop-down menu, select "\@ +Citation..." (shortcut: Cntrl-Shift-F8). This will open a Graphical User +Interface (GUI) tool where you can view all the citations in your +reference.bib file as well as search multiple databases for references, +automatically insert the bibtex for the reference into your +references.bib file (and customize the unique identifier if you'd like) +and insert the in-text citation into the DRR template. + +```{r fig2, echo=FALSE, out.width="75%", fig.align="center", fig.cap="Adding Citations - Source vs. Visual editing of the Template and how to access the citation manager."} +#knitr::include_graphics("RMD_vis_source.png") +``` + +```{r fig3, echo=FALSE, out.width="75%", fig.align="center", fig.cap="Adding Citations - Using the citation manager."} +#knitr::include_graphics("R_citation_manager.png") +``` + +Once a reference is in your references.bib file, using the Visual view +of the template you can simply type the '\@' symbol and select which +reference to insert in the text. + +If you need to edit how the citation is displayed after inserting it +into the text, switch back to the "Source" view. Each bibtex citation +should start with a unique identifier; the example reference in the +supplied references.bib file has the unique identifier +"@article{Scott1994,". Using the "Source" view in Rstudio, insert the +reference in your text, by combining the "at" symbol with the portion of +the unique identifier after the curly bracket: @Scott1994 . + +| Syntax | Result | +|------------------------------------|-----------------------------------| +| `@Scott1994` concludes that ... | Scott et al., 1994 concludes that ... | +| `@Scott1994[p.33]` concludes that ... | Scott (1994, p.33) concludes that ... | +| ... end of sentence `[@Scott1994]`. | ... end of sentence (Scott et al., 1994). | +| ... end of sentence `[see @Scott1994,p.33]`. | ... end of sentence (see Scott et al. 1994,p.33). | +| delineate multiple authors with colon: `[@Scott1994; @aberdeen1958]` | delineate multiple authors with colon: (Scott et al., 1994; Aberdeen, 1958) | +| Scott et al. conclude that .... [-@Scott1994] | Scott et al. conclude that . . . (1994) | + + +The full citation, properly formatted, will be included in a "References" section at the end of the rendered MS Word document. . . though it is also worth visually +inspecting the .docx for citation completeness and formatting. + +### Manual citations + +If you would like to format your citations manually, please feel free to +do so. Make sure to look at the References section for how to +properly format each citation type. + +# Editing the Text + +The following text in the body of the DRR template will need to be +edited to customize it to each data package. + +### Data Records + +This is a required section and consists of two subheadings: + +- **Data inputs** - an optional subsection used to describe datasets + that the data package is based on if it is a re-analysis, + reorganization, or re-integration of prevously existing data sets. + +- **Summary of datasts created** - this is a required section used to + explain each data record associated with the work (for instance, a + data package), including the DOI indicating where this information + is stored. It shoudl also provide an overview of the data files and + their formats. Each external data record should be cited. + +Sample text is included that uses r code to incorporate previously +specified parameters such as the data package title, file names, and +DOI. + +A code for a sample table summarizing the contents of the data package +(except the metadata) is provided. + +### Data Quality + +This is a required section. and the text includes multiple suggested +text elements and code for an example table defining data flagging +codes. Near future development here will incorporate additional optional +tables to summarize the data quality based on the flags in the data +sets. + +### Usage Notes + +This is a required section that should contain brief instructions to +assist other researchers with reuse of the data. This may include +discussion of software packages (with appropriate citations) that are +suitable for analysing the assay data files, suggested downstream +processing steps (e.g. normalization, etc.), or tips for integrating or +comparing the data records with other datasets. Authors are encouraged +to provide code, programs or data-processing workflows if they may help +others understand or use the data. + +### Methods + +This is a required section that cites previous methods used but should +also be detailed enough in describing data production including the +experimental design, data acquisition assays, and any computational +processing (e.g. normalization, QA, QC) such that others can understand +the methods without referring to associated publications. + +Optional sub-sections within the methods include: + +- **Data Collection and Sampling** +- **Additional Data Sources** +- **Data Processing** +- **Code availability** + +### References + +This required section includes full bibliographic references for each +paper, chapter, book, data package, dataset, protocol, etc cited within +the DRR. + +There are numerous examples of proper formatting for each of these. +Future versions of the DRR will enable automatic reference formatting +given a correctly formatted bibtex file with the references (.bib). + +## Figures + +Figures should be inserted using code chunks in all cases so that figure +settings can be set in the chunk header. The chunk header should at a +minimum set the fig.align parameter to “center” and the specify the +figure caption (fig.cap parameter). Inserting figures this way will +ensure that the caption is properly formatted and it will apply copy the +caption to the figure’s “alt text” tag, making it 508-compliant. + +For example: + +```` markdown +`r ''````{r fig2, echo=FALSE, out.width="70%", fig.align="center", fig.cap="Example general workflow to incude in the methods section."} +knitr::include_graphics("ProcessingWorkflow.png") +``` +```` + +Results in: + +```{r fig4, echo=FALSE, out.width="70%", fig.align="center", fig.cap="Example general workflow to incude in the methods section."} +#knitr::include_graphics("ProcessingWorkflow.png") +``` + +## Tables + +Tables should be created using the kable function. Specifying the +caption in the kable function call (as opposed to inline markdown text) +will ensure that the caption is appropriately formatted. + +For example: + +```` markdown +`r ''````{r Table2, echo=FALSE} +c1<-c("Protocol1","Protocol2","Protocol3") +c2<-c("Park Unit 1","Park Unit 2","Park Unit 3") +c3<-c("Site 1","Site 2","Site 3") +c4<-c("Date 1","Date 2","Date 3") +c5<-c("GEOXXXXX","GEOXXXXX","GEOXXXXX") +Table2<-data.frame(c1,c2,c3,c4,c5) + +kable(Table2, + col.names=c("Subjects","Park Units","Locations","Sampling Dates","Data"), + caption="**Table 1.** Monitoring study example Data Records table.") %>% + kable_styling(bootstrap_options = c("striped", "hover", "condensed", "responsive"),full_width=F) +``` +```` + +Results in: + +```{r Table2, echo=FALSE} +c1<-c("Protocol1","Protocol2","Protocol3") +c2<-c("Park Unit 1","Park Unit 2","Park Unit 3") +c3<-c("Site 1","Site 2","Site 3") +c4<-c("Date 1","Date 2","Date 3") +c5<-c("GEOXXXXX","GEOXXXXX","GEOXXXXX") +Table2<-data.frame(c1,c2,c3,c4,c5) + +kable(Table2, + col.names=c("Subjects","Park Units","Locations","Sampling Dates","Data"), + caption="**Table 1.** Monitoring study example Data Records table.") %>% + kable_styling(bootstrap_options = c("striped", "hover", "condensed", "responsive"),full_width=F) +``` + +# Publishing DRRs + +## Report Numbers + +Because data release reports and associated data packages are +cross-referential, report numbers are typically assigned early in data +processing and quality evaluation. + +- **DataStore Reference Numbers.** When developing a report and data + packages, DataStore references should be created as early in the + process as practicable. While the report and data packages are in + development, these should not be activated. + +- **Report Numbers.** If you are planning to publish a Data Release + Report with an official DRR number, please contact the IMD Deputy + Chief with the DataStore reference number associated with the DRR. + +- **Persistent Identifiers.** Digital object identifiers (DOIs) will + be assigned to all DRRs and concurrently published data packages. + DOIs will resolve to a DataStore Reference; DOIs are reserved when a + draft reference is initiated in DataStore. They are not activated + until the publication process, including relevant review, is + complete. + +DRR DOIs have the format: + +Data package DOIs have the format: + +Where the "xxxxxx" is the 7-digit DataStore reference number. + +## Liability Statements + +Under no circumstances should reports and associated data packages or +metadata published in the DRR series contain disclaimers or text that +suggests that the work does not meet scientific integrity or information +quality standards of the National Park Service. The following +disclaimers are suitable for use, depending on whether the data are +provisional or final (or approved or certified). + +> **For approved & published data sets:** "Unless otherwise stated, all +> data, metadata and related materials are considered to satisfy the +> quality standards relative to the purpose for which the data were +> collected. Although these data and associated metadata have been +> reviewed for accuracy and completeness and approved for release by the +> National Park Service Inventory and Monitoring Division, no warranty +> expressed or implied is made regarding the display or utility of the +> data for other purposes, nor on all computer systems, nor shall the +> act of distribution constitute any such warranty." + +> **For provisional data:** "The data you have secured from the National +> Park Service (NPS) database identified as [database name] have not +> received approval for release by the NPS Inventory and Monitoring +> Division, and as such are provisional and subject to revision. The +> data are released on the condition that neither the NPS nor the U.S. +> Government shall be held liable for any damages resulting from its +> authorized or unauthorized use." diff --git a/vignettes/articles/new_rmd.png b/vignettes/articles/new_rmd.png new file mode 100644 index 0000000000000000000000000000000000000000..1a15431ce237df9e8031963ece1f2e92111f6c51 GIT binary patch literal 21503 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 literal 0 HcmV?d00001 From be3ce386356127695d614fb86ca4eead99f42d3c Mon Sep 17 00:00:00 2001 From: Rob Baker Date: Fri, 9 Feb 2024 08:10:11 -0700 Subject: [PATCH 14/33] remove vignettes; convert to articles --- vignettes/a01_DRR_Background.Rmd | 53 --- vignettes/a02_Using_DRR_Template.Rmd | 478 --------------------------- 2 files changed, 531 deletions(-) delete mode 100644 vignettes/a01_DRR_Background.Rmd delete mode 100644 vignettes/a02_Using_DRR_Template.Rmd diff --git a/vignettes/a01_DRR_Background.Rmd b/vignettes/a01_DRR_Background.Rmd deleted file mode 100644 index d65b993..0000000 --- a/vignettes/a01_DRR_Background.Rmd +++ /dev/null @@ -1,53 +0,0 @@ ---- -title: "Getting Started with NPS DRRs" -output: rmarkdown::html_vignette -vignette: > - %\VignetteIndexEntry{Getting Started with NPS DRRs} - %\VignetteEnging{knitr::rmarkdown} - %\VignetteEncoding{UTF-8} ---- - -```{r setup, include=FALSE} -knitr::opts_chunk$set(echo = FALSE) - -# Learn more about creating websites with Distill at: -# https://rstudio.github.io/distill/website.html - -``` - -[![Lifecycle: experimental](https://img.shields.io/badge/lifecycle-experimental-orange.svg)](https://www.tidyverse.org/lifecycle/#experimental) - - - -# DRRs: Background - -[Purpose and Scope of Data Release Reports](PurposeAndScope.html) - -This is a template is for use when drafting Data Release Reports. DRRs are created by the National Park Service and provide detailed descriptions of valuable research datasets, including the methods used to collect the data and technical analyses supporting the quality of the measurements. Data Release Reports focus on helping others reuse data rather than presenting results, testing hypotheses, or presenting new interpretations and in-depth analyses. - -# About this Template -This template contains an rmarkdown template file, default folder structure for project files, and all the necessary template files to generate an unformatted .docx file. Upon submission for publication, the .docx file will be ingested by EXstyles, converted to an .xml file and fully formatted according to NPS branding upon final publication. The goal of this process is to relieve data producers, managers, and scientists from the burden of formatting and allow them to focus primarily on content. Consequently, the .docx generated for the publication process may not be visually appealing. The content, however, should focus on quality control, of NPS data packages and evaluate their of utility. - -# How to Start a DRR - -New projects can be established using this template by downloading a zip file of the template and associated files and folders from: [This Link](https://github.com/nationalparkservice/DRR_Template/zipball/master) - -1. [How to Use this Template](HowToUseThisTemplate.html) line-by-line instructions and descriptions for how to use the DRR Template. - -2. [The DRR_Template](https://github.com/nationalparkservice/DRR_Template/blob/master/DRR_to_docx.Rmd) the file you make changes to to generate a DRR. Note: this is not a stand-alone file. To create a DRR please download the [zipped template](https://github.com/nationalparkservice/DRR_Template/zipball/master) with all associated files and folders. - -3. [Bibtex reference file](https://github.com/nationalparkservice/DRR_Template/raw/master/reference.bib) is used if you want to automate your citations. Add each citation in bibtex format to this file and save it. Add in-text citations to the DRR Template and your References section will automatically be generated for you when you knit the .Rmd to .docx. You should still visually check the final format in the .docx file for accuracy, completion, and formatting. If you would prefer to manually format your citations, feel free to continue doing so. - -4. [DRR_Report](https://github.com/nationalparkservice/DRR_Template/raw/master/DRR_to_docx.docx) an example of the .docx output file that takes into account your edits and changes to DRR_to_docx.Rmd (assuming you have saved and/or knit the .Rmd to .docx format in Rstudio). - -# Examples -More will be provided as they are published. The following examples are post-formatting and should be used as examples for content generation only. - -1. [DRR for tabular (csv) datasets](DRAFT_2019_Report_NationalMeanDailyFlowsDataSummary.html) of hydrologic data used for calculating hydrologic metrics as a part of the national Environmental Settings monitoring protocol. - -2. [DRR for geospatial (file geodatabase) data](NPS-NRSS-DRR-2020-1.html) continuing custom areas of analysis used for Environmental Settings monitoring protocol. Report created in Microsoft Word and ported to the template. - -# Tips, FAQs, and Errata -(coming soon) - - diff --git a/vignettes/a02_Using_DRR_Template.Rmd b/vignettes/a02_Using_DRR_Template.Rmd deleted file mode 100644 index af08982..0000000 --- a/vignettes/a02_Using_DRR_Template.Rmd +++ /dev/null @@ -1,478 +0,0 @@ ---- -title: "Using the DRR Template" -output: rmarkdown::html_vignette -vignette: > - %\VignetteIndexEntry{Using the DRR Template} - %\VignetteEnging{knitr::rmarkdown} - %\VignetteEncoding{UTF-8} ---- - -```{r setup, include=FALSE} -RRpackages <- c('markdown', # links to Sundown rendering library - 'rmarkdown', # newer rendering via pandoc - 'pander', # alternative renderer for markdown, - # plus better tables than just knitr - 'knitr', - "devtools", - "R.rsp", # dynamic generation of scientific reports - "rmdHelpers", # misc from Mark Peterson - # thisFileName() thisFile_knit() - 'yaml', # format data into markdown - 'kableExtra', - 'rmdformats', # templates including automatic ToC, - # also use_bookdown() - 'htmltools' # - ) - -inst <- RRpackages %in% installed.packages() -if (length(RRpackages[!inst]) > 0) { - install.packages(RRpackages[!inst], repos = "http://cran.us.r-project.org", dep = TRUE) -} -lapply(RRpackages, library, character.only = TRUE) - -knitr::opts_chunk$set( - echo = TRUE, - comment = " ", - dev = "svg", - tidy.opts = list(width.cutoff = 60), - tidy = TRUE - ) - -``` - -# Overview - -Data Release Reports (DRRs) are created by the National Park Service and -provide detailed descriptions of valuable research datasets, including -the methods used to collect the data and technical analyses supporting -the quality of the measurements. Data Release Reports focus on helping -others reuse data, rather than presenting results, testing hypotheses, -or presenting new interpretations, methods or in-depth analyses. - -DRRs are intended to document the processing of fully-QAed data to their -final (QCed) form in a reproducible and transparent manner. DRRs -document the data collection methods and quality standards used to -prepare and review data prior to release. DRRs present the quality of -resultant data in the context of fitness for their intended use. - -Each DRR cites source and resultant datasets that are published -concurrently and cross-referenced. Associated datasets are made publicly -available with the exception of data that must be protected from release -as per NPS and park-specific policies. - -Data packages that are published concurrently with DRRs are intended to -be independently citable scientific works that can serve as the basis -for subsequent analysis and reporting by NPS or third parties. - -# Project Set-up - -The Template is not a stand-alone file but instead has multiple -associated and dependent files. New projects can be established using by -downloading the Zip file associated with the latest -[release](https://github.com/nationalparkservice/DRR_Template/releases) -of the DRR template repository on GitHub. - -## Folder Structure - -General directory contents are as follows (Figure 1): - -```{r fig1, echo=FALSE, out.width="30%", fig.align="center", fig.cap="Standard project directory structure for Data Release Reports"} -#knitr::include_graphics("FileStructure.PNG") -``` - -- `input` This is the only location (other than the template script - itself) where you you should manually change or edit files. This is - where data files you need to supply should be placed. - - - `figures` If you have figures that are not generated as part of - running this template, place those files here. - -- `output` Do not edit these files. This is where you can find your - final products. Edits to files in this folder will not be - incorporated when you knit the DRR_to_docx.rmd file. Any edits you - make to files in this directory may be overwritten when you knit the - template. - -- `temp` Do not edit these files. These are files that are either used - or generated during when you knit the DRR_to_docx.rmd template. They - may include graphics, text, or data. - -- You can safely ignore most of the other folders (including `docs`, - `my-website`, `vignettes`,`.github`) and files (including - `_config.yml`, `.gitignore`, `.Rhistory`, `index.html`, and - `national-park-service-DRR.csl`). - -# Reproducible Reports - -The following is for users who are using the `DRR_to_docx.rmd` template -file to generate a data release report using RMarkdown. - -## Standard Code Chunks - -In addition to the report outline and a description of content for each -section, the template includes four standard code chunks. - -**YAML Header:** - -The YAML header helps format the DRR. You should not need to edit any of -the YAML header. - -**R code chunks:** - -- `user_edited_parameters`. A series of parameters that are used in - the creation of the DRR and may be re-used in metadata and - associated data package construction. You will need to edit these - parameters for each DRR. - - - `title`. The title of the Data Release Report. - - `reportNumber`. This is optional, and should *only* be included - if publishing in the semi-official DRR series. Set to NULL if - there is no reportNumber. - - `DRR_DSRefID`. This is the DataStore reference ID for the - report. - - `authorNames`. A list of the author's names. - - `authorAffiliations`. A list of the author's affiliations. The - order of author affiliations must match the order of the authors - in the `authorNames` list. Note that the entirety of each - affiliation is enclosed in a single set of quotations. Line - breaks are indicated with the
      tag. Do not worry about - indentation or word wrapping. If two authors have the same - affiliation, list the affiliation twice. - - `authorORCID`. A list of ORCID iDs for each author in the format - "xxxx-xxxx-xxxx-xxxx". If an author does not have an ORCID iD, - specify NA (no quotes). The order of ORCID iDs (and NAs) must - correspond to the order of authors in the `authorNames` list. - Future iterations of the DRR Template will pull ORCID iDs from - metadata and eventually from Active Directory. See - [ORCID](https://www.orcid.org/) for more information about ORCID - iDs or to register an ORCID iD. - - `DRRabstract`. The abstract for the DRR (which may be distinct - from the data package abstract). Pay careful attention to - non-standard characters, line breaks, carriage returns, and - curly-quotes. You may find it useful to write the abstract in - NotePad or some other text editor and NOT a word processor (such - as Microsoft Word). Indicate line breaks with \n and a space - between paragraphs - should you want them - using \n\n. The - Abstract should succinctly describe the study, the assay(s) - performed, the resulting data, and their reuse potential, but - should not make any claims regarding new scientific findings. No - references are allowed in this section. A good suggested length - for abstracts is less than 250 words. - - `dataPackageRefID`. DataStore reference ID for the data package - associated with this report. You must have at least one data - package. Eventually, we will automate importing much of this - information from metadata and include the ability to describe - multiple data packages in a single DRR. - - `dataPackageTitle`. The title of the data package. Must match - the title on DataStore (and metadata). - - `dataPackageDescription`. A short title/subtitle or short - description for the data package. Must match the data package - metadata. - - `dataPackageDOI`. Auto-generated, no need to edit or update. - This is the data package DOI. It is based on the DataStore - reference number. - - `dataPackage_fileNames`. List the file names in your data - package. Do NOT include metadata files. For example, include - "my_data.csv" but do NOT include "my_metadata.xml". - - `dataPackage_fileSizes`. List the approximate size of each data - file. Make sure the order of the file sizes corresponds to the - order of file names in `dataPackage_fileNames`. - `dataPackage_fileDescript`. A short description of the - corresponding data file that helps distinguish it from other - data files. A good guideline is 10 words or less. This will be - used in a table summary table so brevity is a priority. If you - have already created metadata for your data package in EML - format, this should be the same text as found in the - "entityDescription" element for each data file. - -- `setup`. Most users will not need to edit this code chunk. There is - one code snippet for loading packages; the `RRpackages` section is a - suite of packages that are used to assist with reproducible - reporting. You may not need these for your report, but we have - included them as part of the base recommended packages. If you plan - to perform you QC as part of the DRR construction process, you can - add a second code snipped to import necessary packages for your QC - process here. - -- `title_do_not_edit`. These parameters are auto-generated based on - either the EML you supplied (when that becomes an option) or the - information you've already supplied under "user-edited-parameters". - You really should not need to edit these parameters. - -- `authors_do_not_edit`. There is no need to edit this chunk. This - writes the author names, ORCID iDs, and affiliations to the .docx - document based on information supplied in user-edited-parameters. - -- `LoadData`. Any datasets you need to load can go here. For most - people these datasets are used to generate summary statistics on - proportions of data that were flagged as accepted (A) accepted, - estimated (AE) and rejected (R) during the quality control process. - -- `FileTable`. Do not edit. Generates a table of file names, sizes, - and descriptions in the data package being described by the DRR. - -- `dataFlaggingTable`. This sample code provides a summary table - defining the suggested data flagging codes. There is no need to edit - this table. - -- `Listing`. Appendix A, by default is the code listing. This will - generate all code used in generating the report and data packages. - In most cases, code listing is not required. If all QA/QC processes - and data manipulations were performed elsewhere, you should cite - that code (in the methods and references) and leave the "listing - code chunk with the default settings of eval=FALSE and echo=FALSE. - If you have developed custom scripts, you can add those to DataStore - with the reference "Script" and cite them in the DRR. - -- `session-info` is the information about the versions of R and - packages used in generating the report. In most cases, you do not - need to report session info (leave the session-info code chunk - parameters in their default state: eval=FALSE). Session and version - information is only necessary if you have set the "Listing" code - chunk in appendix A to eval=TRUE. In that case, change the "session - info" code chunk parameters to eval=TRUE. - -## Citations - -### Automating Citations - -To automate citations, add the citation in bibtex format to the file -"references.bib". You can manually copy and paste the bibtex for each -reference in, or you can search for it from within Rstudio. From within -Rstudio, make sure you are editing this document using the "Visual" view -(as opposed to "Source"). From the "Insert" drop-down menu, select "\@ -Citation..." (shortcut: Cntrl-Shift-F8). This will open a Graphical User -Interface (GUI) tool where you can view all the citations in your -reference.bib file as well as search multiple databases for references, -automatically insert the bibtex for the reference into your -references.bib file (and customize the unique identifier if you'd like) -and insert the in-text citation into the DRR template. - -```{r fig2, echo=FALSE, out.width="75%", fig.align="center", fig.cap="Adding Citations - Source vs. Visual editing of the Template and how to access the citation manager."} -#knitr::include_graphics("RMD_vis_source.png") -``` - -```{r fig3, echo=FALSE, out.width="75%", fig.align="center", fig.cap="Adding Citations - Using the citation manager."} -#knitr::include_graphics("R_citation_manager.png") -``` - -Once a reference is in your references.bib file, using the Visual view -of the template you can simply type the '\@' symbol and select which -reference to insert in the text. - -If you need to edit how the citation is displayed after inserting it -into the text, switch back to the "Source" view. Each bibtex citation -should start with a unique identifier; the example reference in the -supplied references.bib file has the unique identifier -"@article{Scott1994,". Using the "Source" view in Rstudio, insert the -reference in your text, by combining the "at" symbol with the portion of -the unique identifier after the curly bracket: @Scott1994 . - -| Syntax | Result | -|------------------------------------|-----------------------------------| -| `@Scott1994` concludes that ... | Scott et al., 1994 concludes that ... | -| `@Scott1994[p.33]` concludes that ... | Scott (1994, p.33) concludes that ... | -| ... end of sentence `[@Scott1994]`. | ... end of sentence (Scott et al., 1994). | -| ... end of sentence `[see @Scott1994,p.33]`. | ... end of sentence (see Scott et al. 1994,p.33). | -| delineate multiple authors with colon: `[@Scott1994; @aberdeen1958]` | delineate multiple authors with colon: (Scott et al., 1994; Aberdeen, 1958) | -| Scott et al. conclude that .... [-@Scott1994] | Scott et al. conclude that . . . (1994) | - - -The full citation, properly formatted, will be included in a "References" section at the end of the rendered MS Word document. . . though it is also worth visually -inspecting the .docx for citation completeness and formatting. - -### Manual citations - -If you would like to format your citations manually, please feel free to -do so. Make sure to look at the References section for how to -properly format each citation type. - -# Editing the Text - -The following text in the body of the DRR template will need to be -edited to customize it to each data package. - -### Data Records - -This is a required section and consists of two subheadings: - -- **Data inputs** - an optional subsection used to describe datasets - that the data package is based on if it is a re-analysis, - reorganization, or re-integration of prevously existing data sets. - -- **Summary of datasts created** - this is a required section used to - explain each data record associated with the work (for instance, a - data package), including the DOI indicating where this information - is stored. It shoudl also provide an overview of the data files and - their formats. Each external data record should be cited. - -Sample text is included that uses r code to incorporate previously -specified parameters such as the data package title, file names, and -DOI. - -A code for a sample table summarizing the contents of the data package -(except the metadata) is provided. - -### Data Quality - -This is a required section. and the text includes multiple suggested -text elements and code for an example table defining data flagging -codes. Near future development here will incorporate additional optional -tables to summarize the data quality based on the flags in the data -sets. - -### Usage Notes - -This is a required section that should contain brief instructions to -assist other researchers with reuse of the data. This may include -discussion of software packages (with appropriate citations) that are -suitable for analysing the assay data files, suggested downstream -processing steps (e.g. normalization, etc.), or tips for integrating or -comparing the data records with other datasets. Authors are encouraged -to provide code, programs or data-processing workflows if they may help -others understand or use the data. - -### Methods - -This is a required section that cites previous methods used but should -also be detailed enough in describing data production including the -experimental design, data acquisition assays, and any computational -processing (e.g. normalization, QA, QC) such that others can understand -the methods without referring to associated publications. - -Optional sub-sections within the methods include: - -- **Data Collection and Sampling** -- **Additional Data Sources** -- **Data Processing** -- **Code availability** - -### References - -This required section includes full bibliographic references for each -paper, chapter, book, data package, dataset, protocol, etc cited within -the DRR. - -There are numerous examples of proper formatting for each of these. -Future versions of the DRR will enable automatic reference formatting -given a correctly formatted bibtex file with the references (.bib). - -## Figures - -Figures should be inserted using code chunks in all cases so that figure -settings can be set in the chunk header. The chunk header should at a -minimum set the fig.align parameter to “center” and the specify the -figure caption (fig.cap parameter). Inserting figures this way will -ensure that the caption is properly formatted and it will apply copy the -caption to the figure’s “alt text” tag, making it 508-compliant. - -For example: - -```` markdown -`r ''````{r fig2, echo=FALSE, out.width="70%", fig.align="center", fig.cap="Example general workflow to incude in the methods section."} -knitr::include_graphics("ProcessingWorkflow.png") -``` -```` - -Results in: - -```{r fig4, echo=FALSE, out.width="70%", fig.align="center", fig.cap="Example general workflow to incude in the methods section."} -#knitr::include_graphics("ProcessingWorkflow.png") -``` - -## Tables - -Tables should be created using the kable function. Specifying the -caption in the kable function call (as opposed to inline markdown text) -will ensure that the caption is appropriately formatted. - -For example: - -```` markdown -`r ''````{r Table2, echo=FALSE} -c1<-c("Protocol1","Protocol2","Protocol3") -c2<-c("Park Unit 1","Park Unit 2","Park Unit 3") -c3<-c("Site 1","Site 2","Site 3") -c4<-c("Date 1","Date 2","Date 3") -c5<-c("GEOXXXXX","GEOXXXXX","GEOXXXXX") -Table2<-data.frame(c1,c2,c3,c4,c5) - -kable(Table2, - col.names=c("Subjects","Park Units","Locations","Sampling Dates","Data"), - caption="**Table 1.** Monitoring study example Data Records table.") %>% - kable_styling(bootstrap_options = c("striped", "hover", "condensed", "responsive"),full_width=F) -``` -```` - -Results in: - -```{r Table2, echo=FALSE} -c1<-c("Protocol1","Protocol2","Protocol3") -c2<-c("Park Unit 1","Park Unit 2","Park Unit 3") -c3<-c("Site 1","Site 2","Site 3") -c4<-c("Date 1","Date 2","Date 3") -c5<-c("GEOXXXXX","GEOXXXXX","GEOXXXXX") -Table2<-data.frame(c1,c2,c3,c4,c5) - -kable(Table2, - col.names=c("Subjects","Park Units","Locations","Sampling Dates","Data"), - caption="**Table 1.** Monitoring study example Data Records table.") %>% - kable_styling(bootstrap_options = c("striped", "hover", "condensed", "responsive"),full_width=F) -``` - -# Publishing DRRs - -## Report Numbers - -Because data release reports and associated data packages are -cross-referential, report numbers are typically assigned early in data -processing and quality evaluation. - -- **DataStore Reference Numbers.** When developing a report and data - packages, DataStore references should be created as early in the - process as practicable. While the report and data packages are in - development, these should not be activated. - -- **Report Numbers.** If you are planning to publish a Data Release - Report with an official DRR number, please contact the IMD Deputy - Chief with the DataStore reference number associated with the DRR. - -- **Persistent Identifiers.** Digital object identifiers (DOIs) will - be assigned to all DRRs and concurrently published data packages. - DOIs will resolve to a DataStore Reference; DOIs are reserved when a - draft reference is initiated in DataStore. They are not activated - until the publication process, including relevant review, is - complete. - -DRR DOIs have the format: - -Data package DOIs have the format: - -Where the "xxxxxx" is the 7-digit DataStore reference number. - -## Liability Statements - -Under no circumstances should reports and associated data packages or -metadata published in the DRR series contain disclaimers or text that -suggests that the work does not meet scientific integrity or information -quality standards of the National Park Service. The following -disclaimers are suitable for use, depending on whether the data are -provisional or final (or approved or certified). - -> **For approved & published data sets:** "Unless otherwise stated, all -> data, metadata and related materials are considered to satisfy the -> quality standards relative to the purpose for which the data were -> collected. Although these data and associated metadata have been -> reviewed for accuracy and completeness and approved for release by the -> National Park Service Inventory and Monitoring Division, no warranty -> expressed or implied is made regarding the display or utility of the -> data for other purposes, nor on all computer systems, nor shall the -> act of distribution constitute any such warranty." - -> **For provisional data:** "The data you have secured from the National -> Park Service (NPS) database identified as [database name] have not -> received approval for release by the NPS Inventory and Monitoring -> Division, and as such are provisional and subject to revision. The -> data are released on the condition that neither the NPS nor the U.S. -> Government shall be held liable for any damages resulting from its -> authorized or unauthorized use." From 7bc3d079e9c855a9f77fa2ca690537c1ac52d9ae Mon Sep 17 00:00:00 2001 From: Rob Baker Date: Fri, 9 Feb 2024 09:12:53 -0700 Subject: [PATCH 15/33] update documentation --- vignettes/articles/Starting-a-DRR.Rmd | 22 ++++++++-------------- 1 file changed, 8 insertions(+), 14 deletions(-) diff --git a/vignettes/articles/Starting-a-DRR.Rmd b/vignettes/articles/Starting-a-DRR.Rmd index 1d364d3..4e577f9 100644 --- a/vignettes/articles/Starting-a-DRR.Rmd +++ b/vignettes/articles/Starting-a-DRR.Rmd @@ -57,24 +57,18 @@ library(QCkit) knitr::include_graphics(c("new_rmd.png", "new_rmd_template.png")) ``` -5. +5. After selecting "OK" two things will happne: First, you the DRR Template file will open up. It is called "Untitled.Rmd" by default. Second, a new folder will be created called "Untitled" (Unless you opted to change the default "Name:" in the "New R Markdown" pop up, then these will have whatever name you gave them). -6. [How to Use this Template](HowToUseThisTemplate.html) line-by-line instructions and descriptions for how to use the DRR Template. +6. Edit the DRR Template according to your specifications and the instructions in the ["Using the DRR Template"](Using-the-DRR_Template.html) guide. -7. [The DRR_Template](https://github.com/nationalparkservice/DRR_Template/blob/master/DRR_to_docx.Rmd) the file you make changes to to generate a DRR. Note: this is not a stand-alone file. To create a DRR please download the [zipped template](https://github.com/nationalparkservice/DRR_Template/zipball/master) with all associated files and folders. +7. When you are done, "knit" the .Rmd file to Word and submit the resulting .docx file for publication. -8. [Bibtex reference file](https://github.com/nationalparkservice/DRR_Template/raw/master/reference.bib) is used if you want to automate your citations. Add each citation in bibtex format to this file and save it. Add in-text citations to the DRR Template and your References section will automatically be generated for you when you knit the .Rmd to .docx. You should still visually check the final format in the .docx file for accuracy, completion, and formatting. If you would prefer to manually format your citations, feel free to continue doing so. +extra text to be moved elsewhere? -9. [DRR_Report](https://github.com/nationalparkservice/DRR_Template/raw/master/DRR_to_docx.docx) an example of the .docx output file that takes into account your edits and changes to DRR_to_docx.Rmd (assuming you have saved and/or knit the .Rmd to .docx format in Rstudio). +5. [Bibtex reference file](https://github.com/nationalparkservice/DRR_Template/raw/master/reference.bib) is used if you want to automate your citations. Add each citation in bibtex format to this file and save it. Add in-text citations to the DRR Template and your References section will automatically be generated for you when you knit the .Rmd to .docx. You should still visually check the final format in the .docx file for accuracy, completion, and formatting. If you would prefer to manually format your citations, feel free to continue doing so. -# Examples - -More will be provided as they are published. The following examples are post-formatting and should be used as examples for content generation only. - -1. [DRR for tabular (csv) datasets](DRAFT_2019_Report_NationalMeanDailyFlowsDataSummary.html) of hydrologic data used for calculating hydrologic metrics as a part of the national Environmental Settings monitoring protocol. +6. [DRR_Report](https://github.com/nationalparkservice/DRR_Template/raw/master/DRR_to_docx.docx) an example of the .docx output file that takes into account your edits and changes to DRR_to_docx.Rmd (assuming you have saved and/or knit the .Rmd to .docx format in Rstudio). -2. [DRR for geospatial (file geodatabase) data](NPS-NRSS-DRR-2020-1.html) continuing custom areas of analysis used for Environmental Settings monitoring protocol. Report created in Microsoft Word and ported to the template. - -# Tips, FAQs, and Errata +# Examples -(coming soon) +**Knit your own example DRR:** Assuming you left the "Name:" as the default "untitled", you should be able to knit the DRR template in to an example .docx that could be submitted for publication. If you opted to change the Name, you will need to update the the file paths before kniting. From f82160a8ecdbf9c13bf0c1b30a282eeb0ebf8aed Mon Sep 17 00:00:00 2001 From: Rob Baker Date: Fri, 9 Feb 2024 09:13:28 -0700 Subject: [PATCH 16/33] add images for drr documentation --- docs/articles/new_rmd.png | Bin 0 -> 21503 bytes docs/articles/new_rmd_template.png | Bin 0 -> 36569 bytes 2 files changed, 0 insertions(+), 0 deletions(-) create mode 100644 docs/articles/new_rmd.png create mode 100644 docs/articles/new_rmd_template.png diff --git a/docs/articles/new_rmd.png b/docs/articles/new_rmd.png new file mode 100644 index 0000000000000000000000000000000000000000..1a15431ce237df9e8031963ece1f2e92111f6c51 GIT binary patch literal 21503 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 literal 0 HcmV?d00001 From f43f3e3295c26ea3118bcfca9d91bd89e4938bca Mon Sep 17 00:00:00 2001 From: Rob Baker Date: Fri, 9 Feb 2024 09:14:05 -0700 Subject: [PATCH 17/33] add drr documentation --- docs/articles/Starting-a-DRR.html | 241 ++++++ docs/articles/Using-the-DRR-Template.html | 661 +++++++++++++++ .../bsTable-3.3.7/bootstrapTable.js | 801 ++++++++++++++++++ .../bsTable-3.3.7/bootstrapTable.min.css | 14 + .../kePrint-0.0.1/kePrint.js | 8 + .../lightable-0.0.1/lightable.css | 272 ++++++ 6 files changed, 1997 insertions(+) create mode 100644 docs/articles/Starting-a-DRR.html create mode 100644 docs/articles/Using-the-DRR-Template.html create mode 100644 docs/articles/Using-the-DRR-Template_files/bsTable-3.3.7/bootstrapTable.js create mode 100644 docs/articles/Using-the-DRR-Template_files/bsTable-3.3.7/bootstrapTable.min.css create mode 100644 docs/articles/Using-the-DRR-Template_files/kePrint-0.0.1/kePrint.js create mode 100644 docs/articles/Using-the-DRR-Template_files/lightable-0.0.1/lightable.css diff --git a/docs/articles/Starting-a-DRR.html b/docs/articles/Starting-a-DRR.html new file mode 100644 index 0000000..8ee7799 --- /dev/null +++ b/docs/articles/Starting-a-DRR.html @@ -0,0 +1,241 @@ + + + + + + + +Starting a DRR • QCkit + + + + + + + + + + + + + + + + + + + + + diff --git a/docs/articles/Using-the-DRR-Template.html b/docs/articles/Using-the-DRR-Template.html new file mode 100644 index 0000000..70f9722 --- /dev/null +++ b/docs/articles/Using-the-DRR-Template.html @@ -0,0 +1,661 @@ + + + + + + + +Using the DRR Template • QCkit + + + + + + + + + + + + +
      +
      + + + + +
      + +
      +
      + + + + +
      +

      Overview +

      +

      Data Release Reports (DRRs) are created by the National Park Service +and provide detailed descriptions of valuable research datasets, +including the methods used to collect the data and technical analyses +supporting the quality of the measurements. Data Release Reports focus +on helping others reuse data, rather than presenting results, testing +hypotheses, or presenting new interpretations, methods or in-depth +analyses.

      +

      DRRs are intended to document the processing of fully-QAed data to +their final (QCed) form in a reproducible and transparent manner. DRRs +document the data collection methods and quality standards used to +prepare and review data prior to release. DRRs present the quality of +resultant data in the context of fitness for their intended use.

      +

      Each DRR cites source and resultant datasets that are published +concurrently and cross-referenced. Associated datasets are made publicly +available with the exception of data that must be protected from release +as per NPS and park-specific policies.

      +

      Data packages that are published concurrently with DRRs are intended +to be independently citable scientific works that can serve as the basis +for subsequent analysis and reporting by NPS or third parties.

      +
      +
      +

      Project Set-up +

      +

      The Template is not a stand-alone file but instead has multiple +associated and dependent files. New projects can be established using by +downloading the Zip file associated with the latest release +of the DRR template repository on GitHub.

      +
      +

      Folder Structure +

      +

      General directory contents are as follows (Figure 1):

      +
        +
      • +

        input This is the only location (other than the +template script itself) where you you should manually change or edit +files. This is where data files you need to supply should be placed.

        +
          +
        • +figures If you have figures that are not generated as +part of running this template, place those files here.
        • +
        +
      • +
      • output Do not edit these files. This is where you +can find your final products. Edits to files in this folder will not be +incorporated when you knit the DRR_to_docx.rmd file. Any edits you make +to files in this directory may be overwritten when you knit the +template.

      • +
      • temp Do not edit these files. These are files that +are either used or generated during when you knit the DRR_to_docx.rmd +template. They may include graphics, text, or data.

      • +
      • You can safely ignore most of the other folders (including +docs, my-website, +vignettes,.github) and files (including +_config.yml, .gitignore, +.Rhistory, index.html, and +national-park-service-DRR.csl).

      • +
      +
      +
      +
      +

      Reproducible Reports +

      +

      The following is for users who are using the +DRR_to_docx.rmd template file to generate a data release +report using RMarkdown.

      +
      +

      Standard Code Chunks +

      +

      In addition to the report outline and a description of content for +each section, the template includes four standard code chunks.

      +

      YAML Header:

      +

      The YAML header helps format the DRR. You should not need to edit any +of the YAML header.

      +

      R code chunks:

      +
        +
      • +

        user_edited_parameters. A series of parameters that +are used in the creation of the DRR and may be re-used in metadata and +associated data package construction. You will need to edit these +parameters for each DRR.

        +
          +
        • +title. The title of the Data Release Report.
        • +
        • +reportNumber. This is optional, and should +only be included if publishing in the semi-official DRR series. +Set to NULL if there is no reportNumber.
        • +
        • +DRR_DSRefID. This is the DataStore reference ID for the +report.
        • +
        • +authorNames. A list of the author’s names.
        • +
        • +authorAffiliations. A list of the author’s +affiliations. The order of author affiliations must match the order of +the authors in the authorNames list. Note that the entirety +of each affiliation is enclosed in a single set of quotations. Line +breaks are indicated with the
          tag. Do not worry about indentation +or word wrapping. If two authors have the same affiliation, list the +affiliation twice.
        • +
        • +authorORCID. A list of ORCID iDs for each author in the +format “xxxx-xxxx-xxxx-xxxx”. If an author does not have an ORCID iD, +specify NA (no quotes). The order of ORCID iDs (and NAs) must correspond +to the order of authors in the authorNames list. Future +iterations of the DRR Template will pull ORCID iDs from metadata and +eventually from Active Directory. See ORCID for more information about ORCID +iDs or to register an ORCID iD.
        • +
        • +DRRabstract. The abstract for the DRR (which may be +distinct from the data package abstract). Pay careful attention to +non-standard characters, line breaks, carriage returns, and +curly-quotes. You may find it useful to write the abstract in NotePad or +some other text editor and NOT a word processor (such as Microsoft +Word). Indicate line breaks with and a space between paragraphs - should +you want them - using . The Abstract should succinctly describe the +study, the assay(s) performed, the resulting data, and their reuse +potential, but should not make any claims regarding new scientific +findings. No references are allowed in this section. A good suggested +length for abstracts is less than 250 words.
        • +
        • +dataPackageRefID. DataStore reference ID for the data +package associated with this report. You must have at least one data +package. Eventually, we will automate importing much of this information +from metadata and include the ability to describe multiple data packages +in a single DRR.
        • +
        • +dataPackageTitle. The title of the data package. Must +match the title on DataStore (and metadata).
        • +
        • +dataPackageDescription. A short title/subtitle or short +description for the data package. Must match the data package +metadata.
        • +
        • +dataPackageDOI. Auto-generated, no need to edit or +update. This is the data package DOI. It is based on the DataStore +reference number.
        • +
        • +dataPackage_fileNames. List the file names in your data +package. Do NOT include metadata files. For example, include +“my_data.csv” but do NOT include “my_metadata.xml”.
        • +
        • +dataPackage_fileSizes. List the approximate size of +each data file. Make sure the order of the file sizes corresponds to the +order of file names in dataPackage_fileNames. +dataPackage_fileDescript. A short description of the +corresponding data file that helps distinguish it from other data files. +A good guideline is 10 words or less. This will be used in a table +summary table so brevity is a priority. If you have already created +metadata for your data package in EML format, this should be the same +text as found in the “entityDescription” element for each data +file.
        • +
        +
      • +
      • setup. Most users will not need to edit this code +chunk. There is one code snippet for loading packages; the +RRpackages section is a suite of packages that are used to +assist with reproducible reporting. You may not need these for your +report, but we have included them as part of the base recommended +packages. If you plan to perform you QC as part of the DRR construction +process, you can add a second code snipped to import necessary packages +for your QC process here.

      • +
      • title_do_not_edit. These parameters are +auto-generated based on either the EML you supplied (when that becomes +an option) or the information you’ve already supplied under +“user-edited-parameters”. You really should not need to edit these +parameters.

      • +
      • authors_do_not_edit. There is no need to edit this +chunk. This writes the author names, ORCID iDs, and affiliations to the +.docx document based on information supplied in +user-edited-parameters.

      • +
      • LoadData. Any datasets you need to load can go here. +For most people these datasets are used to generate summary statistics +on proportions of data that were flagged as accepted (A) accepted, +estimated (AE) and rejected (R) during the quality control +process.

      • +
      • FileTable. Do not edit. Generates a table of file +names, sizes, and descriptions in the data package being described by +the DRR.

      • +
      • dataFlaggingTable. This sample code provides a +summary table defining the suggested data flagging codes. There is no +need to edit this table.

      • +
      • Listing. Appendix A, by default is the code listing. +This will generate all code used in generating the report and data +packages. In most cases, code listing is not required. If all QA/QC +processes and data manipulations were performed elsewhere, you should +cite that code (in the methods and references) and leave the “listing +code chunk with the default settings of eval=FALSE and echo=FALSE. If +you have developed custom scripts, you can add those to DataStore with +the reference”Script” and cite them in the DRR.

      • +
      • session-info is the information about the versions +of R and packages used in generating the report. In most cases, you do +not need to report session info (leave the session-info code chunk +parameters in their default state: eval=FALSE). Session and version +information is only necessary if you have set the “Listing” code chunk +in appendix A to eval=TRUE. In that case, change the “session info” code +chunk parameters to eval=TRUE.

      • +
      +
      +
      +

      Citations +

      +
      +

      Automating Citations +

      +

      To automate citations, add the citation in bibtex format to the file +“references.bib”. You can manually copy and paste the bibtex for each +reference in, or you can search for it from within Rstudio. From within +Rstudio, make sure you are editing this document using the “Visual” view +(as opposed to “Source”). From the “Insert” drop-down menu, select “@ +Citation…” (shortcut: Cntrl-Shift-F8). This will open a Graphical User +Interface (GUI) tool where you can view all the citations in your +reference.bib file as well as search multiple databases for references, +automatically insert the bibtex for the reference into your +references.bib file (and customize the unique identifier if you’d like) +and insert the in-text citation into the DRR template.

      +

      Once a reference is in your references.bib file, using the Visual +view of the template you can simply type the ‘@’ symbol and select which +reference to insert in the text.

      +

      If you need to edit how the citation is displayed after inserting it +into the text, switch back to the “Source” view. Each bibtex citation +should start with a unique identifier; the example reference in the +supplied references.bib file has the unique identifier “@article{Scott1994,”. Using the “Source” view in +Rstudio, insert the reference in your text, by combining the “at” symbol +with the portion of the unique identifier after the curly bracket: @Scott1994 .

      + ++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      SyntaxResult
      +@Scott1994 concludes that …Scott et al., 1994 concludes that …
      +@Scott1994[p.33] concludes that …Scott (1994, p.33) concludes that …
      … end of sentence [@Scott1994].… end of sentence (Scott et al., 1994).
      … end of sentence [see @Scott1994,p.33].… end of sentence (see Scott et al. 1994,p.33).
      delineate multiple authors with colon: +[@Scott1994; @aberdeen1958] +delineate multiple authors with colon: (Scott et al., 1994; +Aberdeen, 1958)
      Scott et al. conclude that …. [-@Scott1994] +Scott et al. conclude that . . . (1994)
      +

      The full citation, properly formatted, will be included in a +“References” section at the end of the rendered MS Word document. . . +though it is also worth visually inspecting the .docx for citation +completeness and formatting.

      +
      +
      +

      Manual citations +

      +

      If you would like to format your citations manually, please feel free +to do so. Make sure to look at the References section for how to +properly format each citation type.

      +
      +
      +
      +
      +

      Editing the Text +

      +

      The following text in the body of the DRR template will need to be +edited to customize it to each data package.

      +
      +

      Data Records +

      +

      This is a required section and consists of two subheadings:

      +
        +
      • Data inputs - an optional subsection used to +describe datasets that the data package is based on if it is a +re-analysis, reorganization, or re-integration of prevously existing +data sets.

      • +
      • Summary of datasts created - this is a required +section used to explain each data record associated with the work (for +instance, a data package), including the DOI indicating where this +information is stored. It shoudl also provide an overview of the data +files and their formats. Each external data record should be +cited.

      • +
      +

      Sample text is included that uses r code to incorporate previously +specified parameters such as the data package title, file names, and +DOI.

      +

      A code for a sample table summarizing the contents of the data +package (except the metadata) is provided.

      +
      +
      +

      Data Quality +

      +

      This is a required section. and the text includes multiple suggested +text elements and code for an example table defining data flagging +codes. Near future development here will incorporate additional optional +tables to summarize the data quality based on the flags in the data +sets.

      +
      +
      +

      Usage Notes +

      +

      This is a required section that should contain brief instructions to +assist other researchers with reuse of the data. This may include +discussion of software packages (with appropriate citations) that are +suitable for analysing the assay data files, suggested downstream +processing steps (e.g. normalization, etc.), or tips for integrating or +comparing the data records with other datasets. Authors are encouraged +to provide code, programs or data-processing workflows if they may help +others understand or use the data.

      +
      +
      +

      Methods +

      +

      This is a required section that cites previous methods used but +should also be detailed enough in describing data production including +the experimental design, data acquisition assays, and any computational +processing (e.g. normalization, QA, QC) such that others can understand +the methods without referring to associated publications.

      +

      Optional sub-sections within the methods include:

      +
        +
      • Data Collection and Sampling
      • +
      • Additional Data Sources
      • +
      • Data Processing
      • +
      • Code availability
      • +
      +
      +
      +

      References +

      +

      This required section includes full bibliographic references for each +paper, chapter, book, data package, dataset, protocol, etc cited within +the DRR.

      +

      There are numerous examples of proper formatting for each of these. +Future versions of the DRR will enable automatic reference formatting +given a correctly formatted bibtex file with the references (.bib).

      +
      +
      +

      Figures +

      +

      Figures should be inserted using code chunks in all cases so that +figure settings can be set in the chunk header. The chunk header should +at a minimum set the fig.align parameter to “center” and the specify the +figure caption (fig.cap parameter). Inserting figures this way will +ensure that the caption is properly formatted and it will apply copy the +caption to the figure’s “alt text” tag, making it 508-compliant.

      +

      For example:

      +
      ```{r fig2, echo=FALSE, out.width="70%", fig.align="center", fig.cap="Example general workflow to incude in the methods section."} 
      +knitr::include_graphics("ProcessingWorkflow.png")
      +```
      +

      Results in:

      +
      +
      +

      Tables +

      +

      Tables should be created using the kable function. Specifying the +caption in the kable function call (as opposed to inline markdown text) +will ensure that the caption is appropriately formatted.

      +

      For example:

      +
      ```{r Table2, echo=FALSE}
      +c1<-c("Protocol1","Protocol2","Protocol3")
      +c2<-c("Park Unit 1","Park Unit 2","Park Unit 3")
      +c3<-c("Site 1","Site 2","Site 3")
      +c4<-c("Date 1","Date 2","Date 3")
      +c5<-c("GEOXXXXX","GEOXXXXX","GEOXXXXX")
      +Table2<-data.frame(c1,c2,c3,c4,c5)
      +
      +kable(Table2, 
      +      col.names=c("Subjects","Park Units","Locations","Sampling Dates","Data"),
      +      caption="**Table 1.** Monitoring study example Data Records table.") %>%
      +  kable_styling(bootstrap_options = c("striped", "hover", "condensed", "responsive"),full_width=F)
      +```
      +

      Results in:

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      +Table 1. Monitoring study example Data Records table. +
      +Subjects + +Park Units + +Locations + +Sampling Dates + +Data +
      +Protocol1 + +Park Unit 1 + +Site 1 + +Date 1 + +GEOXXXXX +
      +Protocol2 + +Park Unit 2 + +Site 2 + +Date 2 + +GEOXXXXX +
      +Protocol3 + +Park Unit 3 + +Site 3 + +Date 3 + +GEOXXXXX +
      +
      +
      +
      +

      Publishing DRRs +

      +
      +

      Report Numbers +

      +

      Because data release reports and associated data packages are +cross-referential, report numbers are typically assigned early in data +processing and quality evaluation.

      +
        +
      • DataStore Reference Numbers. When developing a +report and data packages, DataStore references should be created as +early in the process as practicable. While the report and data packages +are in development, these should not be activated.

      • +
      • Report Numbers. If you are planning to publish a +Data Release Report with an official DRR number, please contact the IMD +Deputy Chief with the DataStore reference number associated with the +DRR.

      • +
      • Persistent Identifiers. Digital object +identifiers (DOIs) will be assigned to all DRRs and concurrently +published data packages. DOIs will resolve to a DataStore Reference; +DOIs are reserved when a draft reference is initiated in DataStore. They +are not activated until the publication process, including relevant +review, is complete.

      • +
      +

      DRR DOIs have the format: https://doi.org/10.36967/xxxxxxx

      +

      Data package DOIs have the format: https://doi.org/10.57830/xxxxxxx

      +

      Where the “xxxxxx” is the 7-digit DataStore reference number.

      +
      +
      +

      Liability Statements +

      +

      Under no circumstances should reports and associated data packages or +metadata published in the DRR series contain disclaimers or text that +suggests that the work does not meet scientific integrity or information +quality standards of the National Park Service. The following +disclaimers are suitable for use, depending on whether the data are +provisional or final (or approved or certified).

      +
      +

      For approved & published data sets: “Unless +otherwise stated, all data, metadata and related materials are +considered to satisfy the quality standards relative to the purpose for +which the data were collected. Although these data and associated +metadata have been reviewed for accuracy and completeness and approved +for release by the National Park Service Inventory and Monitoring +Division, no warranty expressed or implied is made regarding the display +or utility of the data for other purposes, nor on all computer systems, +nor shall the act of distribution constitute any such warranty.”

      +
      +
      +

      For provisional data: “The data you have secured +from the National Park Service (NPS) database identified as [database +name] have not received approval for release by the NPS Inventory and +Monitoring Division, and as such are provisional and subject to +revision. The data are released on the condition that neither the NPS +nor the U.S. Government shall be held liable for any damages resulting +from its authorized or unauthorized use.”

      +
      +
      +
      +
      + + + +
      + + + +
      + +
      +

      +

      Site built with pkgdown 2.0.7.

      +
      + +
      +
      + + + + + + + + diff --git a/docs/articles/Using-the-DRR-Template_files/bsTable-3.3.7/bootstrapTable.js b/docs/articles/Using-the-DRR-Template_files/bsTable-3.3.7/bootstrapTable.js new file mode 100644 index 0000000..0c83d3b --- /dev/null +++ b/docs/articles/Using-the-DRR-Template_files/bsTable-3.3.7/bootstrapTable.js @@ -0,0 +1,801 @@ +/* ======================================================================== + * Bootstrap: tooltip.js v3.4.1 + * https://getbootstrap.com/docs/3.4/javascript/#tooltip + * Inspired by the original jQuery.tipsy by Jason Frame + * ======================================================================== + * Copyright 2011-2019 Twitter, Inc. + * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) + * ======================================================================== */ + ++function ($) { + 'use strict'; + + var DISALLOWED_ATTRIBUTES = ['sanitize', 'whiteList', 'sanitizeFn'] + + var uriAttrs = [ + 'background', + 'cite', + 'href', + 'itemtype', + 'longdesc', + 'poster', + 'src', + 'xlink:href' + ] + + var ARIA_ATTRIBUTE_PATTERN = /^aria-[\w-]*$/i + + var DefaultWhitelist = { + // Global attributes allowed on any supplied element below. + '*': ['class', 'dir', 'id', 'lang', 'role', ARIA_ATTRIBUTE_PATTERN], + a: ['target', 'href', 'title', 'rel'], + area: [], + b: [], + br: [], + col: [], + code: [], + div: [], + em: [], + hr: [], + h1: [], + h2: [], + h3: [], + h4: [], + h5: [], + h6: [], + i: [], + img: ['src', 'alt', 'title', 'width', 'height'], + li: [], + ol: [], + p: [], + pre: [], + s: [], + small: [], + span: [], + sub: [], + sup: [], + strong: [], + u: [], + ul: [] + } + + /** + * A pattern that recognizes a commonly useful subset of URLs that are safe. + * + * Shoutout to Angular 7 https://github.com/angular/angular/blob/7.2.4/packages/core/src/sanitization/url_sanitizer.ts + */ + var SAFE_URL_PATTERN = /^(?:(?:https?|mailto|ftp|tel|file):|[^&:/?#]*(?:[/?#]|$))/gi + + /** + * A pattern that matches safe data URLs. Only matches image, video and audio types. + * + * Shoutout to Angular 7 https://github.com/angular/angular/blob/7.2.4/packages/core/src/sanitization/url_sanitizer.ts + */ + var DATA_URL_PATTERN = /^data:(?:image\/(?:bmp|gif|jpeg|jpg|png|tiff|webp)|video\/(?:mpeg|mp4|ogg|webm)|audio\/(?:mp3|oga|ogg|opus));base64,[a-z0-9+/]+=*$/i + + function allowedAttribute(attr, allowedAttributeList) { + var attrName = attr.nodeName.toLowerCase() + + if ($.inArray(attrName, allowedAttributeList) !== -1) { + if ($.inArray(attrName, uriAttrs) !== -1) { + return Boolean(attr.nodeValue.match(SAFE_URL_PATTERN) || attr.nodeValue.match(DATA_URL_PATTERN)) + } + + return true + } + + var regExp = $(allowedAttributeList).filter(function (index, value) { + return value instanceof RegExp + }) + + // Check if a regular expression validates the attribute. + for (var i = 0, l = regExp.length; i < l; i++) { + if (attrName.match(regExp[i])) { + return true + } + } + + return false + } + + function sanitizeHtml(unsafeHtml, whiteList, sanitizeFn) { + if (unsafeHtml.length === 0) { + return unsafeHtml + } + + if (sanitizeFn && typeof sanitizeFn === 'function') { + return sanitizeFn(unsafeHtml) + } + + // IE 8 and below don't support createHTMLDocument + if (!document.implementation || !document.implementation.createHTMLDocument) { + return unsafeHtml + } + + var createdDocument = document.implementation.createHTMLDocument('sanitization') + createdDocument.body.innerHTML = unsafeHtml + + var whitelistKeys = $.map(whiteList, function (el, i) { return i }) + var elements = $(createdDocument.body).find('*') + + for (var i = 0, len = elements.length; i < len; i++) { + var el = elements[i] + var elName = el.nodeName.toLowerCase() + + if ($.inArray(elName, whitelistKeys) === -1) { + el.parentNode.removeChild(el) + + continue + } + + var attributeList = $.map(el.attributes, function (el) { return el }) + var whitelistedAttributes = [].concat(whiteList['*'] || [], whiteList[elName] || []) + + for (var j = 0, len2 = attributeList.length; j < len2; j++) { + if (!allowedAttribute(attributeList[j], whitelistedAttributes)) { + el.removeAttribute(attributeList[j].nodeName) + } + } + } + + return createdDocument.body.innerHTML + } + + // TOOLTIP PUBLIC CLASS DEFINITION + // =============================== + + var Tooltip = function (element, options) { + this.type = null + this.options = null + this.enabled = null + this.timeout = null + this.hoverState = null + this.$element = null + this.inState = null + + this.init('tooltip', element, options) + } + + Tooltip.VERSION = '3.4.1' + + Tooltip.TRANSITION_DURATION = 150 + + Tooltip.DEFAULTS = { + animation: true, + placement: 'top', + selector: false, + template: '', + trigger: 'hover focus', + title: '', + delay: 0, + html: false, + container: false, + viewport: { + selector: 'body', + padding: 0 + }, + sanitize : true, + sanitizeFn : null, + whiteList : DefaultWhitelist + } + + Tooltip.prototype.init = function (type, element, options) { + this.enabled = true + this.type = type + this.$element = $(element) + this.options = this.getOptions(options) + this.$viewport = this.options.viewport && $(document).find($.isFunction(this.options.viewport) ? this.options.viewport.call(this, this.$element) : (this.options.viewport.selector || this.options.viewport)) + this.inState = { click: false, hover: false, focus: false } + + if (this.$element[0] instanceof document.constructor && !this.options.selector) { + throw new Error('`selector` option must be specified when initializing ' + this.type + ' on the window.document object!') + } + + var triggers = this.options.trigger.split(' ') + + for (var i = triggers.length; i--;) { + var trigger = triggers[i] + + if (trigger == 'click') { + this.$element.on('click.' + this.type, this.options.selector, $.proxy(this.toggle, this)) + } else if (trigger != 'manual') { + var eventIn = trigger == 'hover' ? 'mouseenter' : 'focusin' + var eventOut = trigger == 'hover' ? 'mouseleave' : 'focusout' + + this.$element.on(eventIn + '.' + this.type, this.options.selector, $.proxy(this.enter, this)) + this.$element.on(eventOut + '.' + this.type, this.options.selector, $.proxy(this.leave, this)) + } + } + + this.options.selector ? + (this._options = $.extend({}, this.options, { trigger: 'manual', selector: '' })) : + this.fixTitle() + } + + Tooltip.prototype.getDefaults = function () { + return Tooltip.DEFAULTS + } + + Tooltip.prototype.getOptions = function (options) { + var dataAttributes = this.$element.data() + + for (var dataAttr in dataAttributes) { + if (dataAttributes.hasOwnProperty(dataAttr) && $.inArray(dataAttr, DISALLOWED_ATTRIBUTES) !== -1) { + delete dataAttributes[dataAttr] + } + } + + options = $.extend({}, this.getDefaults(), dataAttributes, options) + + if (options.delay && typeof options.delay == 'number') { + options.delay = { + show: options.delay, + hide: options.delay + } + } + + if (options.sanitize) { + options.template = sanitizeHtml(options.template, options.whiteList, options.sanitizeFn) + } + + return options + } + + Tooltip.prototype.getDelegateOptions = function () { + var options = {} + var defaults = this.getDefaults() + + this._options && $.each(this._options, function (key, value) { + if (defaults[key] != value) options[key] = value + }) + + return options + } + + Tooltip.prototype.enter = function (obj) { + var self = obj instanceof this.constructor ? + obj : $(obj.currentTarget).data('bs.' + this.type) + + if (!self) { + self = new this.constructor(obj.currentTarget, this.getDelegateOptions()) + $(obj.currentTarget).data('bs.' + this.type, self) + } + + if (obj instanceof $.Event) { + self.inState[obj.type == 'focusin' ? 'focus' : 'hover'] = true + } + + if (self.tip().hasClass('in') || self.hoverState == 'in') { + self.hoverState = 'in' + return + } + + clearTimeout(self.timeout) + + self.hoverState = 'in' + + if (!self.options.delay || !self.options.delay.show) return self.show() + + self.timeout = setTimeout(function () { + if (self.hoverState == 'in') self.show() + }, self.options.delay.show) + } + + Tooltip.prototype.isInStateTrue = function () { + for (var key in this.inState) { + if (this.inState[key]) return true + } + + return false + } + + Tooltip.prototype.leave = function (obj) { + var self = obj instanceof this.constructor ? + obj : $(obj.currentTarget).data('bs.' + this.type) + + if (!self) { + self = new this.constructor(obj.currentTarget, this.getDelegateOptions()) + $(obj.currentTarget).data('bs.' + this.type, self) + } + + if (obj instanceof $.Event) { + self.inState[obj.type == 'focusout' ? 'focus' : 'hover'] = false + } + + if (self.isInStateTrue()) return + + clearTimeout(self.timeout) + + self.hoverState = 'out' + + if (!self.options.delay || !self.options.delay.hide) return self.hide() + + self.timeout = setTimeout(function () { + if (self.hoverState == 'out') self.hide() + }, self.options.delay.hide) + } + + Tooltip.prototype.show = function () { + var e = $.Event('show.bs.' + this.type) + + if (this.hasContent() && this.enabled) { + this.$element.trigger(e) + + var inDom = $.contains(this.$element[0].ownerDocument.documentElement, this.$element[0]) + if (e.isDefaultPrevented() || !inDom) return + var that = this + + var $tip = this.tip() + + var tipId = this.getUID(this.type) + + this.setContent() + $tip.attr('id', tipId) + this.$element.attr('aria-describedby', tipId) + + if (this.options.animation) $tip.addClass('fade') + + var placement = typeof this.options.placement == 'function' ? + this.options.placement.call(this, $tip[0], this.$element[0]) : + this.options.placement + + var autoToken = /\s?auto?\s?/i + var autoPlace = autoToken.test(placement) + if (autoPlace) placement = placement.replace(autoToken, '') || 'top' + + $tip + .detach() + .css({ top: 0, left: 0, display: 'block' }) + .addClass(placement) + .data('bs.' + this.type, this) + + this.options.container ? $tip.appendTo($(document).find(this.options.container)) : $tip.insertAfter(this.$element) + this.$element.trigger('inserted.bs.' + this.type) + + var pos = this.getPosition() + var actualWidth = $tip[0].offsetWidth + var actualHeight = $tip[0].offsetHeight + + if (autoPlace) { + var orgPlacement = placement + var viewportDim = this.getPosition(this.$viewport) + + placement = placement == 'bottom' && pos.bottom + actualHeight > viewportDim.bottom ? 'top' : + placement == 'top' && pos.top - actualHeight < viewportDim.top ? 'bottom' : + placement == 'right' && pos.right + actualWidth > viewportDim.width ? 'left' : + placement == 'left' && pos.left - actualWidth < viewportDim.left ? 'right' : + placement + + $tip + .removeClass(orgPlacement) + .addClass(placement) + } + + var calculatedOffset = this.getCalculatedOffset(placement, pos, actualWidth, actualHeight) + + this.applyPlacement(calculatedOffset, placement) + + var complete = function () { + var prevHoverState = that.hoverState + that.$element.trigger('shown.bs.' + that.type) + that.hoverState = null + + if (prevHoverState == 'out') that.leave(that) + } + + $.support.transition && this.$tip.hasClass('fade') ? + $tip + .one('bsTransitionEnd', complete) + .emulateTransitionEnd(Tooltip.TRANSITION_DURATION) : + complete() + } + } + + Tooltip.prototype.applyPlacement = function (offset, placement) { + var $tip = this.tip() + var width = $tip[0].offsetWidth + var height = $tip[0].offsetHeight + + // manually read margins because getBoundingClientRect includes difference + var marginTop = parseInt($tip.css('margin-top'), 10) + var marginLeft = parseInt($tip.css('margin-left'), 10) + + // we must check for NaN for ie 8/9 + if (isNaN(marginTop)) marginTop = 0 + if (isNaN(marginLeft)) marginLeft = 0 + + offset.top += marginTop + offset.left += marginLeft + + // $.fn.offset doesn't round pixel values + // so we use setOffset directly with our own function B-0 + $.offset.setOffset($tip[0], $.extend({ + using: function (props) { + $tip.css({ + top: Math.round(props.top), + left: Math.round(props.left) + }) + } + }, offset), 0) + + $tip.addClass('in') + + // check to see if placing tip in new offset caused the tip to resize itself + var actualWidth = $tip[0].offsetWidth + var actualHeight = $tip[0].offsetHeight + + if (placement == 'top' && actualHeight != height) { + offset.top = offset.top + height - actualHeight + } + + var delta = this.getViewportAdjustedDelta(placement, offset, actualWidth, actualHeight) + + if (delta.left) offset.left += delta.left + else offset.top += delta.top + + var isVertical = /top|bottom/.test(placement) + var arrowDelta = isVertical ? delta.left * 2 - width + actualWidth : delta.top * 2 - height + actualHeight + var arrowOffsetPosition = isVertical ? 'offsetWidth' : 'offsetHeight' + + $tip.offset(offset) + this.replaceArrow(arrowDelta, $tip[0][arrowOffsetPosition], isVertical) + } + + Tooltip.prototype.replaceArrow = function (delta, dimension, isVertical) { + this.arrow() + .css(isVertical ? 'left' : 'top', 50 * (1 - delta / dimension) + '%') + .css(isVertical ? 'top' : 'left', '') + } + + Tooltip.prototype.setContent = function () { + var $tip = this.tip() + var title = this.getTitle() + + if (this.options.html) { + if (this.options.sanitize) { + title = sanitizeHtml(title, this.options.whiteList, this.options.sanitizeFn) + } + + $tip.find('.tooltip-inner').html(title) + } else { + $tip.find('.tooltip-inner').text(title) + } + + $tip.removeClass('fade in top bottom left right') + } + + Tooltip.prototype.hide = function (callback) { + var that = this + var $tip = $(this.$tip) + var e = $.Event('hide.bs.' + this.type) + + function complete() { + if (that.hoverState != 'in') $tip.detach() + if (that.$element) { // TODO: Check whether guarding this code with this `if` is really necessary. + that.$element + .removeAttr('aria-describedby') + .trigger('hidden.bs.' + that.type) + } + callback && callback() + } + + this.$element.trigger(e) + + if (e.isDefaultPrevented()) return + + $tip.removeClass('in') + + $.support.transition && $tip.hasClass('fade') ? + $tip + .one('bsTransitionEnd', complete) + .emulateTransitionEnd(Tooltip.TRANSITION_DURATION) : + complete() + + this.hoverState = null + + return this + } + + Tooltip.prototype.fixTitle = function () { + var $e = this.$element + if ($e.attr('title') || typeof $e.attr('data-original-title') != 'string') { + $e.attr('data-original-title', $e.attr('title') || '').attr('title', '') + } + } + + Tooltip.prototype.hasContent = function () { + return this.getTitle() + } + + Tooltip.prototype.getPosition = function ($element) { + $element = $element || this.$element + + var el = $element[0] + var isBody = el.tagName == 'BODY' + + var elRect = el.getBoundingClientRect() + if (elRect.width == null) { + // width and height are missing in IE8, so compute them manually; see https://github.com/twbs/bootstrap/issues/14093 + elRect = $.extend({}, elRect, { width: elRect.right - elRect.left, height: elRect.bottom - elRect.top }) + } + var isSvg = window.SVGElement && el instanceof window.SVGElement + // Avoid using $.offset() on SVGs since it gives incorrect results in jQuery 3. + // See https://github.com/twbs/bootstrap/issues/20280 + var elOffset = isBody ? { top: 0, left: 0 } : (isSvg ? null : $element.offset()) + var scroll = { scroll: isBody ? document.documentElement.scrollTop || document.body.scrollTop : $element.scrollTop() } + var outerDims = isBody ? { width: $(window).width(), height: $(window).height() } : null + + return $.extend({}, elRect, scroll, outerDims, elOffset) + } + + Tooltip.prototype.getCalculatedOffset = function (placement, pos, actualWidth, actualHeight) { + return placement == 'bottom' ? { top: pos.top + pos.height, left: pos.left + pos.width / 2 - actualWidth / 2 } : + placement == 'top' ? { top: pos.top - actualHeight, left: pos.left + pos.width / 2 - actualWidth / 2 } : + placement == 'left' ? { top: pos.top + pos.height / 2 - actualHeight / 2, left: pos.left - actualWidth } : + /* placement == 'right' */ { top: pos.top + pos.height / 2 - actualHeight / 2, left: pos.left + pos.width } + + } + + Tooltip.prototype.getViewportAdjustedDelta = function (placement, pos, actualWidth, actualHeight) { + var delta = { top: 0, left: 0 } + if (!this.$viewport) return delta + + var viewportPadding = this.options.viewport && this.options.viewport.padding || 0 + var viewportDimensions = this.getPosition(this.$viewport) + + if (/right|left/.test(placement)) { + var topEdgeOffset = pos.top - viewportPadding - viewportDimensions.scroll + var bottomEdgeOffset = pos.top + viewportPadding - viewportDimensions.scroll + actualHeight + if (topEdgeOffset < viewportDimensions.top) { // top overflow + delta.top = viewportDimensions.top - topEdgeOffset + } else if (bottomEdgeOffset > viewportDimensions.top + viewportDimensions.height) { // bottom overflow + delta.top = viewportDimensions.top + viewportDimensions.height - bottomEdgeOffset + } + } else { + var leftEdgeOffset = pos.left - viewportPadding + var rightEdgeOffset = pos.left + viewportPadding + actualWidth + if (leftEdgeOffset < viewportDimensions.left) { // left overflow + delta.left = viewportDimensions.left - leftEdgeOffset + } else if (rightEdgeOffset > viewportDimensions.right) { // right overflow + delta.left = viewportDimensions.left + viewportDimensions.width - rightEdgeOffset + } + } + + return delta + } + + Tooltip.prototype.getTitle = function () { + var title + var $e = this.$element + var o = this.options + + title = $e.attr('data-original-title') + || (typeof o.title == 'function' ? o.title.call($e[0]) : o.title) + + return title + } + + Tooltip.prototype.getUID = function (prefix) { + do prefix += ~~(Math.random() * 1000000) + while (document.getElementById(prefix)) + return prefix + } + + Tooltip.prototype.tip = function () { + if (!this.$tip) { + this.$tip = $(this.options.template) + if (this.$tip.length != 1) { + throw new Error(this.type + ' `template` option must consist of exactly 1 top-level element!') + } + } + return this.$tip + } + + Tooltip.prototype.arrow = function () { + return (this.$arrow = this.$arrow || this.tip().find('.tooltip-arrow')) + } + + Tooltip.prototype.enable = function () { + this.enabled = true + } + + Tooltip.prototype.disable = function () { + this.enabled = false + } + + Tooltip.prototype.toggleEnabled = function () { + this.enabled = !this.enabled + } + + Tooltip.prototype.toggle = function (e) { + var self = this + if (e) { + self = $(e.currentTarget).data('bs.' + this.type) + if (!self) { + self = new this.constructor(e.currentTarget, this.getDelegateOptions()) + $(e.currentTarget).data('bs.' + this.type, self) + } + } + + if (e) { + self.inState.click = !self.inState.click + if (self.isInStateTrue()) self.enter(self) + else self.leave(self) + } else { + self.tip().hasClass('in') ? self.leave(self) : self.enter(self) + } + } + + Tooltip.prototype.destroy = function () { + var that = this + clearTimeout(this.timeout) + this.hide(function () { + that.$element.off('.' + that.type).removeData('bs.' + that.type) + if (that.$tip) { + that.$tip.detach() + } + that.$tip = null + that.$arrow = null + that.$viewport = null + that.$element = null + }) + } + + Tooltip.prototype.sanitizeHtml = function (unsafeHtml) { + return sanitizeHtml(unsafeHtml, this.options.whiteList, this.options.sanitizeFn) + } + + // TOOLTIP PLUGIN DEFINITION + // ========================= + + function Plugin(option) { + return this.each(function () { + var $this = $(this) + var data = $this.data('bs.tooltip') + var options = typeof option == 'object' && option + + if (!data && /destroy|hide/.test(option)) return + if (!data) $this.data('bs.tooltip', (data = new Tooltip(this, options))) + if (typeof option == 'string') data[option]() + }) + } + + var old = $.fn.tooltip + + $.fn.tooltip = Plugin + $.fn.tooltip.Constructor = Tooltip + + + // TOOLTIP NO CONFLICT + // =================== + + $.fn.tooltip.noConflict = function () { + $.fn.tooltip = old + return this + } + +}(jQuery); + +/* ======================================================================== + * Bootstrap: popover.js v3.4.1 + * https://getbootstrap.com/docs/3.4/javascript/#popovers + * ======================================================================== + * Copyright 2011-2019 Twitter, Inc. + * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) + * ======================================================================== */ + + ++function ($) { + 'use strict'; + + // POPOVER PUBLIC CLASS DEFINITION + // =============================== + + var Popover = function (element, options) { + this.init('popover', element, options) + } + + if (!$.fn.tooltip) throw new Error('Popover requires tooltip.js') + + Popover.VERSION = '3.4.1' + + Popover.DEFAULTS = $.extend({}, $.fn.tooltip.Constructor.DEFAULTS, { + placement: 'right', + trigger: 'click', + content: '', + template: '' + }) + + + // NOTE: POPOVER EXTENDS tooltip.js + // ================================ + + Popover.prototype = $.extend({}, $.fn.tooltip.Constructor.prototype) + + Popover.prototype.constructor = Popover + + Popover.prototype.getDefaults = function () { + return Popover.DEFAULTS + } + + Popover.prototype.setContent = function () { + var $tip = this.tip() + var title = this.getTitle() + var content = this.getContent() + + if (this.options.html) { + var typeContent = typeof content + + if (this.options.sanitize) { + title = this.sanitizeHtml(title) + + if (typeContent === 'string') { + content = this.sanitizeHtml(content) + } + } + + $tip.find('.popover-title').html(title) + $tip.find('.popover-content').children().detach().end()[ + typeContent === 'string' ? 'html' : 'append' + ](content) + } else { + $tip.find('.popover-title').text(title) + $tip.find('.popover-content').children().detach().end().text(content) + } + + $tip.removeClass('fade top bottom left right in') + + // IE8 doesn't accept hiding via the `:empty` pseudo selector, we have to do + // this manually by checking the contents. + if (!$tip.find('.popover-title').html()) $tip.find('.popover-title').hide() + } + + Popover.prototype.hasContent = function () { + return this.getTitle() || this.getContent() + } + + Popover.prototype.getContent = function () { + var $e = this.$element + var o = this.options + + return $e.attr('data-content') + || (typeof o.content == 'function' ? + o.content.call($e[0]) : + o.content) + } + + Popover.prototype.arrow = function () { + return (this.$arrow = this.$arrow || this.tip().find('.arrow')) + } + + + // POPOVER PLUGIN DEFINITION + // ========================= + + function Plugin(option) { + return this.each(function () { + var $this = $(this) + var data = $this.data('bs.popover') + var options = typeof option == 'object' && option + + if (!data && /destroy|hide/.test(option)) return + if (!data) $this.data('bs.popover', (data = new Popover(this, options))) + if (typeof option == 'string') data[option]() + }) + } + + var old = $.fn.popover + + $.fn.popover = Plugin + $.fn.popover.Constructor = Popover + + + // POPOVER NO CONFLICT + // =================== + + $.fn.popover.noConflict = function () { + $.fn.popover = old + return this + } + +}(jQuery); diff --git a/docs/articles/Using-the-DRR-Template_files/bsTable-3.3.7/bootstrapTable.min.css b/docs/articles/Using-the-DRR-Template_files/bsTable-3.3.7/bootstrapTable.min.css new file mode 100644 index 0000000..7d1e81f --- /dev/null +++ b/docs/articles/Using-the-DRR-Template_files/bsTable-3.3.7/bootstrapTable.min.css @@ -0,0 +1,14 @@ +/*! + * Bootstrap v3.3.7 (http://getbootstrap.com) + * Copyright 2011-2018 Twitter, Inc. + * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) + */ + +/*! + * Generated using the Bootstrap Customizer () + * Config saved to config.json and + *//*! + * Bootstrap v3.3.7 (http://getbootstrap.com) + * Copyright 2011-2016 Twitter, Inc. + * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) + *//*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */table{border-collapse:collapse;border-spacing:0}td,th{padding:0}*{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}*:before,*:after{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}table{background-color:transparent}caption{padding-top:8px;padding-bottom:8px;color:#777;text-align:left}th{text-align:left}.table{width:100%;max-width:100%;margin-bottom:20px}.table>thead>tr>th,.table>tbody>tr>th,.table>tfoot>tr>th,.table>thead>tr>td,.table>tbody>tr>td,.table>tfoot>tr>td{padding:8px;line-height:1.42857143;vertical-align:top;border-top:1px solid #ddd}.table>thead>tr>th{vertical-align:bottom;border-bottom:2px solid #ddd}.table>caption+thead>tr:first-child>th,.table>colgroup+thead>tr:first-child>th,.table>thead:first-child>tr:first-child>th,.table>caption+thead>tr:first-child>td,.table>colgroup+thead>tr:first-child>td,.table>thead:first-child>tr:first-child>td{border-top:0}.table>tbody+tbody{border-top:2px solid #ddd}.table .table{background-color:#fff}.table-condensed>thead>tr>th,.table-condensed>tbody>tr>th,.table-condensed>tfoot>tr>th,.table-condensed>thead>tr>td,.table-condensed>tbody>tr>td,.table-condensed>tfoot>tr>td{padding:5px}.table-bordered{border:1px solid #ddd}.table-bordered>thead>tr>th,.table-bordered>tbody>tr>th,.table-bordered>tfoot>tr>th,.table-bordered>thead>tr>td,.table-bordered>tbody>tr>td,.table-bordered>tfoot>tr>td{border:1px solid #ddd}.table-bordered>thead>tr>th,.table-bordered>thead>tr>td{border-bottom-width:2px}.table-striped>tbody>tr:nth-of-type(odd){background-color:#f9f9f9}.table-hover>tbody>tr:hover{background-color:#f5f5f5}table col[class*="col-"]{position:static;float:none;display:table-column}table td[class*="col-"],table th[class*="col-"]{position:static;float:none;display:table-cell}.table>thead>tr>td.active,.table>tbody>tr>td.active,.table>tfoot>tr>td.active,.table>thead>tr>th.active,.table>tbody>tr>th.active,.table>tfoot>tr>th.active,.table>thead>tr.active>td,.table>tbody>tr.active>td,.table>tfoot>tr.active>td,.table>thead>tr.active>th,.table>tbody>tr.active>th,.table>tfoot>tr.active>th{background-color:#f5f5f5}.table-hover>tbody>tr>td.active:hover,.table-hover>tbody>tr>th.active:hover,.table-hover>tbody>tr.active:hover>td,.table-hover>tbody>tr:hover>.active,.table-hover>tbody>tr.active:hover>th{background-color:#e8e8e8}.table>thead>tr>td.success,.table>tbody>tr>td.success,.table>tfoot>tr>td.success,.table>thead>tr>th.success,.table>tbody>tr>th.success,.table>tfoot>tr>th.success,.table>thead>tr.success>td,.table>tbody>tr.success>td,.table>tfoot>tr.success>td,.table>thead>tr.success>th,.table>tbody>tr.success>th,.table>tfoot>tr.success>th{background-color:#dff0d8}.table-hover>tbody>tr>td.success:hover,.table-hover>tbody>tr>th.success:hover,.table-hover>tbody>tr.success:hover>td,.table-hover>tbody>tr:hover>.success,.table-hover>tbody>tr.success:hover>th{background-color:#d0e9c6}.table>thead>tr>td.info,.table>tbody>tr>td.info,.table>tfoot>tr>td.info,.table>thead>tr>th.info,.table>tbody>tr>th.info,.table>tfoot>tr>th.info,.table>thead>tr.info>td,.table>tbody>tr.info>td,.table>tfoot>tr.info>td,.table>thead>tr.info>th,.table>tbody>tr.info>th,.table>tfoot>tr.info>th{background-color:#d9edf7}.table-hover>tbody>tr>td.info:hover,.table-hover>tbody>tr>th.info:hover,.table-hover>tbody>tr.info:hover>td,.table-hover>tbody>tr:hover>.info,.table-hover>tbody>tr.info:hover>th{background-color:#c4e3f3}.table>thead>tr>td.warning,.table>tbody>tr>td.warning,.table>tfoot>tr>td.warning,.table>thead>tr>th.warning,.table>tbody>tr>th.warning,.table>tfoot>tr>th.warning,.table>thead>tr.warning>td,.table>tbody>tr.warning>td,.table>tfoot>tr.warning>td,.table>thead>tr.warning>th,.table>tbody>tr.warning>th,.table>tfoot>tr.warning>th{background-color:#fcf8e3}.table-hover>tbody>tr>td.warning:hover,.table-hover>tbody>tr>th.warning:hover,.table-hover>tbody>tr.warning:hover>td,.table-hover>tbody>tr:hover>.warning,.table-hover>tbody>tr.warning:hover>th{background-color:#faf2cc}.table>thead>tr>td.danger,.table>tbody>tr>td.danger,.table>tfoot>tr>td.danger,.table>thead>tr>th.danger,.table>tbody>tr>th.danger,.table>tfoot>tr>th.danger,.table>thead>tr.danger>td,.table>tbody>tr.danger>td,.table>tfoot>tr.danger>td,.table>thead>tr.danger>th,.table>tbody>tr.danger>th,.table>tfoot>tr.danger>th{background-color:#f2dede}.table-hover>tbody>tr>td.danger:hover,.table-hover>tbody>tr>th.danger:hover,.table-hover>tbody>tr.danger:hover>td,.table-hover>tbody>tr:hover>.danger,.table-hover>tbody>tr.danger:hover>th{background-color:#ebcccc}.table-responsive{overflow-x:auto;min-height:0.01%}@media screen and (max-width:767px){.table-responsive{width:100%;margin-bottom:15px;overflow-y:hidden;-ms-overflow-style:-ms-autohiding-scrollbar;border:1px solid #ddd}.table-responsive>.table{margin-bottom:0}.table-responsive>.table>thead>tr>th,.table-responsive>.table>tbody>tr>th,.table-responsive>.table>tfoot>tr>th,.table-responsive>.table>thead>tr>td,.table-responsive>.table>tbody>tr>td,.table-responsive>.table>tfoot>tr>td{white-space:nowrap}.table-responsive>.table-bordered{border:0}.table-responsive>.table-bordered>thead>tr>th:first-child,.table-responsive>.table-bordered>tbody>tr>th:first-child,.table-responsive>.table-bordered>tfoot>tr>th:first-child,.table-responsive>.table-bordered>thead>tr>td:first-child,.table-responsive>.table-bordered>tbody>tr>td:first-child,.table-responsive>.table-bordered>tfoot>tr>td:first-child{border-left:0}.table-responsive>.table-bordered>thead>tr>th:last-child,.table-responsive>.table-bordered>tbody>tr>th:last-child,.table-responsive>.table-bordered>tfoot>tr>th:last-child,.table-responsive>.table-bordered>thead>tr>td:last-child,.table-responsive>.table-bordered>tbody>tr>td:last-child,.table-responsive>.table-bordered>tfoot>tr>td:last-child{border-right:0}.table-responsive>.table-bordered>tbody>tr:last-child>th,.table-responsive>.table-bordered>tfoot>tr:last-child>th,.table-responsive>.table-bordered>tbody>tr:last-child>td,.table-responsive>.table-bordered>tfoot>tr:last-child>td{border-bottom:0}}.tooltip{position:absolute;z-index:1070;display:block;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-style:normal;font-weight:normal;letter-spacing:normal;line-break:auto;line-height:1.42857143;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;white-space:normal;word-break:normal;word-spacing:normal;word-wrap:normal;font-size:12px;opacity:0;filter:alpha(opacity=0)}.tooltip.in{opacity:.9;filter:alpha(opacity=90)}.tooltip.top{margin-top:-3px;padding:5px 0}.tooltip.right{margin-left:3px;padding:0 5px}.tooltip.bottom{margin-top:3px;padding:5px 0}.tooltip.left{margin-left:-3px;padding:0 5px}.tooltip-inner{max-width:200px;padding:3px 8px;color:#fff;text-align:center;background-color:#000;border-radius:4px}.tooltip-arrow{position:absolute;width:0;height:0;border-color:transparent;border-style:solid}.tooltip.top .tooltip-arrow{bottom:0;left:50%;margin-left:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.top-left .tooltip-arrow{bottom:0;right:5px;margin-bottom:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.top-right .tooltip-arrow{bottom:0;left:5px;margin-bottom:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.right .tooltip-arrow{top:50%;left:0;margin-top:-5px;border-width:5px 5px 5px 0;border-right-color:#000}.tooltip.left .tooltip-arrow{top:50%;right:0;margin-top:-5px;border-width:5px 0 5px 5px;border-left-color:#000}.tooltip.bottom .tooltip-arrow{top:0;left:50%;margin-left:-5px;border-width:0 5px 5px;border-bottom-color:#000}.tooltip.bottom-left .tooltip-arrow{top:0;right:5px;margin-top:-5px;border-width:0 5px 5px;border-bottom-color:#000}.tooltip.bottom-right .tooltip-arrow{top:0;left:5px;margin-top:-5px;border-width:0 5px 5px;border-bottom-color:#000}.popover{position:absolute;top:0;left:0;z-index:1060;display:none;max-width:276px;padding:1px;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-style:normal;font-weight:normal;letter-spacing:normal;line-break:auto;line-height:1.42857143;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;white-space:normal;word-break:normal;word-spacing:normal;word-wrap:normal;font-size:14px;background-color:#fff;-webkit-background-clip:padding-box;background-clip:padding-box;border:1px solid #ccc;border:1px solid rgba(0,0,0,0.2);border-radius:6px;-webkit-box-shadow:0 5px 10px rgba(0,0,0,0.2);box-shadow:0 5px 10px rgba(0,0,0,0.2)}.popover.top{margin-top:-10px}.popover.right{margin-left:10px}.popover.bottom{margin-top:10px}.popover.left{margin-left:-10px}.popover-title{margin:0;padding:8px 14px;font-size:14px;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;border-radius:5px 5px 0 0}.popover-content{padding:9px 14px}.popover>.arrow,.popover>.arrow:after{position:absolute;display:block;width:0;height:0;border-color:transparent;border-style:solid}.popover>.arrow{border-width:11px}.popover>.arrow:after{border-width:10px;content:""}.popover.top>.arrow{left:50%;margin-left:-11px;border-bottom-width:0;border-top-color:#999;border-top-color:rgba(0,0,0,0.25);bottom:-11px}.popover.top>.arrow:after{content:" ";bottom:1px;margin-left:-10px;border-bottom-width:0;border-top-color:#fff}.popover.right>.arrow{top:50%;left:-11px;margin-top:-11px;border-left-width:0;border-right-color:#999;border-right-color:rgba(0,0,0,0.25)}.popover.right>.arrow:after{content:" ";left:1px;bottom:-10px;border-left-width:0;border-right-color:#fff}.popover.bottom>.arrow{left:50%;margin-left:-11px;border-top-width:0;border-bottom-color:#999;border-bottom-color:rgba(0,0,0,0.25);top:-11px}.popover.bottom>.arrow:after{content:" ";top:1px;margin-left:-10px;border-top-width:0;border-bottom-color:#fff}.popover.left>.arrow{top:50%;right:-11px;margin-top:-11px;border-right-width:0;border-left-color:#999;border-left-color:rgba(0,0,0,0.25)}.popover.left>.arrow:after{content:" ";right:1px;border-right-width:0;border-left-color:#fff;bottom:-10px}.clearfix:before,.clearfix:after{content:" ";display:table}.clearfix:after{clear:both}.center-block{display:block;margin-left:auto;margin-right:auto}.pull-right{float:right !important}.pull-left{float:left !important}.hide{display:none !important}.show{display:block !important}.invisible{visibility:hidden}.text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.hidden{display:none !important}.affix{position:fixed} diff --git a/docs/articles/Using-the-DRR-Template_files/kePrint-0.0.1/kePrint.js b/docs/articles/Using-the-DRR-Template_files/kePrint-0.0.1/kePrint.js new file mode 100644 index 0000000..e6fbbfc --- /dev/null +++ b/docs/articles/Using-the-DRR-Template_files/kePrint-0.0.1/kePrint.js @@ -0,0 +1,8 @@ +$(document).ready(function(){ + if (typeof $('[data-toggle="tooltip"]').tooltip === 'function') { + $('[data-toggle="tooltip"]').tooltip(); + } + if ($('[data-toggle="popover"]').popover === 'function') { + $('[data-toggle="popover"]').popover(); + } +}); diff --git a/docs/articles/Using-the-DRR-Template_files/lightable-0.0.1/lightable.css b/docs/articles/Using-the-DRR-Template_files/lightable-0.0.1/lightable.css new file mode 100644 index 0000000..3be3be9 --- /dev/null +++ b/docs/articles/Using-the-DRR-Template_files/lightable-0.0.1/lightable.css @@ -0,0 +1,272 @@ +/*! + * lightable v0.0.1 + * Copyright 2020 Hao Zhu + * Licensed under MIT (https://github.com/haozhu233/kableExtra/blob/master/LICENSE) + */ + +.lightable-minimal { + border-collapse: separate; + border-spacing: 16px 1px; + width: 100%; + margin-bottom: 10px; +} + +.lightable-minimal td { + margin-left: 5px; + margin-right: 5px; +} + +.lightable-minimal th { + margin-left: 5px; + margin-right: 5px; +} + +.lightable-minimal thead tr:last-child th { + border-bottom: 2px solid #00000050; + empty-cells: hide; + +} + +.lightable-minimal tbody tr:first-child td { + padding-top: 0.5em; +} + +.lightable-minimal.lightable-hover tbody tr:hover { + background-color: #f5f5f5; +} + +.lightable-minimal.lightable-striped tbody tr:nth-child(even) { + background-color: #f5f5f5; +} + +.lightable-classic { + border-top: 0.16em solid #111111; + border-bottom: 0.16em solid #111111; + width: 100%; + margin-bottom: 10px; + margin: 10px 5px; +} + +.lightable-classic tfoot tr td { + border: 0; +} + +.lightable-classic tfoot tr:first-child td { + border-top: 0.14em solid #111111; +} + +.lightable-classic caption { + color: #222222; +} + +.lightable-classic td { + padding-left: 5px; + padding-right: 5px; + color: #222222; +} + +.lightable-classic th { + padding-left: 5px; + padding-right: 5px; + font-weight: normal; + color: #222222; +} + +.lightable-classic thead tr:last-child th { + border-bottom: 0.10em solid #111111; +} + +.lightable-classic.lightable-hover tbody tr:hover { + background-color: #F9EEC1; +} + +.lightable-classic.lightable-striped tbody tr:nth-child(even) { + background-color: #f5f5f5; +} + +.lightable-classic-2 { + border-top: 3px double #111111; + border-bottom: 3px double #111111; + width: 100%; + margin-bottom: 10px; +} + +.lightable-classic-2 tfoot tr td { + border: 0; +} + +.lightable-classic-2 tfoot tr:first-child td { + border-top: 3px double #111111; +} + +.lightable-classic-2 caption { + color: #222222; +} + +.lightable-classic-2 td { + padding-left: 5px; + padding-right: 5px; + color: #222222; +} + +.lightable-classic-2 th { + padding-left: 5px; + padding-right: 5px; + font-weight: normal; + color: #222222; +} + +.lightable-classic-2 tbody tr:last-child td { + border-bottom: 3px double #111111; +} + +.lightable-classic-2 thead tr:last-child th { + border-bottom: 1px solid #111111; +} + +.lightable-classic-2.lightable-hover tbody tr:hover { + background-color: #F9EEC1; +} + +.lightable-classic-2.lightable-striped tbody tr:nth-child(even) { + background-color: #f5f5f5; +} + +.lightable-material { + min-width: 100%; + white-space: nowrap; + table-layout: fixed; + font-family: Roboto, sans-serif; + border: 1px solid #EEE; + border-collapse: collapse; + margin-bottom: 10px; +} + +.lightable-material tfoot tr td { + border: 0; +} + +.lightable-material tfoot tr:first-child td { + border-top: 1px solid #EEE; +} + +.lightable-material th { + height: 56px; + padding-left: 16px; + padding-right: 16px; +} + +.lightable-material td { + height: 52px; + padding-left: 16px; + padding-right: 16px; + border-top: 1px solid #eeeeee; +} + +.lightable-material.lightable-hover tbody tr:hover { + background-color: #f5f5f5; +} + +.lightable-material.lightable-striped tbody tr:nth-child(even) { + background-color: #f5f5f5; +} + +.lightable-material.lightable-striped tbody td { + border: 0; +} + +.lightable-material.lightable-striped thead tr:last-child th { + border-bottom: 1px solid #ddd; +} + +.lightable-material-dark { + min-width: 100%; + white-space: nowrap; + table-layout: fixed; + font-family: Roboto, sans-serif; + border: 1px solid #FFFFFF12; + border-collapse: collapse; + margin-bottom: 10px; + background-color: #363640; +} + +.lightable-material-dark tfoot tr td { + border: 0; +} + +.lightable-material-dark tfoot tr:first-child td { + border-top: 1px solid #FFFFFF12; +} + +.lightable-material-dark th { + height: 56px; + padding-left: 16px; + padding-right: 16px; + color: #FFFFFF60; +} + +.lightable-material-dark td { + height: 52px; + padding-left: 16px; + padding-right: 16px; + color: #FFFFFF; + border-top: 1px solid #FFFFFF12; +} + +.lightable-material-dark.lightable-hover tbody tr:hover { + background-color: #FFFFFF12; +} + +.lightable-material-dark.lightable-striped tbody tr:nth-child(even) { + background-color: #FFFFFF12; +} + +.lightable-material-dark.lightable-striped tbody td { + border: 0; +} + +.lightable-material-dark.lightable-striped thead tr:last-child th { + border-bottom: 1px solid #FFFFFF12; +} + +.lightable-paper { + width: 100%; + margin-bottom: 10px; + color: #444; +} + +.lightable-paper tfoot tr td { + border: 0; +} + +.lightable-paper tfoot tr:first-child td { + border-top: 1px solid #00000020; +} + +.lightable-paper thead tr:last-child th { + color: #666; + vertical-align: bottom; + border-bottom: 1px solid #00000020; + line-height: 1.15em; + padding: 10px 5px; +} + +.lightable-paper td { + vertical-align: middle; + border-bottom: 1px solid #00000010; + line-height: 1.15em; + padding: 7px 5px; +} + +.lightable-paper.lightable-hover tbody tr:hover { + background-color: #F9EEC1; +} + +.lightable-paper.lightable-striped tbody tr:nth-child(even) { + background-color: #00000008; +} + +.lightable-paper.lightable-striped tbody td { + border: 0; +} + From 6dc5736cd6520756d2d9be29779c1fdf29024434 Mon Sep 17 00:00:00 2001 From: Rob Baker Date: Fri, 9 Feb 2024 09:14:27 -0700 Subject: [PATCH 18/33] remove vignettes (converted them to articles) --- docs/articles/a01_DRR_Background.html | 208 ------- docs/articles/a02_Using_DRR_Template.html | 661 ---------------------- 2 files changed, 869 deletions(-) delete mode 100644 docs/articles/a01_DRR_Background.html delete mode 100644 docs/articles/a02_Using_DRR_Template.html diff --git a/docs/articles/a01_DRR_Background.html b/docs/articles/a01_DRR_Background.html deleted file mode 100644 index a90167b..0000000 --- a/docs/articles/a01_DRR_Background.html +++ /dev/null @@ -1,208 +0,0 @@ - - - - - - - -Getting Started with NPS DRRs • QCkit - - - - - - - - - - - - -
      -
      - - - - -
      -
      - - - - - -

      Lifecycle: experimental

      -
      -

      DRRs: Background -

      -

      Purpose and Scope of Data Release -Reports

      -

      This is a template is for use when drafting Data Release Reports. -DRRs are created by the National Park Service and provide detailed -descriptions of valuable research datasets, including the methods used -to collect the data and technical analyses supporting the quality of the -measurements. Data Release Reports focus on helping others reuse data -rather than presenting results, testing hypotheses, or presenting new -interpretations and in-depth analyses.

      -
      -
      -

      About this Template -

      -

      This template contains an rmarkdown template file, default folder -structure for project files, and all the necessary template files to -generate an unformatted .docx file. The file will be ingested by -EXstyles, converted to an .xml file and fully formatted according to NPS -branding upon final publication. The goal of this process is to relieve -data producers, managers, and scientists from the burden of formatting -and allow them to focus primarily on content. The content should -document the collection, processing, quality control, of NPS data -packages and evaluate their of utility.

      -

      This template is under active development to improve style and 508 -compliance.

      -
      -
      -

      How to Start a DRR -

      -

      New projects can be established using this template by downloading a -zip file of the template and associated files and folders from: This -Link

      -
        -
      1. How to Use this Template -line-by-line instructions and descriptions for how to use the DRR -Template.

      2. -
      3. The -DRR_Template the file you make changes to to generate a DRR. Note: -this is not a stand-alone file. To create a DRR please download the zipped -template with all associated files and folders.

      4. -
      5. Bibtex -reference file is used if you want to automate your citations. Add -each citation in bibtex format to this file and save it. Add in-text -citations to the DRR Template and your References section will -automatically be generated for you when you knit the .Rmd to .docx. You -should still visually check the final format in the .docx file for -accuracy, completion, and formatting. If you would prefer to manually -format your citations, feel free to continue doing so.

      6. -
      7. DRR_Report -an example of the .docx output file that takes into account your edits -and changes to DRR_to_docx.Rmd (assuming you have saved and/or knit the -.Rmd to .docx format in Rstudio).

      8. -
      -
      -
      -

      Examples -

      -

      More will be provided as they are published. The following examples -are post-formatting and should be used as examples for content -generation only.

      -
        -
      1. DRR for -tabular (csv) datasets of hydrologic data used for calculating -hydrologic metrics as a part of the national Environmental Settings -monitoring protocol.

      2. -
      3. DRR for geospatial (file -geodatabase) data continuing custom areas of analysis used for -Environmental Settings monitoring protocol. Report created in Microsoft -Word and ported to the template.

      4. -
      -
      -
      -

      Tips, FAQs, and Errata -

      -

      (coming soon)

      -
      -
      - - - -
      - - - -
      - -
      -

      -

      Site built with pkgdown 2.0.7.

      -
      - -
      -
      - - - - - - - - diff --git a/docs/articles/a02_Using_DRR_Template.html b/docs/articles/a02_Using_DRR_Template.html deleted file mode 100644 index 18adf6c..0000000 --- a/docs/articles/a02_Using_DRR_Template.html +++ /dev/null @@ -1,661 +0,0 @@ - - - - - - - -Using the DRR Template • QCkit - - - - - - - - - - - - -
      -
      - - - - -
      - -
      -
      - - - - -
      -

      Overview -

      -

      Data Release Reports (DRRs) are created by the National Park Service -and provide detailed descriptions of valuable research datasets, -including the methods used to collect the data and technical analyses -supporting the quality of the measurements. Data Release Reports focus -on helping others reuse data, rather than presenting results, testing -hypotheses, or presenting new interpretations, methods or in-depth -analyses.

      -

      DRRs are intended to document the processing of fully-QAed data to -their final (QCed) form in a reproducible and transparent manner. DRRs -document the data collection methods and quality standards used to -prepare and review data prior to release. DRRs present the quality of -resultant data in the context of fitness for their intended use.

      -

      Each DRR cites source and resultant datasets that are published -concurrently and cross-referenced. Associated datasets are made publicly -available with the exception of data that must be protected from release -as per NPS and park-specific policies.

      -

      Data packages that are published concurrently with DRRs are intended -to be independently citable scientific works that can serve as the basis -for subsequent analysis and reporting by NPS or third parties.

      -
      -
      -

      Project Set-up -

      -

      The Template is not a stand-alone file but instead has multiple -associated and dependent files. New projects can be established using by -downloading the Zip file associated with the latest release -of the DRR template repository on GitHub.

      -
      -

      Folder Structure -

      -

      General directory contents are as follows (Figure 1):

      -
        -
      • -

        input This is the only location (other than the -template script itself) where you you should manually change or edit -files. This is where data files you need to supply should be placed.

        -
          -
        • -figures If you have figures that are not generated as -part of running this template, place those files here.
        • -
        -
      • -
      • output Do not edit these files. This is where you -can find your final products. Edits to files in this folder will not be -incorporated when you knit the DRR_to_docx.rmd file. Any edits you make -to files in this directory may be overwritten when you knit the -template.

      • -
      • temp Do not edit these files. These are files that -are either used or generated during when you knit the DRR_to_docx.rmd -template. They may include graphics, text, or data.

      • -
      • You can safely ignore most of the other folders (including -docs, my-website, -vignettes,.github) and files (including -_config.yml, .gitignore, -.Rhistory, index.html, and -national-park-service-DRR.csl).

      • -
      -
      -
      -
      -

      Reproducible Reports -

      -

      The following is for users who are using the -DRR_to_docx.rmd template file to generate a data release -report using RMarkdown.

      -
      -

      Standard Code Chunks -

      -

      In addition to the report outline and a description of content for -each section, the template includes four standard code chunks.

      -

      YAML Header:

      -

      The YAML header helps format the DRR. You should not need to edit any -of the YAML header.

      -

      R code chunks:

      -
        -
      • -

        user_edited_parameters. A series of parameters that -are used in the creation of the DRR and may be re-used in metadata and -associated data package construction. You will need to edit these -parameters for each DRR.

        -
          -
        • -title. The title of the Data Release Report.
        • -
        • -reportNumber. This is optional, and should -only be included if publishing in the semi-official DRR series. -Set to NULL if there is no reportNumber.
        • -
        • -DRR_DSRefID. This is the DataStore reference ID for the -report.
        • -
        • -authorNames. A list of the author’s names.
        • -
        • -authorAffiliations. A list of the author’s -affiliations. The order of author affiliations must match the order of -the authors in the authorNames list. Note that the entirety -of each affiliation is enclosed in a single set of quotations. Line -breaks are indicated with the
          tag. Do not worry about indentation -or word wrapping. If two authors have the same affiliation, list the -affiliation twice.
        • -
        • -authorORCID. A list of ORCID iDs for each author in the -format “xxxx-xxxx-xxxx-xxxx”. If an author does not have an ORCID iD, -specify NA (no quotes). The order of ORCID iDs (and NAs) must correspond -to the order of authors in the authorNames list. Future -iterations of the DRR Template will pull ORCID iDs from metadata and -eventually from Active Directory. See ORCID for more information about ORCID -iDs or to register an ORCID iD.
        • -
        • -DRRabstract. The abstract for the DRR (which may be -distinct from the data package abstract). Pay careful attention to -non-standard characters, line breaks, carriage returns, and -curly-quotes. You may find it useful to write the abstract in NotePad or -some other text editor and NOT a word processor (such as Microsoft -Word). Indicate line breaks with and a space between paragraphs - should -you want them - using . The Abstract should succinctly describe the -study, the assay(s) performed, the resulting data, and their reuse -potential, but should not make any claims regarding new scientific -findings. No references are allowed in this section. A good suggested -length for abstracts is less than 250 words.
        • -
        • -dataPackageRefID. DataStore reference ID for the data -package associated with this report. You must have at least one data -package. Eventually, we will automate importing much of this information -from metadata and include the ability to describe multiple data packages -in a single DRR.
        • -
        • -dataPackageTitle. The title of the data package. Must -match the title on DataStore (and metadata).
        • -
        • -dataPackageDescription. A short title/subtitle or short -description for the data package. Must match the data package -metadata.
        • -
        • -dataPackageDOI. Auto-generated, no need to edit or -update. This is the data package DOI. It is based on the DataStore -reference number.
        • -
        • -dataPackage_fileNames. List the file names in your data -package. Do NOT include metadata files. For example, include -“my_data.csv” but do NOT include “my_metadata.xml”.
        • -
        • -dataPackage_fileSizes. List the approximate size of -each data file. Make sure the order of the file sizes corresponds to the -order of file names in dataPackage_fileNames. -dataPackage_fileDescript. A short description of the -corresponding data file that helps distinguish it from other data files. -A good guideline is 10 words or less. This will be used in a table -summary table so brevity is a priority. If you have already created -metadata for your data package in EML format, this should be the same -text as found in the “entityDescription” element for each data -file.
        • -
        -
      • -
      • setup. Most users will not need to edit this code -chunk. There is one code snippet for loading packages; the -RRpackages section is a suite of packages that are used to -assist with reproducible reporting. You may not need these for your -report, but we have included them as part of the base recommended -packages. If you plan to perform you QC as part of the DRR construction -process, you can add a second code snipped to import necessary packages -for your QC process here.

      • -
      • title_do_not_edit. These parameters are -auto-generated based on either the EML you supplied (when that becomes -an option) or the information you’ve already supplied under -“user-edited-parameters”. You really should not need to edit these -parameters.

      • -
      • authors_do_not_edit. There is no need to edit this -chunk. This writes the author names, ORCID iDs, and affiliations to the -.docx document based on information supplied in -user-edited-parameters.

      • -
      • LoadData. Any datasets you need to load can go here. -For most people these datasets are used to generate summary statistics -on proportions of data that were flagged as accepted (A) accepted, -estimated (AE) and rejected (R) during the quality control -process.

      • -
      • FileTable. Do not edit. Generates a table of file -names, sizes, and descriptions in the data package being described by -the DRR.

      • -
      • dataFlaggingTable. This sample code provides a -summary table defining the suggested data flagging codes. There is no -need to edit this table.

      • -
      • Listing. Appendix A, by default is the code listing. -This will generate all code used in generating the report and data -packages. In most cases, code listing is not required. If all QA/QC -processes and data manipulations were performed elsewhere, you should -cite that code (in the methods and references) and leave the “listing -code chunk with the default settings of eval=FALSE and echo=FALSE. If -you have developed custom scripts, you can add those to DataStore with -the reference”Script” and cite them in the DRR.

      • -
      • session-info is the information about the versions -of R and packages used in generating the report. In most cases, you do -not need to report session info (leave the session-info code chunk -parameters in their default state: eval=FALSE). Session and version -information is only necessary if you have set the “Listing” code chunk -in appendix A to eval=TRUE. In that case, change the “session info” code -chunk parameters to eval=TRUE.

      • -
      -
      -
      -

      Citations -

      -
      -

      Automating Citations -

      -

      To automate citations, add the citation in bibtex format to the file -“references.bib”. You can manually copy and paste the bibtex for each -reference in, or you can search for it from within Rstudio. From within -Rstudio, make sure you are editing this document using the “Visual” view -(as opposed to “Source”). From the “Insert” drop-down menu, select “@ -Citation…” (shortcut: Cntrl-Shift-F8). This will open a Graphical User -Interface (GUI) tool where you can view all the citations in your -reference.bib file as well as search multiple databases for references, -automatically insert the bibtex for the reference into your -references.bib file (and customize the unique identifier if you’d like) -and insert the in-text citation into the DRR template.

      -

      Once a reference is in your references.bib file, using the Visual -view of the template you can simply type the ‘@’ symbol and select which -reference to insert in the text.

      -

      If you need to edit how the citation is displayed after inserting it -into the text, switch back to the “Source” view. Each bibtex citation -should start with a unique identifier; the example reference in the -supplied references.bib file has the unique identifier “@article{Scott1994,”. Using the “Source” view in -Rstudio, insert the reference in your text, by combining the “at” symbol -with the portion of the unique identifier after the curly bracket: @Scott1994 .

      - ---- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
      SyntaxResult
      -@Scott1994 concludes that …Scott et al., 1994 concludes that …
      -@Scott1994[p.33] concludes that …Scott (1994, p.33) concludes that …
      … end of sentence [@Scott1994].… end of sentence (Scott et al., 1994).
      … end of sentence [see @Scott1994,p.33].… end of sentence (see Scott et al. 1994,p.33).
      delineate multiple authors with colon: -[@Scott1994; @aberdeen1958] -delineate multiple authors with colon: (Scott et al., 1994; -Aberdeen, 1958)
      Scott et al. conclude that …. [-@Scott1994] -Scott et al. conclude that . . . (1994)
      -

      The full citation, properly formatted, will be included in a -“References” section at the end of the rendered MS Word document. . . -though it is also worth visually inspecting the .docx for citation -completeness and formatting.

      -
      -
      -

      Manual citations -

      -

      If you would like to format your citations manually, please feel free -to do so. Make sure to look at the References section for how to -properly format each citation type.

      -
      -
      -
      -
      -

      Editing the Text -

      -

      The following text in the body of the DRR template will need to be -edited to customize it to each data package.

      -
      -

      Data Records -

      -

      This is a required section and consists of two subheadings:

      -
        -
      • Data inputs - an optional subsection used to -describe datasets that the data package is based on if it is a -re-analysis, reorganization, or re-integration of prevously existing -data sets.

      • -
      • Summary of datasts created - this is a required -section used to explain each data record associated with the work (for -instance, a data package), including the DOI indicating where this -information is stored. It shoudl also provide an overview of the data -files and their formats. Each external data record should be -cited.

      • -
      -

      Sample text is included that uses r code to incorporate previously -specified parameters such as the data package title, file names, and -DOI.

      -

      A code for a sample table summarizing the contents of the data -package (except the metadata) is provided.

      -
      -
      -

      Data Quality -

      -

      This is a required section. and the text includes multiple suggested -text elements and code for an example table defining data flagging -codes. Near future development here will incorporate additional optional -tables to summarize the data quality based on the flags in the data -sets.

      -
      -
      -

      Usage Notes -

      -

      This is a required section that should contain brief instructions to -assist other researchers with reuse of the data. This may include -discussion of software packages (with appropriate citations) that are -suitable for analysing the assay data files, suggested downstream -processing steps (e.g. normalization, etc.), or tips for integrating or -comparing the data records with other datasets. Authors are encouraged -to provide code, programs or data-processing workflows if they may help -others understand or use the data.

      -
      -
      -

      Methods -

      -

      This is a required section that cites previous methods used but -should also be detailed enough in describing data production including -the experimental design, data acquisition assays, and any computational -processing (e.g. normalization, QA, QC) such that others can understand -the methods without referring to associated publications.

      -

      Optional sub-sections within the methods include:

      -
        -
      • Data Collection and Sampling
      • -
      • Additional Data Sources
      • -
      • Data Processing
      • -
      • Code availability
      • -
      -
      -
      -

      References -

      -

      This required section includes full bibliographic references for each -paper, chapter, book, data package, dataset, protocol, etc cited within -the DRR.

      -

      There are numerous examples of proper formatting for each of these. -Future versions of the DRR will enable automatic reference formatting -given a correctly formatted bibtex file with the references (.bib).

      -
      -
      -

      Figures -

      -

      Figures should be inserted using code chunks in all cases so that -figure settings can be set in the chunk header. The chunk header should -at a minimum set the fig.align parameter to “center” and the specify the -figure caption (fig.cap parameter). Inserting figures this way will -ensure that the caption is properly formatted and it will apply copy the -caption to the figure’s “alt text” tag, making it 508-compliant.

      -

      For example:

      -
      ```{r fig2, echo=FALSE, out.width="70%", fig.align="center", fig.cap="Example general workflow to incude in the methods section."} 
      -knitr::include_graphics("ProcessingWorkflow.png")
      -```
      -

      Results in:

      -
      -
      -

      Tables -

      -

      Tables should be created using the kable function. Specifying the -caption in the kable function call (as opposed to inline markdown text) -will ensure that the caption is appropriately formatted.

      -

      For example:

      -
      ```{r Table2, echo=FALSE}
      -c1<-c("Protocol1","Protocol2","Protocol3")
      -c2<-c("Park Unit 1","Park Unit 2","Park Unit 3")
      -c3<-c("Site 1","Site 2","Site 3")
      -c4<-c("Date 1","Date 2","Date 3")
      -c5<-c("GEOXXXXX","GEOXXXXX","GEOXXXXX")
      -Table2<-data.frame(c1,c2,c3,c4,c5)
      -
      -kable(Table2, 
      -      col.names=c("Subjects","Park Units","Locations","Sampling Dates","Data"),
      -      caption="**Table 1.** Monitoring study example Data Records table.") %>%
      -  kable_styling(bootstrap_options = c("striped", "hover", "condensed", "responsive"),full_width=F)
      -```
      -

      Results in:

      - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
      -Table 1. Monitoring study example Data Records table. -
      -Subjects - -Park Units - -Locations - -Sampling Dates - -Data -
      -Protocol1 - -Park Unit 1 - -Site 1 - -Date 1 - -GEOXXXXX -
      -Protocol2 - -Park Unit 2 - -Site 2 - -Date 2 - -GEOXXXXX -
      -Protocol3 - -Park Unit 3 - -Site 3 - -Date 3 - -GEOXXXXX -
      -
      -
      -
      -

      Publishing DRRs -

      -
      -

      Report Numbers -

      -

      Because data release reports and associated data packages are -cross-referential, report numbers are typically assigned early in data -processing and quality evaluation.

      -
        -
      • DataStore Reference Numbers. When developing a -report and data packages, DataStore references should be created as -early in the process as practicable. While the report and data packages -are in development, these should not be activated.

      • -
      • Report Numbers. If you are planning to publish a -Data Release Report with an official DRR number, please contact the IMD -Deputy Chief with the DataStore reference number associated with the -DRR.

      • -
      • Persistent Identifiers. Digital object -identifiers (DOIs) will be assigned to all DRRs and concurrently -published data packages. DOIs will resolve to a DataStore Reference; -DOIs are reserved when a draft reference is initiated in DataStore. They -are not activated until the publication process, including relevant -review, is complete.

      • -
      -

      DRR DOIs have the format: https://doi.org/10.36967/xxxxxxx

      -

      Data package DOIs have the format: https://doi.org/10.57830/xxxxxxx

      -

      Where the “xxxxxx” is the 7-digit DataStore reference number.

      -
      -
      -

      Liability Statements -

      -

      Under no circumstances should reports and associated data packages or -metadata published in the DRR series contain disclaimers or text that -suggests that the work does not meet scientific integrity or information -quality standards of the National Park Service. The following -disclaimers are suitable for use, depending on whether the data are -provisional or final (or approved or certified).

      -
      -

      For approved & published data sets: “Unless -otherwise stated, all data, metadata and related materials are -considered to satisfy the quality standards relative to the purpose for -which the data were collected. Although these data and associated -metadata have been reviewed for accuracy and completeness and approved -for release by the National Park Service Inventory and Monitoring -Division, no warranty expressed or implied is made regarding the display -or utility of the data for other purposes, nor on all computer systems, -nor shall the act of distribution constitute any such warranty.”

      -
      -
      -

      For provisional data: “The data you have secured -from the National Park Service (NPS) database identified as [database -name] have not received approval for release by the NPS Inventory and -Monitoring Division, and as such are provisional and subject to -revision. The data are released on the condition that neither the NPS -nor the U.S. Government shall be held liable for any damages resulting -from its authorized or unauthorized use.”

      -
      -
      -
      -
      - - - -
      - - - -
      - -
      -

      -

      Site built with pkgdown 2.0.7.

      -
      - -
      -
      - - - - - - - - From aff5f891743e4c5aac93418f0de96c966848d07d Mon Sep 17 00:00:00 2001 From: Rob Baker Date: Fri, 9 Feb 2024 09:14:53 -0700 Subject: [PATCH 19/33] updated via devtools::document and pkgdown --- docs/404.html | 4 +- docs/LICENSE-text.html | 4 +- docs/LICENSE.html | 4 +- docs/articles/QCkit.html | 4 +- .../bsTable-3.3.7/bootstrapTable.js | 801 ------------------ .../bsTable-3.3.7/bootstrapTable.min.css | 14 - .../kePrint-0.0.1/kePrint.js | 8 - .../lightable-0.0.1/lightable.css | 272 ------ docs/articles/index.html | 8 +- docs/authors.html | 4 +- docs/index.html | 4 +- docs/news/index.html | 4 +- docs/pkgdown.yml | 6 +- docs/reference/DC_col_check.html | 4 +- docs/reference/QCkit-package.html | 4 +- docs/reference/check_dc_cols.html | 4 +- docs/reference/check_te.html | 4 +- docs/reference/convert_datetime_format.html | 4 +- docs/reference/convert_long_to_utm.html | 4 +- docs/reference/convert_utm_to_ll.html | 4 +- docs/reference/create_datastore_script.html | 8 +- docs/reference/fix_utc_offset.html | 4 +- docs/reference/fuzz_location.html | 4 +- docs/reference/get_custom_flags.html | 6 +- docs/reference/get_dc_flags.html | 6 +- docs/reference/get_df_flags.html | 6 +- docs/reference/get_dp_flags.html | 6 +- docs/reference/get_elevation.html | 4 +- docs/reference/get_park_polygon.html | 4 +- docs/reference/get_taxon_rank.html | 4 +- docs/reference/get_utm_zone.html | 4 +- docs/reference/index.html | 4 +- docs/reference/long2UTM.html | 4 +- docs/reference/order_cols.html | 4 +- docs/reference/replace_blanks.html | 6 +- docs/reference/te_check.html | 4 +- docs/reference/utm_to_ll.html | 4 +- docs/reference/validate_coord.html | 4 +- docs/sitemap.xml | 8 +- 39 files changed, 82 insertions(+), 1177 deletions(-) delete mode 100644 docs/articles/a02_Using_DRR_Template_files/bsTable-3.3.7/bootstrapTable.js delete mode 100644 docs/articles/a02_Using_DRR_Template_files/bsTable-3.3.7/bootstrapTable.min.css delete mode 100644 docs/articles/a02_Using_DRR_Template_files/kePrint-0.0.1/kePrint.js delete mode 100644 docs/articles/a02_Using_DRR_Template_files/lightable-0.0.1/lightable.css diff --git a/docs/404.html b/docs/404.html index 1524df3..4de547b 100644 --- a/docs/404.html +++ b/docs/404.html @@ -52,10 +52,10 @@ diff --git a/docs/LICENSE-text.html b/docs/LICENSE-text.html index b053670..0852fdf 100644 --- a/docs/LICENSE-text.html +++ b/docs/LICENSE-text.html @@ -35,10 +35,10 @@
    1. diff --git a/docs/LICENSE.html b/docs/LICENSE.html index 79ca434..470e334 100644 --- a/docs/LICENSE.html +++ b/docs/LICENSE.html @@ -35,10 +35,10 @@
    2. diff --git a/docs/articles/QCkit.html b/docs/articles/QCkit.html index e3cd71b..dd7b701 100644 --- a/docs/articles/QCkit.html +++ b/docs/articles/QCkit.html @@ -53,10 +53,10 @@
    3. diff --git a/docs/articles/a02_Using_DRR_Template_files/bsTable-3.3.7/bootstrapTable.js b/docs/articles/a02_Using_DRR_Template_files/bsTable-3.3.7/bootstrapTable.js deleted file mode 100644 index 0c83d3b..0000000 --- a/docs/articles/a02_Using_DRR_Template_files/bsTable-3.3.7/bootstrapTable.js +++ /dev/null @@ -1,801 +0,0 @@ -/* ======================================================================== - * Bootstrap: tooltip.js v3.4.1 - * https://getbootstrap.com/docs/3.4/javascript/#tooltip - * Inspired by the original jQuery.tipsy by Jason Frame - * ======================================================================== - * Copyright 2011-2019 Twitter, Inc. - * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) - * ======================================================================== */ - -+function ($) { - 'use strict'; - - var DISALLOWED_ATTRIBUTES = ['sanitize', 'whiteList', 'sanitizeFn'] - - var uriAttrs = [ - 'background', - 'cite', - 'href', - 'itemtype', - 'longdesc', - 'poster', - 'src', - 'xlink:href' - ] - - var ARIA_ATTRIBUTE_PATTERN = /^aria-[\w-]*$/i - - var DefaultWhitelist = { - // Global attributes allowed on any supplied element below. - '*': ['class', 'dir', 'id', 'lang', 'role', ARIA_ATTRIBUTE_PATTERN], - a: ['target', 'href', 'title', 'rel'], - area: [], - b: [], - br: [], - col: [], - code: [], - div: [], - em: [], - hr: [], - h1: [], - h2: [], - h3: [], - h4: [], - h5: [], - h6: [], - i: [], - img: ['src', 'alt', 'title', 'width', 'height'], - li: [], - ol: [], - p: [], - pre: [], - s: [], - small: [], - span: [], - sub: [], - sup: [], - strong: [], - u: [], - ul: [] - } - - /** - * A pattern that recognizes a commonly useful subset of URLs that are safe. - * - * Shoutout to Angular 7 https://github.com/angular/angular/blob/7.2.4/packages/core/src/sanitization/url_sanitizer.ts - */ - var SAFE_URL_PATTERN = /^(?:(?:https?|mailto|ftp|tel|file):|[^&:/?#]*(?:[/?#]|$))/gi - - /** - * A pattern that matches safe data URLs. Only matches image, video and audio types. - * - * Shoutout to Angular 7 https://github.com/angular/angular/blob/7.2.4/packages/core/src/sanitization/url_sanitizer.ts - */ - var DATA_URL_PATTERN = /^data:(?:image\/(?:bmp|gif|jpeg|jpg|png|tiff|webp)|video\/(?:mpeg|mp4|ogg|webm)|audio\/(?:mp3|oga|ogg|opus));base64,[a-z0-9+/]+=*$/i - - function allowedAttribute(attr, allowedAttributeList) { - var attrName = attr.nodeName.toLowerCase() - - if ($.inArray(attrName, allowedAttributeList) !== -1) { - if ($.inArray(attrName, uriAttrs) !== -1) { - return Boolean(attr.nodeValue.match(SAFE_URL_PATTERN) || attr.nodeValue.match(DATA_URL_PATTERN)) - } - - return true - } - - var regExp = $(allowedAttributeList).filter(function (index, value) { - return value instanceof RegExp - }) - - // Check if a regular expression validates the attribute. - for (var i = 0, l = regExp.length; i < l; i++) { - if (attrName.match(regExp[i])) { - return true - } - } - - return false - } - - function sanitizeHtml(unsafeHtml, whiteList, sanitizeFn) { - if (unsafeHtml.length === 0) { - return unsafeHtml - } - - if (sanitizeFn && typeof sanitizeFn === 'function') { - return sanitizeFn(unsafeHtml) - } - - // IE 8 and below don't support createHTMLDocument - if (!document.implementation || !document.implementation.createHTMLDocument) { - return unsafeHtml - } - - var createdDocument = document.implementation.createHTMLDocument('sanitization') - createdDocument.body.innerHTML = unsafeHtml - - var whitelistKeys = $.map(whiteList, function (el, i) { return i }) - var elements = $(createdDocument.body).find('*') - - for (var i = 0, len = elements.length; i < len; i++) { - var el = elements[i] - var elName = el.nodeName.toLowerCase() - - if ($.inArray(elName, whitelistKeys) === -1) { - el.parentNode.removeChild(el) - - continue - } - - var attributeList = $.map(el.attributes, function (el) { return el }) - var whitelistedAttributes = [].concat(whiteList['*'] || [], whiteList[elName] || []) - - for (var j = 0, len2 = attributeList.length; j < len2; j++) { - if (!allowedAttribute(attributeList[j], whitelistedAttributes)) { - el.removeAttribute(attributeList[j].nodeName) - } - } - } - - return createdDocument.body.innerHTML - } - - // TOOLTIP PUBLIC CLASS DEFINITION - // =============================== - - var Tooltip = function (element, options) { - this.type = null - this.options = null - this.enabled = null - this.timeout = null - this.hoverState = null - this.$element = null - this.inState = null - - this.init('tooltip', element, options) - } - - Tooltip.VERSION = '3.4.1' - - Tooltip.TRANSITION_DURATION = 150 - - Tooltip.DEFAULTS = { - animation: true, - placement: 'top', - selector: false, - template: '', - trigger: 'hover focus', - title: '', - delay: 0, - html: false, - container: false, - viewport: { - selector: 'body', - padding: 0 - }, - sanitize : true, - sanitizeFn : null, - whiteList : DefaultWhitelist - } - - Tooltip.prototype.init = function (type, element, options) { - this.enabled = true - this.type = type - this.$element = $(element) - this.options = this.getOptions(options) - this.$viewport = this.options.viewport && $(document).find($.isFunction(this.options.viewport) ? this.options.viewport.call(this, this.$element) : (this.options.viewport.selector || this.options.viewport)) - this.inState = { click: false, hover: false, focus: false } - - if (this.$element[0] instanceof document.constructor && !this.options.selector) { - throw new Error('`selector` option must be specified when initializing ' + this.type + ' on the window.document object!') - } - - var triggers = this.options.trigger.split(' ') - - for (var i = triggers.length; i--;) { - var trigger = triggers[i] - - if (trigger == 'click') { - this.$element.on('click.' + this.type, this.options.selector, $.proxy(this.toggle, this)) - } else if (trigger != 'manual') { - var eventIn = trigger == 'hover' ? 'mouseenter' : 'focusin' - var eventOut = trigger == 'hover' ? 'mouseleave' : 'focusout' - - this.$element.on(eventIn + '.' + this.type, this.options.selector, $.proxy(this.enter, this)) - this.$element.on(eventOut + '.' + this.type, this.options.selector, $.proxy(this.leave, this)) - } - } - - this.options.selector ? - (this._options = $.extend({}, this.options, { trigger: 'manual', selector: '' })) : - this.fixTitle() - } - - Tooltip.prototype.getDefaults = function () { - return Tooltip.DEFAULTS - } - - Tooltip.prototype.getOptions = function (options) { - var dataAttributes = this.$element.data() - - for (var dataAttr in dataAttributes) { - if (dataAttributes.hasOwnProperty(dataAttr) && $.inArray(dataAttr, DISALLOWED_ATTRIBUTES) !== -1) { - delete dataAttributes[dataAttr] - } - } - - options = $.extend({}, this.getDefaults(), dataAttributes, options) - - if (options.delay && typeof options.delay == 'number') { - options.delay = { - show: options.delay, - hide: options.delay - } - } - - if (options.sanitize) { - options.template = sanitizeHtml(options.template, options.whiteList, options.sanitizeFn) - } - - return options - } - - Tooltip.prototype.getDelegateOptions = function () { - var options = {} - var defaults = this.getDefaults() - - this._options && $.each(this._options, function (key, value) { - if (defaults[key] != value) options[key] = value - }) - - return options - } - - Tooltip.prototype.enter = function (obj) { - var self = obj instanceof this.constructor ? - obj : $(obj.currentTarget).data('bs.' + this.type) - - if (!self) { - self = new this.constructor(obj.currentTarget, this.getDelegateOptions()) - $(obj.currentTarget).data('bs.' + this.type, self) - } - - if (obj instanceof $.Event) { - self.inState[obj.type == 'focusin' ? 'focus' : 'hover'] = true - } - - if (self.tip().hasClass('in') || self.hoverState == 'in') { - self.hoverState = 'in' - return - } - - clearTimeout(self.timeout) - - self.hoverState = 'in' - - if (!self.options.delay || !self.options.delay.show) return self.show() - - self.timeout = setTimeout(function () { - if (self.hoverState == 'in') self.show() - }, self.options.delay.show) - } - - Tooltip.prototype.isInStateTrue = function () { - for (var key in this.inState) { - if (this.inState[key]) return true - } - - return false - } - - Tooltip.prototype.leave = function (obj) { - var self = obj instanceof this.constructor ? - obj : $(obj.currentTarget).data('bs.' + this.type) - - if (!self) { - self = new this.constructor(obj.currentTarget, this.getDelegateOptions()) - $(obj.currentTarget).data('bs.' + this.type, self) - } - - if (obj instanceof $.Event) { - self.inState[obj.type == 'focusout' ? 'focus' : 'hover'] = false - } - - if (self.isInStateTrue()) return - - clearTimeout(self.timeout) - - self.hoverState = 'out' - - if (!self.options.delay || !self.options.delay.hide) return self.hide() - - self.timeout = setTimeout(function () { - if (self.hoverState == 'out') self.hide() - }, self.options.delay.hide) - } - - Tooltip.prototype.show = function () { - var e = $.Event('show.bs.' + this.type) - - if (this.hasContent() && this.enabled) { - this.$element.trigger(e) - - var inDom = $.contains(this.$element[0].ownerDocument.documentElement, this.$element[0]) - if (e.isDefaultPrevented() || !inDom) return - var that = this - - var $tip = this.tip() - - var tipId = this.getUID(this.type) - - this.setContent() - $tip.attr('id', tipId) - this.$element.attr('aria-describedby', tipId) - - if (this.options.animation) $tip.addClass('fade') - - var placement = typeof this.options.placement == 'function' ? - this.options.placement.call(this, $tip[0], this.$element[0]) : - this.options.placement - - var autoToken = /\s?auto?\s?/i - var autoPlace = autoToken.test(placement) - if (autoPlace) placement = placement.replace(autoToken, '') || 'top' - - $tip - .detach() - .css({ top: 0, left: 0, display: 'block' }) - .addClass(placement) - .data('bs.' + this.type, this) - - this.options.container ? $tip.appendTo($(document).find(this.options.container)) : $tip.insertAfter(this.$element) - this.$element.trigger('inserted.bs.' + this.type) - - var pos = this.getPosition() - var actualWidth = $tip[0].offsetWidth - var actualHeight = $tip[0].offsetHeight - - if (autoPlace) { - var orgPlacement = placement - var viewportDim = this.getPosition(this.$viewport) - - placement = placement == 'bottom' && pos.bottom + actualHeight > viewportDim.bottom ? 'top' : - placement == 'top' && pos.top - actualHeight < viewportDim.top ? 'bottom' : - placement == 'right' && pos.right + actualWidth > viewportDim.width ? 'left' : - placement == 'left' && pos.left - actualWidth < viewportDim.left ? 'right' : - placement - - $tip - .removeClass(orgPlacement) - .addClass(placement) - } - - var calculatedOffset = this.getCalculatedOffset(placement, pos, actualWidth, actualHeight) - - this.applyPlacement(calculatedOffset, placement) - - var complete = function () { - var prevHoverState = that.hoverState - that.$element.trigger('shown.bs.' + that.type) - that.hoverState = null - - if (prevHoverState == 'out') that.leave(that) - } - - $.support.transition && this.$tip.hasClass('fade') ? - $tip - .one('bsTransitionEnd', complete) - .emulateTransitionEnd(Tooltip.TRANSITION_DURATION) : - complete() - } - } - - Tooltip.prototype.applyPlacement = function (offset, placement) { - var $tip = this.tip() - var width = $tip[0].offsetWidth - var height = $tip[0].offsetHeight - - // manually read margins because getBoundingClientRect includes difference - var marginTop = parseInt($tip.css('margin-top'), 10) - var marginLeft = parseInt($tip.css('margin-left'), 10) - - // we must check for NaN for ie 8/9 - if (isNaN(marginTop)) marginTop = 0 - if (isNaN(marginLeft)) marginLeft = 0 - - offset.top += marginTop - offset.left += marginLeft - - // $.fn.offset doesn't round pixel values - // so we use setOffset directly with our own function B-0 - $.offset.setOffset($tip[0], $.extend({ - using: function (props) { - $tip.css({ - top: Math.round(props.top), - left: Math.round(props.left) - }) - } - }, offset), 0) - - $tip.addClass('in') - - // check to see if placing tip in new offset caused the tip to resize itself - var actualWidth = $tip[0].offsetWidth - var actualHeight = $tip[0].offsetHeight - - if (placement == 'top' && actualHeight != height) { - offset.top = offset.top + height - actualHeight - } - - var delta = this.getViewportAdjustedDelta(placement, offset, actualWidth, actualHeight) - - if (delta.left) offset.left += delta.left - else offset.top += delta.top - - var isVertical = /top|bottom/.test(placement) - var arrowDelta = isVertical ? delta.left * 2 - width + actualWidth : delta.top * 2 - height + actualHeight - var arrowOffsetPosition = isVertical ? 'offsetWidth' : 'offsetHeight' - - $tip.offset(offset) - this.replaceArrow(arrowDelta, $tip[0][arrowOffsetPosition], isVertical) - } - - Tooltip.prototype.replaceArrow = function (delta, dimension, isVertical) { - this.arrow() - .css(isVertical ? 'left' : 'top', 50 * (1 - delta / dimension) + '%') - .css(isVertical ? 'top' : 'left', '') - } - - Tooltip.prototype.setContent = function () { - var $tip = this.tip() - var title = this.getTitle() - - if (this.options.html) { - if (this.options.sanitize) { - title = sanitizeHtml(title, this.options.whiteList, this.options.sanitizeFn) - } - - $tip.find('.tooltip-inner').html(title) - } else { - $tip.find('.tooltip-inner').text(title) - } - - $tip.removeClass('fade in top bottom left right') - } - - Tooltip.prototype.hide = function (callback) { - var that = this - var $tip = $(this.$tip) - var e = $.Event('hide.bs.' + this.type) - - function complete() { - if (that.hoverState != 'in') $tip.detach() - if (that.$element) { // TODO: Check whether guarding this code with this `if` is really necessary. - that.$element - .removeAttr('aria-describedby') - .trigger('hidden.bs.' + that.type) - } - callback && callback() - } - - this.$element.trigger(e) - - if (e.isDefaultPrevented()) return - - $tip.removeClass('in') - - $.support.transition && $tip.hasClass('fade') ? - $tip - .one('bsTransitionEnd', complete) - .emulateTransitionEnd(Tooltip.TRANSITION_DURATION) : - complete() - - this.hoverState = null - - return this - } - - Tooltip.prototype.fixTitle = function () { - var $e = this.$element - if ($e.attr('title') || typeof $e.attr('data-original-title') != 'string') { - $e.attr('data-original-title', $e.attr('title') || '').attr('title', '') - } - } - - Tooltip.prototype.hasContent = function () { - return this.getTitle() - } - - Tooltip.prototype.getPosition = function ($element) { - $element = $element || this.$element - - var el = $element[0] - var isBody = el.tagName == 'BODY' - - var elRect = el.getBoundingClientRect() - if (elRect.width == null) { - // width and height are missing in IE8, so compute them manually; see https://github.com/twbs/bootstrap/issues/14093 - elRect = $.extend({}, elRect, { width: elRect.right - elRect.left, height: elRect.bottom - elRect.top }) - } - var isSvg = window.SVGElement && el instanceof window.SVGElement - // Avoid using $.offset() on SVGs since it gives incorrect results in jQuery 3. - // See https://github.com/twbs/bootstrap/issues/20280 - var elOffset = isBody ? { top: 0, left: 0 } : (isSvg ? null : $element.offset()) - var scroll = { scroll: isBody ? document.documentElement.scrollTop || document.body.scrollTop : $element.scrollTop() } - var outerDims = isBody ? { width: $(window).width(), height: $(window).height() } : null - - return $.extend({}, elRect, scroll, outerDims, elOffset) - } - - Tooltip.prototype.getCalculatedOffset = function (placement, pos, actualWidth, actualHeight) { - return placement == 'bottom' ? { top: pos.top + pos.height, left: pos.left + pos.width / 2 - actualWidth / 2 } : - placement == 'top' ? { top: pos.top - actualHeight, left: pos.left + pos.width / 2 - actualWidth / 2 } : - placement == 'left' ? { top: pos.top + pos.height / 2 - actualHeight / 2, left: pos.left - actualWidth } : - /* placement == 'right' */ { top: pos.top + pos.height / 2 - actualHeight / 2, left: pos.left + pos.width } - - } - - Tooltip.prototype.getViewportAdjustedDelta = function (placement, pos, actualWidth, actualHeight) { - var delta = { top: 0, left: 0 } - if (!this.$viewport) return delta - - var viewportPadding = this.options.viewport && this.options.viewport.padding || 0 - var viewportDimensions = this.getPosition(this.$viewport) - - if (/right|left/.test(placement)) { - var topEdgeOffset = pos.top - viewportPadding - viewportDimensions.scroll - var bottomEdgeOffset = pos.top + viewportPadding - viewportDimensions.scroll + actualHeight - if (topEdgeOffset < viewportDimensions.top) { // top overflow - delta.top = viewportDimensions.top - topEdgeOffset - } else if (bottomEdgeOffset > viewportDimensions.top + viewportDimensions.height) { // bottom overflow - delta.top = viewportDimensions.top + viewportDimensions.height - bottomEdgeOffset - } - } else { - var leftEdgeOffset = pos.left - viewportPadding - var rightEdgeOffset = pos.left + viewportPadding + actualWidth - if (leftEdgeOffset < viewportDimensions.left) { // left overflow - delta.left = viewportDimensions.left - leftEdgeOffset - } else if (rightEdgeOffset > viewportDimensions.right) { // right overflow - delta.left = viewportDimensions.left + viewportDimensions.width - rightEdgeOffset - } - } - - return delta - } - - Tooltip.prototype.getTitle = function () { - var title - var $e = this.$element - var o = this.options - - title = $e.attr('data-original-title') - || (typeof o.title == 'function' ? o.title.call($e[0]) : o.title) - - return title - } - - Tooltip.prototype.getUID = function (prefix) { - do prefix += ~~(Math.random() * 1000000) - while (document.getElementById(prefix)) - return prefix - } - - Tooltip.prototype.tip = function () { - if (!this.$tip) { - this.$tip = $(this.options.template) - if (this.$tip.length != 1) { - throw new Error(this.type + ' `template` option must consist of exactly 1 top-level element!') - } - } - return this.$tip - } - - Tooltip.prototype.arrow = function () { - return (this.$arrow = this.$arrow || this.tip().find('.tooltip-arrow')) - } - - Tooltip.prototype.enable = function () { - this.enabled = true - } - - Tooltip.prototype.disable = function () { - this.enabled = false - } - - Tooltip.prototype.toggleEnabled = function () { - this.enabled = !this.enabled - } - - Tooltip.prototype.toggle = function (e) { - var self = this - if (e) { - self = $(e.currentTarget).data('bs.' + this.type) - if (!self) { - self = new this.constructor(e.currentTarget, this.getDelegateOptions()) - $(e.currentTarget).data('bs.' + this.type, self) - } - } - - if (e) { - self.inState.click = !self.inState.click - if (self.isInStateTrue()) self.enter(self) - else self.leave(self) - } else { - self.tip().hasClass('in') ? self.leave(self) : self.enter(self) - } - } - - Tooltip.prototype.destroy = function () { - var that = this - clearTimeout(this.timeout) - this.hide(function () { - that.$element.off('.' + that.type).removeData('bs.' + that.type) - if (that.$tip) { - that.$tip.detach() - } - that.$tip = null - that.$arrow = null - that.$viewport = null - that.$element = null - }) - } - - Tooltip.prototype.sanitizeHtml = function (unsafeHtml) { - return sanitizeHtml(unsafeHtml, this.options.whiteList, this.options.sanitizeFn) - } - - // TOOLTIP PLUGIN DEFINITION - // ========================= - - function Plugin(option) { - return this.each(function () { - var $this = $(this) - var data = $this.data('bs.tooltip') - var options = typeof option == 'object' && option - - if (!data && /destroy|hide/.test(option)) return - if (!data) $this.data('bs.tooltip', (data = new Tooltip(this, options))) - if (typeof option == 'string') data[option]() - }) - } - - var old = $.fn.tooltip - - $.fn.tooltip = Plugin - $.fn.tooltip.Constructor = Tooltip - - - // TOOLTIP NO CONFLICT - // =================== - - $.fn.tooltip.noConflict = function () { - $.fn.tooltip = old - return this - } - -}(jQuery); - -/* ======================================================================== - * Bootstrap: popover.js v3.4.1 - * https://getbootstrap.com/docs/3.4/javascript/#popovers - * ======================================================================== - * Copyright 2011-2019 Twitter, Inc. - * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) - * ======================================================================== */ - - -+function ($) { - 'use strict'; - - // POPOVER PUBLIC CLASS DEFINITION - // =============================== - - var Popover = function (element, options) { - this.init('popover', element, options) - } - - if (!$.fn.tooltip) throw new Error('Popover requires tooltip.js') - - Popover.VERSION = '3.4.1' - - Popover.DEFAULTS = $.extend({}, $.fn.tooltip.Constructor.DEFAULTS, { - placement: 'right', - trigger: 'click', - content: '', - template: '' - }) - - - // NOTE: POPOVER EXTENDS tooltip.js - // ================================ - - Popover.prototype = $.extend({}, $.fn.tooltip.Constructor.prototype) - - Popover.prototype.constructor = Popover - - Popover.prototype.getDefaults = function () { - return Popover.DEFAULTS - } - - Popover.prototype.setContent = function () { - var $tip = this.tip() - var title = this.getTitle() - var content = this.getContent() - - if (this.options.html) { - var typeContent = typeof content - - if (this.options.sanitize) { - title = this.sanitizeHtml(title) - - if (typeContent === 'string') { - content = this.sanitizeHtml(content) - } - } - - $tip.find('.popover-title').html(title) - $tip.find('.popover-content').children().detach().end()[ - typeContent === 'string' ? 'html' : 'append' - ](content) - } else { - $tip.find('.popover-title').text(title) - $tip.find('.popover-content').children().detach().end().text(content) - } - - $tip.removeClass('fade top bottom left right in') - - // IE8 doesn't accept hiding via the `:empty` pseudo selector, we have to do - // this manually by checking the contents. - if (!$tip.find('.popover-title').html()) $tip.find('.popover-title').hide() - } - - Popover.prototype.hasContent = function () { - return this.getTitle() || this.getContent() - } - - Popover.prototype.getContent = function () { - var $e = this.$element - var o = this.options - - return $e.attr('data-content') - || (typeof o.content == 'function' ? - o.content.call($e[0]) : - o.content) - } - - Popover.prototype.arrow = function () { - return (this.$arrow = this.$arrow || this.tip().find('.arrow')) - } - - - // POPOVER PLUGIN DEFINITION - // ========================= - - function Plugin(option) { - return this.each(function () { - var $this = $(this) - var data = $this.data('bs.popover') - var options = typeof option == 'object' && option - - if (!data && /destroy|hide/.test(option)) return - if (!data) $this.data('bs.popover', (data = new Popover(this, options))) - if (typeof option == 'string') data[option]() - }) - } - - var old = $.fn.popover - - $.fn.popover = Plugin - $.fn.popover.Constructor = Popover - - - // POPOVER NO CONFLICT - // =================== - - $.fn.popover.noConflict = function () { - $.fn.popover = old - return this - } - -}(jQuery); diff --git a/docs/articles/a02_Using_DRR_Template_files/bsTable-3.3.7/bootstrapTable.min.css b/docs/articles/a02_Using_DRR_Template_files/bsTable-3.3.7/bootstrapTable.min.css deleted file mode 100644 index 7d1e81f..0000000 --- a/docs/articles/a02_Using_DRR_Template_files/bsTable-3.3.7/bootstrapTable.min.css +++ /dev/null @@ -1,14 +0,0 @@ -/*! - * Bootstrap v3.3.7 (http://getbootstrap.com) - * Copyright 2011-2018 Twitter, Inc. - * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) - */ - -/*! - * Generated using the Bootstrap Customizer () - * Config saved to config.json and - *//*! - * Bootstrap v3.3.7 (http://getbootstrap.com) - * Copyright 2011-2016 Twitter, Inc. - * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) - *//*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */table{border-collapse:collapse;border-spacing:0}td,th{padding:0}*{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}*:before,*:after{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}table{background-color:transparent}caption{padding-top:8px;padding-bottom:8px;color:#777;text-align:left}th{text-align:left}.table{width:100%;max-width:100%;margin-bottom:20px}.table>thead>tr>th,.table>tbody>tr>th,.table>tfoot>tr>th,.table>thead>tr>td,.table>tbody>tr>td,.table>tfoot>tr>td{padding:8px;line-height:1.42857143;vertical-align:top;border-top:1px solid #ddd}.table>thead>tr>th{vertical-align:bottom;border-bottom:2px solid #ddd}.table>caption+thead>tr:first-child>th,.table>colgroup+thead>tr:first-child>th,.table>thead:first-child>tr:first-child>th,.table>caption+thead>tr:first-child>td,.table>colgroup+thead>tr:first-child>td,.table>thead:first-child>tr:first-child>td{border-top:0}.table>tbody+tbody{border-top:2px solid #ddd}.table .table{background-color:#fff}.table-condensed>thead>tr>th,.table-condensed>tbody>tr>th,.table-condensed>tfoot>tr>th,.table-condensed>thead>tr>td,.table-condensed>tbody>tr>td,.table-condensed>tfoot>tr>td{padding:5px}.table-bordered{border:1px solid #ddd}.table-bordered>thead>tr>th,.table-bordered>tbody>tr>th,.table-bordered>tfoot>tr>th,.table-bordered>thead>tr>td,.table-bordered>tbody>tr>td,.table-bordered>tfoot>tr>td{border:1px solid #ddd}.table-bordered>thead>tr>th,.table-bordered>thead>tr>td{border-bottom-width:2px}.table-striped>tbody>tr:nth-of-type(odd){background-color:#f9f9f9}.table-hover>tbody>tr:hover{background-color:#f5f5f5}table col[class*="col-"]{position:static;float:none;display:table-column}table td[class*="col-"],table th[class*="col-"]{position:static;float:none;display:table-cell}.table>thead>tr>td.active,.table>tbody>tr>td.active,.table>tfoot>tr>td.active,.table>thead>tr>th.active,.table>tbody>tr>th.active,.table>tfoot>tr>th.active,.table>thead>tr.active>td,.table>tbody>tr.active>td,.table>tfoot>tr.active>td,.table>thead>tr.active>th,.table>tbody>tr.active>th,.table>tfoot>tr.active>th{background-color:#f5f5f5}.table-hover>tbody>tr>td.active:hover,.table-hover>tbody>tr>th.active:hover,.table-hover>tbody>tr.active:hover>td,.table-hover>tbody>tr:hover>.active,.table-hover>tbody>tr.active:hover>th{background-color:#e8e8e8}.table>thead>tr>td.success,.table>tbody>tr>td.success,.table>tfoot>tr>td.success,.table>thead>tr>th.success,.table>tbody>tr>th.success,.table>tfoot>tr>th.success,.table>thead>tr.success>td,.table>tbody>tr.success>td,.table>tfoot>tr.success>td,.table>thead>tr.success>th,.table>tbody>tr.success>th,.table>tfoot>tr.success>th{background-color:#dff0d8}.table-hover>tbody>tr>td.success:hover,.table-hover>tbody>tr>th.success:hover,.table-hover>tbody>tr.success:hover>td,.table-hover>tbody>tr:hover>.success,.table-hover>tbody>tr.success:hover>th{background-color:#d0e9c6}.table>thead>tr>td.info,.table>tbody>tr>td.info,.table>tfoot>tr>td.info,.table>thead>tr>th.info,.table>tbody>tr>th.info,.table>tfoot>tr>th.info,.table>thead>tr.info>td,.table>tbody>tr.info>td,.table>tfoot>tr.info>td,.table>thead>tr.info>th,.table>tbody>tr.info>th,.table>tfoot>tr.info>th{background-color:#d9edf7}.table-hover>tbody>tr>td.info:hover,.table-hover>tbody>tr>th.info:hover,.table-hover>tbody>tr.info:hover>td,.table-hover>tbody>tr:hover>.info,.table-hover>tbody>tr.info:hover>th{background-color:#c4e3f3}.table>thead>tr>td.warning,.table>tbody>tr>td.warning,.table>tfoot>tr>td.warning,.table>thead>tr>th.warning,.table>tbody>tr>th.warning,.table>tfoot>tr>th.warning,.table>thead>tr.warning>td,.table>tbody>tr.warning>td,.table>tfoot>tr.warning>td,.table>thead>tr.warning>th,.table>tbody>tr.warning>th,.table>tfoot>tr.warning>th{background-color:#fcf8e3}.table-hover>tbody>tr>td.warning:hover,.table-hover>tbody>tr>th.warning:hover,.table-hover>tbody>tr.warning:hover>td,.table-hover>tbody>tr:hover>.warning,.table-hover>tbody>tr.warning:hover>th{background-color:#faf2cc}.table>thead>tr>td.danger,.table>tbody>tr>td.danger,.table>tfoot>tr>td.danger,.table>thead>tr>th.danger,.table>tbody>tr>th.danger,.table>tfoot>tr>th.danger,.table>thead>tr.danger>td,.table>tbody>tr.danger>td,.table>tfoot>tr.danger>td,.table>thead>tr.danger>th,.table>tbody>tr.danger>th,.table>tfoot>tr.danger>th{background-color:#f2dede}.table-hover>tbody>tr>td.danger:hover,.table-hover>tbody>tr>th.danger:hover,.table-hover>tbody>tr.danger:hover>td,.table-hover>tbody>tr:hover>.danger,.table-hover>tbody>tr.danger:hover>th{background-color:#ebcccc}.table-responsive{overflow-x:auto;min-height:0.01%}@media screen and (max-width:767px){.table-responsive{width:100%;margin-bottom:15px;overflow-y:hidden;-ms-overflow-style:-ms-autohiding-scrollbar;border:1px solid #ddd}.table-responsive>.table{margin-bottom:0}.table-responsive>.table>thead>tr>th,.table-responsive>.table>tbody>tr>th,.table-responsive>.table>tfoot>tr>th,.table-responsive>.table>thead>tr>td,.table-responsive>.table>tbody>tr>td,.table-responsive>.table>tfoot>tr>td{white-space:nowrap}.table-responsive>.table-bordered{border:0}.table-responsive>.table-bordered>thead>tr>th:first-child,.table-responsive>.table-bordered>tbody>tr>th:first-child,.table-responsive>.table-bordered>tfoot>tr>th:first-child,.table-responsive>.table-bordered>thead>tr>td:first-child,.table-responsive>.table-bordered>tbody>tr>td:first-child,.table-responsive>.table-bordered>tfoot>tr>td:first-child{border-left:0}.table-responsive>.table-bordered>thead>tr>th:last-child,.table-responsive>.table-bordered>tbody>tr>th:last-child,.table-responsive>.table-bordered>tfoot>tr>th:last-child,.table-responsive>.table-bordered>thead>tr>td:last-child,.table-responsive>.table-bordered>tbody>tr>td:last-child,.table-responsive>.table-bordered>tfoot>tr>td:last-child{border-right:0}.table-responsive>.table-bordered>tbody>tr:last-child>th,.table-responsive>.table-bordered>tfoot>tr:last-child>th,.table-responsive>.table-bordered>tbody>tr:last-child>td,.table-responsive>.table-bordered>tfoot>tr:last-child>td{border-bottom:0}}.tooltip{position:absolute;z-index:1070;display:block;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-style:normal;font-weight:normal;letter-spacing:normal;line-break:auto;line-height:1.42857143;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;white-space:normal;word-break:normal;word-spacing:normal;word-wrap:normal;font-size:12px;opacity:0;filter:alpha(opacity=0)}.tooltip.in{opacity:.9;filter:alpha(opacity=90)}.tooltip.top{margin-top:-3px;padding:5px 0}.tooltip.right{margin-left:3px;padding:0 5px}.tooltip.bottom{margin-top:3px;padding:5px 0}.tooltip.left{margin-left:-3px;padding:0 5px}.tooltip-inner{max-width:200px;padding:3px 8px;color:#fff;text-align:center;background-color:#000;border-radius:4px}.tooltip-arrow{position:absolute;width:0;height:0;border-color:transparent;border-style:solid}.tooltip.top .tooltip-arrow{bottom:0;left:50%;margin-left:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.top-left .tooltip-arrow{bottom:0;right:5px;margin-bottom:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.top-right .tooltip-arrow{bottom:0;left:5px;margin-bottom:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.right .tooltip-arrow{top:50%;left:0;margin-top:-5px;border-width:5px 5px 5px 0;border-right-color:#000}.tooltip.left .tooltip-arrow{top:50%;right:0;margin-top:-5px;border-width:5px 0 5px 5px;border-left-color:#000}.tooltip.bottom .tooltip-arrow{top:0;left:50%;margin-left:-5px;border-width:0 5px 5px;border-bottom-color:#000}.tooltip.bottom-left .tooltip-arrow{top:0;right:5px;margin-top:-5px;border-width:0 5px 5px;border-bottom-color:#000}.tooltip.bottom-right .tooltip-arrow{top:0;left:5px;margin-top:-5px;border-width:0 5px 5px;border-bottom-color:#000}.popover{position:absolute;top:0;left:0;z-index:1060;display:none;max-width:276px;padding:1px;font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-style:normal;font-weight:normal;letter-spacing:normal;line-break:auto;line-height:1.42857143;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;white-space:normal;word-break:normal;word-spacing:normal;word-wrap:normal;font-size:14px;background-color:#fff;-webkit-background-clip:padding-box;background-clip:padding-box;border:1px solid #ccc;border:1px solid rgba(0,0,0,0.2);border-radius:6px;-webkit-box-shadow:0 5px 10px rgba(0,0,0,0.2);box-shadow:0 5px 10px rgba(0,0,0,0.2)}.popover.top{margin-top:-10px}.popover.right{margin-left:10px}.popover.bottom{margin-top:10px}.popover.left{margin-left:-10px}.popover-title{margin:0;padding:8px 14px;font-size:14px;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;border-radius:5px 5px 0 0}.popover-content{padding:9px 14px}.popover>.arrow,.popover>.arrow:after{position:absolute;display:block;width:0;height:0;border-color:transparent;border-style:solid}.popover>.arrow{border-width:11px}.popover>.arrow:after{border-width:10px;content:""}.popover.top>.arrow{left:50%;margin-left:-11px;border-bottom-width:0;border-top-color:#999;border-top-color:rgba(0,0,0,0.25);bottom:-11px}.popover.top>.arrow:after{content:" ";bottom:1px;margin-left:-10px;border-bottom-width:0;border-top-color:#fff}.popover.right>.arrow{top:50%;left:-11px;margin-top:-11px;border-left-width:0;border-right-color:#999;border-right-color:rgba(0,0,0,0.25)}.popover.right>.arrow:after{content:" ";left:1px;bottom:-10px;border-left-width:0;border-right-color:#fff}.popover.bottom>.arrow{left:50%;margin-left:-11px;border-top-width:0;border-bottom-color:#999;border-bottom-color:rgba(0,0,0,0.25);top:-11px}.popover.bottom>.arrow:after{content:" ";top:1px;margin-left:-10px;border-top-width:0;border-bottom-color:#fff}.popover.left>.arrow{top:50%;right:-11px;margin-top:-11px;border-right-width:0;border-left-color:#999;border-left-color:rgba(0,0,0,0.25)}.popover.left>.arrow:after{content:" ";right:1px;border-right-width:0;border-left-color:#fff;bottom:-10px}.clearfix:before,.clearfix:after{content:" ";display:table}.clearfix:after{clear:both}.center-block{display:block;margin-left:auto;margin-right:auto}.pull-right{float:right !important}.pull-left{float:left !important}.hide{display:none !important}.show{display:block !important}.invisible{visibility:hidden}.text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.hidden{display:none !important}.affix{position:fixed} diff --git a/docs/articles/a02_Using_DRR_Template_files/kePrint-0.0.1/kePrint.js b/docs/articles/a02_Using_DRR_Template_files/kePrint-0.0.1/kePrint.js deleted file mode 100644 index e6fbbfc..0000000 --- a/docs/articles/a02_Using_DRR_Template_files/kePrint-0.0.1/kePrint.js +++ /dev/null @@ -1,8 +0,0 @@ -$(document).ready(function(){ - if (typeof $('[data-toggle="tooltip"]').tooltip === 'function') { - $('[data-toggle="tooltip"]').tooltip(); - } - if ($('[data-toggle="popover"]').popover === 'function') { - $('[data-toggle="popover"]').popover(); - } -}); diff --git a/docs/articles/a02_Using_DRR_Template_files/lightable-0.0.1/lightable.css b/docs/articles/a02_Using_DRR_Template_files/lightable-0.0.1/lightable.css deleted file mode 100644 index 3be3be9..0000000 --- a/docs/articles/a02_Using_DRR_Template_files/lightable-0.0.1/lightable.css +++ /dev/null @@ -1,272 +0,0 @@ -/*! - * lightable v0.0.1 - * Copyright 2020 Hao Zhu - * Licensed under MIT (https://github.com/haozhu233/kableExtra/blob/master/LICENSE) - */ - -.lightable-minimal { - border-collapse: separate; - border-spacing: 16px 1px; - width: 100%; - margin-bottom: 10px; -} - -.lightable-minimal td { - margin-left: 5px; - margin-right: 5px; -} - -.lightable-minimal th { - margin-left: 5px; - margin-right: 5px; -} - -.lightable-minimal thead tr:last-child th { - border-bottom: 2px solid #00000050; - empty-cells: hide; - -} - -.lightable-minimal tbody tr:first-child td { - padding-top: 0.5em; -} - -.lightable-minimal.lightable-hover tbody tr:hover { - background-color: #f5f5f5; -} - -.lightable-minimal.lightable-striped tbody tr:nth-child(even) { - background-color: #f5f5f5; -} - -.lightable-classic { - border-top: 0.16em solid #111111; - border-bottom: 0.16em solid #111111; - width: 100%; - margin-bottom: 10px; - margin: 10px 5px; -} - -.lightable-classic tfoot tr td { - border: 0; -} - -.lightable-classic tfoot tr:first-child td { - border-top: 0.14em solid #111111; -} - -.lightable-classic caption { - color: #222222; -} - -.lightable-classic td { - padding-left: 5px; - padding-right: 5px; - color: #222222; -} - -.lightable-classic th { - padding-left: 5px; - padding-right: 5px; - font-weight: normal; - color: #222222; -} - -.lightable-classic thead tr:last-child th { - border-bottom: 0.10em solid #111111; -} - -.lightable-classic.lightable-hover tbody tr:hover { - background-color: #F9EEC1; -} - -.lightable-classic.lightable-striped tbody tr:nth-child(even) { - background-color: #f5f5f5; -} - -.lightable-classic-2 { - border-top: 3px double #111111; - border-bottom: 3px double #111111; - width: 100%; - margin-bottom: 10px; -} - -.lightable-classic-2 tfoot tr td { - border: 0; -} - -.lightable-classic-2 tfoot tr:first-child td { - border-top: 3px double #111111; -} - -.lightable-classic-2 caption { - color: #222222; -} - -.lightable-classic-2 td { - padding-left: 5px; - padding-right: 5px; - color: #222222; -} - -.lightable-classic-2 th { - padding-left: 5px; - padding-right: 5px; - font-weight: normal; - color: #222222; -} - -.lightable-classic-2 tbody tr:last-child td { - border-bottom: 3px double #111111; -} - -.lightable-classic-2 thead tr:last-child th { - border-bottom: 1px solid #111111; -} - -.lightable-classic-2.lightable-hover tbody tr:hover { - background-color: #F9EEC1; -} - -.lightable-classic-2.lightable-striped tbody tr:nth-child(even) { - background-color: #f5f5f5; -} - -.lightable-material { - min-width: 100%; - white-space: nowrap; - table-layout: fixed; - font-family: Roboto, sans-serif; - border: 1px solid #EEE; - border-collapse: collapse; - margin-bottom: 10px; -} - -.lightable-material tfoot tr td { - border: 0; -} - -.lightable-material tfoot tr:first-child td { - border-top: 1px solid #EEE; -} - -.lightable-material th { - height: 56px; - padding-left: 16px; - padding-right: 16px; -} - -.lightable-material td { - height: 52px; - padding-left: 16px; - padding-right: 16px; - border-top: 1px solid #eeeeee; -} - -.lightable-material.lightable-hover tbody tr:hover { - background-color: #f5f5f5; -} - -.lightable-material.lightable-striped tbody tr:nth-child(even) { - background-color: #f5f5f5; -} - -.lightable-material.lightable-striped tbody td { - border: 0; -} - -.lightable-material.lightable-striped thead tr:last-child th { - border-bottom: 1px solid #ddd; -} - -.lightable-material-dark { - min-width: 100%; - white-space: nowrap; - table-layout: fixed; - font-family: Roboto, sans-serif; - border: 1px solid #FFFFFF12; - border-collapse: collapse; - margin-bottom: 10px; - background-color: #363640; -} - -.lightable-material-dark tfoot tr td { - border: 0; -} - -.lightable-material-dark tfoot tr:first-child td { - border-top: 1px solid #FFFFFF12; -} - -.lightable-material-dark th { - height: 56px; - padding-left: 16px; - padding-right: 16px; - color: #FFFFFF60; -} - -.lightable-material-dark td { - height: 52px; - padding-left: 16px; - padding-right: 16px; - color: #FFFFFF; - border-top: 1px solid #FFFFFF12; -} - -.lightable-material-dark.lightable-hover tbody tr:hover { - background-color: #FFFFFF12; -} - -.lightable-material-dark.lightable-striped tbody tr:nth-child(even) { - background-color: #FFFFFF12; -} - -.lightable-material-dark.lightable-striped tbody td { - border: 0; -} - -.lightable-material-dark.lightable-striped thead tr:last-child th { - border-bottom: 1px solid #FFFFFF12; -} - -.lightable-paper { - width: 100%; - margin-bottom: 10px; - color: #444; -} - -.lightable-paper tfoot tr td { - border: 0; -} - -.lightable-paper tfoot tr:first-child td { - border-top: 1px solid #00000020; -} - -.lightable-paper thead tr:last-child th { - color: #666; - vertical-align: bottom; - border-bottom: 1px solid #00000020; - line-height: 1.15em; - padding: 10px 5px; -} - -.lightable-paper td { - vertical-align: middle; - border-bottom: 1px solid #00000010; - line-height: 1.15em; - padding: 7px 5px; -} - -.lightable-paper.lightable-hover tbody tr:hover { - background-color: #F9EEC1; -} - -.lightable-paper.lightable-striped tbody tr:nth-child(even) { - background-color: #00000008; -} - -.lightable-paper.lightable-striped tbody td { - border: 0; -} - diff --git a/docs/articles/index.html b/docs/articles/index.html index ff73649..fbe9abd 100644 --- a/docs/articles/index.html +++ b/docs/articles/index.html @@ -35,10 +35,10 @@
    4. @@ -66,9 +66,9 @@

      Articles

      All vignettes

      -
      Getting Started with NPS DRRs
      +
      Starting a DRR
      -
      Using the DRR Template
      +
      Using the DRR Template
      QCkit
      diff --git a/docs/authors.html b/docs/authors.html index e1aa5ec..0b082d9 100644 --- a/docs/authors.html +++ b/docs/authors.html @@ -35,10 +35,10 @@
    5. diff --git a/docs/index.html b/docs/index.html index 8c5642e..81df1d3 100644 --- a/docs/index.html +++ b/docs/index.html @@ -53,10 +53,10 @@
    6. diff --git a/docs/news/index.html b/docs/news/index.html index 00a81ba..f95a0e0 100644 --- a/docs/news/index.html +++ b/docs/news/index.html @@ -35,10 +35,10 @@
    7. diff --git a/docs/pkgdown.yml b/docs/pkgdown.yml index fab3e6f..aa98a89 100644 --- a/docs/pkgdown.yml +++ b/docs/pkgdown.yml @@ -2,8 +2,8 @@ pandoc: 3.1.1 pkgdown: 2.0.7 pkgdown_sha: ~ articles: - a01_DRR_Background: a01_DRR_Background.html - a02_Using_DRR_Template: a02_Using_DRR_Template.html + Starting-a-DRR: Starting-a-DRR.html + Using-the-DRR-Template: Using-the-DRR-Template.html QCkit: QCkit.html -last_built: 2024-02-08T03:50Z +last_built: 2024-02-09T15:07Z diff --git a/docs/reference/DC_col_check.html b/docs/reference/DC_col_check.html index 5bb027d..7b50d51 100644 --- a/docs/reference/DC_col_check.html +++ b/docs/reference/DC_col_check.html @@ -37,10 +37,10 @@
    8. diff --git a/docs/reference/QCkit-package.html b/docs/reference/QCkit-package.html index 73c5483..1947b61 100644 --- a/docs/reference/QCkit-package.html +++ b/docs/reference/QCkit-package.html @@ -35,10 +35,10 @@
    9. diff --git a/docs/reference/check_dc_cols.html b/docs/reference/check_dc_cols.html index c9d882b..335ce81 100644 --- a/docs/reference/check_dc_cols.html +++ b/docs/reference/check_dc_cols.html @@ -35,10 +35,10 @@
    10. diff --git a/docs/reference/check_te.html b/docs/reference/check_te.html index 04dbc29..f8544bc 100644 --- a/docs/reference/check_te.html +++ b/docs/reference/check_te.html @@ -35,10 +35,10 @@
    11. diff --git a/docs/reference/convert_datetime_format.html b/docs/reference/convert_datetime_format.html index 2cbe245..ebded98 100644 --- a/docs/reference/convert_datetime_format.html +++ b/docs/reference/convert_datetime_format.html @@ -35,10 +35,10 @@
    12. diff --git a/docs/reference/convert_long_to_utm.html b/docs/reference/convert_long_to_utm.html index 41f8d07..df4f7ca 100644 --- a/docs/reference/convert_long_to_utm.html +++ b/docs/reference/convert_long_to_utm.html @@ -39,10 +39,10 @@
    13. diff --git a/docs/reference/convert_utm_to_ll.html b/docs/reference/convert_utm_to_ll.html index 5b3c05e..0b06cc1 100644 --- a/docs/reference/convert_utm_to_ll.html +++ b/docs/reference/convert_utm_to_ll.html @@ -39,10 +39,10 @@
    14. diff --git a/docs/reference/create_datastore_script.html b/docs/reference/create_datastore_script.html index 3adb7d5..1f1b46c 100644 --- a/docs/reference/create_datastore_script.html +++ b/docs/reference/create_datastore_script.html @@ -40,10 +40,10 @@
    15. @@ -82,7 +82,7 @@

      Turn a GitHub release into a DataStore Script Reference

      create_datastore_script(
         owner,
         repo,
      -  path = here::here(),
      +  path = here::here(),
         force = FALSE,
         dev = FALSE
       )
      @@ -99,7 +99,7 @@

      Arguments

      path
      -

      String. The location where the release .zip from GitHub should be downloaded to (and uploaded from). Defaults to the working directory of the R Project (i.e. here::here()).

      +

      String. The location where the release .zip from GitHub should be downloaded to (and uploaded from). Defaults to the working directory of the R Project (i.e. here::here()).

      force
      diff --git a/docs/reference/fix_utc_offset.html b/docs/reference/fix_utc_offset.html index 556a268..75f438c 100644 --- a/docs/reference/fix_utc_offset.html +++ b/docs/reference/fix_utc_offset.html @@ -35,10 +35,10 @@
    16. diff --git a/docs/reference/fuzz_location.html b/docs/reference/fuzz_location.html index 1049dcc..b68bbef 100644 --- a/docs/reference/fuzz_location.html +++ b/docs/reference/fuzz_location.html @@ -41,10 +41,10 @@
    17. diff --git a/docs/reference/get_custom_flags.html b/docs/reference/get_custom_flags.html index 5c997c3..f413d62 100644 --- a/docs/reference/get_custom_flags.html +++ b/docs/reference/get_custom_flags.html @@ -50,10 +50,10 @@
    18. @@ -100,7 +100,7 @@

      Creates dataframe(s) summarizing data quality

      get_custom_flags(
      -  directory = here::here(),
      +  directory = here::here(),
         cols = (""),
         output = c("all", "files", "columns")
       )
      diff --git a/docs/reference/get_dc_flags.html b/docs/reference/get_dc_flags.html index e581f48..a94ce73 100644 --- a/docs/reference/get_dc_flags.html +++ b/docs/reference/get_dc_flags.html @@ -43,10 +43,10 @@
    19. @@ -84,7 +84,7 @@

      Create Table of Data Quality Flags in Flagging Columns within individual
      -
      get_dc_flags(directory = here::here())
      +
      get_dc_flags(directory = here::here())
      diff --git a/docs/reference/get_df_flags.html b/docs/reference/get_df_flags.html index 2949a33..c1109ac 100644 --- a/docs/reference/get_df_flags.html +++ b/docs/reference/get_df_flags.html @@ -41,10 +41,10 @@

    20. @@ -81,7 +81,7 @@

      Create Table of Data Quality Flags Found in Data Files within a Data Package
      -
      get_df_flags(directory = here::here())
      +
      get_df_flags(directory = here::here())
      diff --git a/docs/reference/get_dp_flags.html b/docs/reference/get_dp_flags.html index f723d78..0076847 100644 --- a/docs/reference/get_dp_flags.html +++ b/docs/reference/get_dp_flags.html @@ -41,10 +41,10 @@

    21. @@ -81,7 +81,7 @@

      Create Table of Data Quality Flags Found in a Data Package

      -
      get_dp_flags(directory = here::here())
      +
      get_dp_flags(directory = here::here())
      diff --git a/docs/reference/get_elevation.html b/docs/reference/get_elevation.html index 71b92bb..9fd4e57 100644 --- a/docs/reference/get_elevation.html +++ b/docs/reference/get_elevation.html @@ -35,10 +35,10 @@
    22. diff --git a/docs/reference/get_park_polygon.html b/docs/reference/get_park_polygon.html index fca6997..973f0a9 100644 --- a/docs/reference/get_park_polygon.html +++ b/docs/reference/get_park_polygon.html @@ -37,10 +37,10 @@
    23. diff --git a/docs/reference/get_taxon_rank.html b/docs/reference/get_taxon_rank.html index f213880..98a9514 100644 --- a/docs/reference/get_taxon_rank.html +++ b/docs/reference/get_taxon_rank.html @@ -35,10 +35,10 @@
    24. diff --git a/docs/reference/get_utm_zone.html b/docs/reference/get_utm_zone.html index c601c3f..ac28d39 100644 --- a/docs/reference/get_utm_zone.html +++ b/docs/reference/get_utm_zone.html @@ -37,10 +37,10 @@
    25. diff --git a/docs/reference/index.html b/docs/reference/index.html index e15a572..870dc1c 100644 --- a/docs/reference/index.html +++ b/docs/reference/index.html @@ -35,10 +35,10 @@
    26. diff --git a/docs/reference/long2UTM.html b/docs/reference/long2UTM.html index 35cd714..b36e1df 100644 --- a/docs/reference/long2UTM.html +++ b/docs/reference/long2UTM.html @@ -40,10 +40,10 @@
    27. diff --git a/docs/reference/order_cols.html b/docs/reference/order_cols.html index 976a93c..1c07f64 100644 --- a/docs/reference/order_cols.html +++ b/docs/reference/order_cols.html @@ -35,10 +35,10 @@
    28. diff --git a/docs/reference/replace_blanks.html b/docs/reference/replace_blanks.html index ccf73fc..944a16a 100644 --- a/docs/reference/replace_blanks.html +++ b/docs/reference/replace_blanks.html @@ -35,10 +35,10 @@
    29. @@ -69,7 +69,7 @@

      Replaces all blank cells with NA

      -
      replace_blanks(directory = here::here())
      +
      replace_blanks(directory = here::here())
      diff --git a/docs/reference/te_check.html b/docs/reference/te_check.html index 2e6d938..1c0f1a3 100644 --- a/docs/reference/te_check.html +++ b/docs/reference/te_check.html @@ -37,10 +37,10 @@
    30. diff --git a/docs/reference/utm_to_ll.html b/docs/reference/utm_to_ll.html index 02300fb..c9bb9b6 100644 --- a/docs/reference/utm_to_ll.html +++ b/docs/reference/utm_to_ll.html @@ -37,10 +37,10 @@
    31. diff --git a/docs/reference/validate_coord.html b/docs/reference/validate_coord.html index 049f26a..b94cef5 100644 --- a/docs/reference/validate_coord.html +++ b/docs/reference/validate_coord.html @@ -37,10 +37,10 @@
    32. diff --git a/docs/sitemap.xml b/docs/sitemap.xml index 932501a..f491445 100644 --- a/docs/sitemap.xml +++ b/docs/sitemap.xml @@ -4,16 +4,16 @@ /404.html - /articles/a01_DRR_Background.html + /articles/index.html - /articles/a02_Using_DRR_Template.html + /articles/QCkit.html - /articles/index.html + /articles/Starting-a-DRR.html - /articles/QCkit.html + /articles/Using-the-DRR-Template.html /authors.html From 6e874244f78e58a00819c6cb15cc9d4eb901946f Mon Sep 17 00:00:00 2001 From: Rob Baker Date: Fri, 9 Feb 2024 09:15:26 -0700 Subject: [PATCH 20/33] add vignettes/articles --- .Rbuildignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.Rbuildignore b/.Rbuildignore index 5f3d199..086ab97 100644 --- a/.Rbuildignore +++ b/.Rbuildignore @@ -3,3 +3,4 @@ ^LICENSE\.md$ ^README\.Rmd$ ^\.github$ +^vignettes/articles$ From 961aca1dea6cbad30faa2776e09b927a3a9ea64a Mon Sep 17 00:00:00 2001 From: Rob Baker Date: Fri, 9 Feb 2024 09:19:41 -0700 Subject: [PATCH 21/33] autoupdate via devtools::document and pkgdown --- docs/articles/Starting-a-DRR.html | 46 +++++++++++++------------------ docs/pkgdown.yml | 2 +- 2 files changed, 20 insertions(+), 28 deletions(-) diff --git a/docs/articles/Starting-a-DRR.html b/docs/articles/Starting-a-DRR.html index 8ee7799..b2b24a9 100644 --- a/docs/articles/Starting-a-DRR.html +++ b/docs/articles/Starting-a-DRR.html @@ -161,16 +161,21 @@

      How to Start a DRR

      +

      +
        +
      1. After selecting “OK” two things will happne: First, you the DRR +Template file will open up. It is called “Untitled.Rmd” by default. +Second, a new folder will be created called “Untitled” (Unless you opted +to change the default “Name:” in the “New R Markdown” pop up, then these +will have whatever name you gave them).

      2. +
      3. Edit the DRR Template according to your specifications and the +instructions in the “Using the DRR +Template” guide.

      4. +
      5. When you are done, “knit” the .Rmd file to Word and submit the +resulting .docx file for publication.

      6. +
      +

      extra text to be moved elsewhere?

        -
      1. -
      2. How to Use this Template -line-by-line instructions and descriptions for how to use the DRR -Template.

      3. -
      4. The -DRR_Template the file you make changes to to generate a DRR. Note: -this is not a stand-alone file. To create a DRR please download the zipped -template with all associated files and folders.

      5. Bibtex reference file is used if you want to automate your citations. Add each citation in bibtex format to this file and save it. Add in-text @@ -188,24 +193,11 @@

        How to Start a DRR

        Examples

        -

        More will be provided as they are published. The following examples -are post-formatting and should be used as examples for content -generation only.

        -
          -
        1. DRR for -tabular (csv) datasets of hydrologic data used for calculating -hydrologic metrics as a part of the national Environmental Settings -monitoring protocol.

        2. -
        3. DRR for geospatial (file -geodatabase) data continuing custom areas of analysis used for -Environmental Settings monitoring protocol. Report created in Microsoft -Word and ported to the template.

        4. -
        - -
        -

        Tips, FAQs, and Errata -

        -

        (coming soon)

        +

        Knit your own example DRR: Assuming you left the +“Name:” as the default “untitled”, you should be able to knit the DRR +template in to an example .docx that could be submitted for publication. +If you opted to change the Name, you will need to update the the file +paths before kniting.

        diff --git a/docs/pkgdown.yml b/docs/pkgdown.yml index aa98a89..bb19a5f 100644 --- a/docs/pkgdown.yml +++ b/docs/pkgdown.yml @@ -5,5 +5,5 @@ articles: Starting-a-DRR: Starting-a-DRR.html Using-the-DRR-Template: Using-the-DRR-Template.html QCkit: QCkit.html -last_built: 2024-02-09T15:07Z +last_built: 2024-02-09T16:15Z From 7432c4e1e6eb836bd97826d8a5b5bb16fba850b5 Mon Sep 17 00:00:00 2001 From: Rob Baker Date: Fri, 9 Feb 2024 09:34:53 -0700 Subject: [PATCH 22/33] update directory names for portability --- .../BICY_Example/Example_BICY_Veg_metadata.xml | 0 .../BICY_Example/Mini_BICY_Veg_Geography.csv | 0 .../Mini_BICY_Veg_Intercept_Cleaned.csv | 0 .../BICY_Example/Mini_BICY_Veg_Transect_Cleaned.csv | 0 .../skeleton/BICY_Example/ProcessingWorkflow.png | Bin .../skeleton/national-park-service-DRR.csl | 0 .../{NPS DRR => NPS_DRR}/skeleton/references.bib | 0 .../{NPS DRR => NPS_DRR}/skeleton/skeleton.Rmd | 0 .../templates/{NPS DRR => NPS_DRR}/template.yaml | 2 +- 9 files changed, 1 insertion(+), 1 deletion(-) rename inst/rmarkdown/templates/{NPS DRR => NPS_DRR}/skeleton/BICY_Example/Example_BICY_Veg_metadata.xml (100%) rename inst/rmarkdown/templates/{NPS DRR => NPS_DRR}/skeleton/BICY_Example/Mini_BICY_Veg_Geography.csv (100%) rename inst/rmarkdown/templates/{NPS DRR => NPS_DRR}/skeleton/BICY_Example/Mini_BICY_Veg_Intercept_Cleaned.csv (100%) rename inst/rmarkdown/templates/{NPS DRR => NPS_DRR}/skeleton/BICY_Example/Mini_BICY_Veg_Transect_Cleaned.csv (100%) rename inst/rmarkdown/templates/{NPS DRR => NPS_DRR}/skeleton/BICY_Example/ProcessingWorkflow.png (100%) rename inst/rmarkdown/templates/{NPS DRR => NPS_DRR}/skeleton/national-park-service-DRR.csl (100%) rename inst/rmarkdown/templates/{NPS DRR => NPS_DRR}/skeleton/references.bib (100%) rename inst/rmarkdown/templates/{NPS DRR => NPS_DRR}/skeleton/skeleton.Rmd (100%) rename inst/rmarkdown/templates/{NPS DRR => NPS_DRR}/template.yaml (82%) diff --git a/inst/rmarkdown/templates/NPS DRR/skeleton/BICY_Example/Example_BICY_Veg_metadata.xml b/inst/rmarkdown/templates/NPS_DRR/skeleton/BICY_Example/Example_BICY_Veg_metadata.xml similarity index 100% rename from inst/rmarkdown/templates/NPS DRR/skeleton/BICY_Example/Example_BICY_Veg_metadata.xml rename to inst/rmarkdown/templates/NPS_DRR/skeleton/BICY_Example/Example_BICY_Veg_metadata.xml diff --git a/inst/rmarkdown/templates/NPS DRR/skeleton/BICY_Example/Mini_BICY_Veg_Geography.csv b/inst/rmarkdown/templates/NPS_DRR/skeleton/BICY_Example/Mini_BICY_Veg_Geography.csv similarity index 100% rename from inst/rmarkdown/templates/NPS DRR/skeleton/BICY_Example/Mini_BICY_Veg_Geography.csv rename to inst/rmarkdown/templates/NPS_DRR/skeleton/BICY_Example/Mini_BICY_Veg_Geography.csv diff --git a/inst/rmarkdown/templates/NPS DRR/skeleton/BICY_Example/Mini_BICY_Veg_Intercept_Cleaned.csv b/inst/rmarkdown/templates/NPS_DRR/skeleton/BICY_Example/Mini_BICY_Veg_Intercept_Cleaned.csv similarity index 100% rename from inst/rmarkdown/templates/NPS DRR/skeleton/BICY_Example/Mini_BICY_Veg_Intercept_Cleaned.csv rename to inst/rmarkdown/templates/NPS_DRR/skeleton/BICY_Example/Mini_BICY_Veg_Intercept_Cleaned.csv diff --git a/inst/rmarkdown/templates/NPS DRR/skeleton/BICY_Example/Mini_BICY_Veg_Transect_Cleaned.csv b/inst/rmarkdown/templates/NPS_DRR/skeleton/BICY_Example/Mini_BICY_Veg_Transect_Cleaned.csv similarity index 100% rename from inst/rmarkdown/templates/NPS DRR/skeleton/BICY_Example/Mini_BICY_Veg_Transect_Cleaned.csv rename to inst/rmarkdown/templates/NPS_DRR/skeleton/BICY_Example/Mini_BICY_Veg_Transect_Cleaned.csv diff --git a/inst/rmarkdown/templates/NPS DRR/skeleton/BICY_Example/ProcessingWorkflow.png b/inst/rmarkdown/templates/NPS_DRR/skeleton/BICY_Example/ProcessingWorkflow.png similarity index 100% rename from inst/rmarkdown/templates/NPS DRR/skeleton/BICY_Example/ProcessingWorkflow.png rename to inst/rmarkdown/templates/NPS_DRR/skeleton/BICY_Example/ProcessingWorkflow.png diff --git a/inst/rmarkdown/templates/NPS DRR/skeleton/national-park-service-DRR.csl b/inst/rmarkdown/templates/NPS_DRR/skeleton/national-park-service-DRR.csl similarity index 100% rename from inst/rmarkdown/templates/NPS DRR/skeleton/national-park-service-DRR.csl rename to inst/rmarkdown/templates/NPS_DRR/skeleton/national-park-service-DRR.csl diff --git a/inst/rmarkdown/templates/NPS DRR/skeleton/references.bib b/inst/rmarkdown/templates/NPS_DRR/skeleton/references.bib similarity index 100% rename from inst/rmarkdown/templates/NPS DRR/skeleton/references.bib rename to inst/rmarkdown/templates/NPS_DRR/skeleton/references.bib diff --git a/inst/rmarkdown/templates/NPS DRR/skeleton/skeleton.Rmd b/inst/rmarkdown/templates/NPS_DRR/skeleton/skeleton.Rmd similarity index 100% rename from inst/rmarkdown/templates/NPS DRR/skeleton/skeleton.Rmd rename to inst/rmarkdown/templates/NPS_DRR/skeleton/skeleton.Rmd diff --git a/inst/rmarkdown/templates/NPS DRR/template.yaml b/inst/rmarkdown/templates/NPS_DRR/template.yaml similarity index 82% rename from inst/rmarkdown/templates/NPS DRR/template.yaml rename to inst/rmarkdown/templates/NPS_DRR/template.yaml index 50db208..ee179c1 100644 --- a/inst/rmarkdown/templates/NPS DRR/template.yaml +++ b/inst/rmarkdown/templates/NPS_DRR/template.yaml @@ -1,4 +1,4 @@ -name: NPS DRR +name: NPS_DRR description: > A description of the template create_dir: FALSE From 8e3f856428f3d3327bb7ce7a5796ca901a04e927 Mon Sep 17 00:00:00 2001 From: Rob Baker Date: Fri, 9 Feb 2024 09:36:15 -0700 Subject: [PATCH 23/33] autoupdate via pkgdown and devtools::document() --- docs/pkgdown.yml | 2 +- docs/reference/create_datastore_script.html | 4 ++-- docs/reference/get_custom_flags.html | 2 +- docs/reference/get_dc_flags.html | 2 +- docs/reference/get_df_flags.html | 2 +- docs/reference/get_dp_flags.html | 2 +- docs/reference/replace_blanks.html | 2 +- 7 files changed, 8 insertions(+), 8 deletions(-) diff --git a/docs/pkgdown.yml b/docs/pkgdown.yml index bb19a5f..478693e 100644 --- a/docs/pkgdown.yml +++ b/docs/pkgdown.yml @@ -5,5 +5,5 @@ articles: Starting-a-DRR: Starting-a-DRR.html Using-the-DRR-Template: Using-the-DRR-Template.html QCkit: QCkit.html -last_built: 2024-02-09T16:15Z +last_built: 2024-02-09T16:35Z diff --git a/docs/reference/create_datastore_script.html b/docs/reference/create_datastore_script.html index 1f1b46c..3d50ff7 100644 --- a/docs/reference/create_datastore_script.html +++ b/docs/reference/create_datastore_script.html @@ -82,7 +82,7 @@

        Turn a GitHub release into a DataStore Script Reference

        create_datastore_script(
           owner,
           repo,
        -  path = here::here(),
        +  path = here::here(),
           force = FALSE,
           dev = FALSE
         )
        @@ -99,7 +99,7 @@

        Arguments

        path
        -

        String. The location where the release .zip from GitHub should be downloaded to (and uploaded from). Defaults to the working directory of the R Project (i.e. here::here()).

        +

        String. The location where the release .zip from GitHub should be downloaded to (and uploaded from). Defaults to the working directory of the R Project (i.e. here::here()).

        force
        diff --git a/docs/reference/get_custom_flags.html b/docs/reference/get_custom_flags.html index f413d62..b688ee1 100644 --- a/docs/reference/get_custom_flags.html +++ b/docs/reference/get_custom_flags.html @@ -100,7 +100,7 @@

        Creates dataframe(s) summarizing data quality

        get_custom_flags(
        -  directory = here::here(),
        +  directory = here::here(),
           cols = (""),
           output = c("all", "files", "columns")
         )
        diff --git a/docs/reference/get_dc_flags.html b/docs/reference/get_dc_flags.html index a94ce73..3c3823e 100644 --- a/docs/reference/get_dc_flags.html +++ b/docs/reference/get_dc_flags.html @@ -84,7 +84,7 @@

        Create Table of Data Quality Flags in Flagging Columns within individual

        -
        get_dc_flags(directory = here::here())
        +
        get_dc_flags(directory = here::here())
        diff --git a/docs/reference/get_df_flags.html b/docs/reference/get_df_flags.html index c1109ac..8d64bae 100644 --- a/docs/reference/get_df_flags.html +++ b/docs/reference/get_df_flags.html @@ -81,7 +81,7 @@

        Create Table of Data Quality Flags Found in Data Files within a Data Package

        -
        get_df_flags(directory = here::here())
        +
        get_df_flags(directory = here::here())
        diff --git a/docs/reference/get_dp_flags.html b/docs/reference/get_dp_flags.html index 0076847..0a4c63a 100644 --- a/docs/reference/get_dp_flags.html +++ b/docs/reference/get_dp_flags.html @@ -81,7 +81,7 @@

        Create Table of Data Quality Flags Found in a Data Package

        -
        get_dp_flags(directory = here::here())
        +
        get_dp_flags(directory = here::here())
        diff --git a/docs/reference/replace_blanks.html b/docs/reference/replace_blanks.html index 944a16a..3977a12 100644 --- a/docs/reference/replace_blanks.html +++ b/docs/reference/replace_blanks.html @@ -69,7 +69,7 @@

        Replaces all blank cells with NA

        -
        replace_blanks(directory = here::here())
        +
        replace_blanks(directory = here::here())
        From 988a58e8a4f20f4465d603c0523e562de5cc5d8f Mon Sep 17 00:00:00 2001 From: Rob Baker Date: Fri, 9 Feb 2024 10:21:06 -0700 Subject: [PATCH 24/33] Increment version --- DESCRIPTION | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/DESCRIPTION b/DESCRIPTION index 53166c0..a6c8522 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -1,7 +1,7 @@ Package: QCkit Type: Package Title: NPS Inventory and Monitoring Quality Control Toolkit -Version: 0.1.4 +Version: 0.1.5 Authors@R: c( person(given = "Robert", family = "Baker", From 4e94db7d2808b43fe7f82898bb454aac3e1fd8b8 Mon Sep 17 00:00:00 2001 From: Rob Baker Date: Fri, 9 Feb 2024 10:21:19 -0700 Subject: [PATCH 25/33] increment version; add info about DRR template --- NEWS.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/NEWS.md b/NEWS.md index 43f027b..97d78ac 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,3 +1,7 @@ +# QCkit v0.1.5 +2024-02-09 +* This version adds the DRR template, example files, and associated documentation to the QCkit package. + # QCkit v0.1.4 2024-01-23 * Maintenance on `get_custom_flag()` to align with updated DRR requirements From 58fdfd6dc33dbd775fe39dc3e3fc4d1e93538454 Mon Sep 17 00:00:00 2001 From: Rob Baker Date: Fri, 9 Feb 2024 10:21:32 -0700 Subject: [PATCH 26/33] add purpose and scope documentation --- docs/articles/DRR_Purpose_and_Scope.html | 446 +++++++++++++++++++++++ 1 file changed, 446 insertions(+) create mode 100644 docs/articles/DRR_Purpose_and_Scope.html diff --git a/docs/articles/DRR_Purpose_and_Scope.html b/docs/articles/DRR_Purpose_and_Scope.html new file mode 100644 index 0000000..fb3f354 --- /dev/null +++ b/docs/articles/DRR_Purpose_and_Scope.html @@ -0,0 +1,446 @@ + + + + + + + +DRR Purpose and Scope • QCkit + + + + + + + + + + + + +
        +
        + + + + +
        +
        + + + + + +

        Lifecycle: experimental

        + +
        +

        Background +

        +

        The Data Release Report (DRR) is aimed at fulfilling requirements and +expectations of Open Science at the National Park Service. This +includes:

        +
          +
        • Broad adoption of open-data and open-by-default +practices.

        • +
        • A move in the scientific disciplines toward considering and +publishing data sets as independently-citable scientific works.

        • +
        • Routine assignment of digital object identifiers (DOIs) to +datasets to facilitate location, reuse, and citation of specific +data

        • +
        • Increased transparency and reproducibility in the processing and +analysis of data.

        • +
        • Establishment of peer reviewed “data journals” dedicated to +publishing data sets and associated documentation designed to facilitate +their reuse.

        • +
        • Expectation that science-based decisions are based on +peer-reviewed, reproducible, and open science by default.

        • +
        +

        Data Release Reports are designed to parallel external peer-reviewed +scientific journals dedicated to facilitate reuse of reproducible +scientific data, in recognition that the primary reason IMD data are +collected is to support science-based decisions.

        +

        Note that publication in a Data Release Report Series (not mandated) +is distinct from requirements to document data collection, processing, +and quality evaluation (mandated; see below). The establishment of a +Data Release Report Series is intended to facilitate and encourage this +type of reporting in a standard format, and in a manner commensurate +with current scientific norms.

        +
        +
        +

        Definitions +

        +

        Reproducibility. The degree to which scientific +information, modeling, and methods of analysis could be evaluated by an +independent third party to arrive at the same, or substantially similar, +conclusion as the original study or information, and that the scientific +assessment can be repeated to obtain similar results (Plesser 2017). A +study is reproducible if you can take the original data and the computer +code used to analyze the data and reproduce all of the numerical +findings from the study. This may initially sound like a trivial task +but experience has shown that it’s not always easy to achieve this +seemingly minimal standard (ASA 2017, Plesser 2017).

        +

        Transparency. Full disclosure of the methods used to +obtain, process, analyze, and review scientific data and other +information products, the availability of the data that went into and +came out of the analysis, and the computer code used to conduct the +analysis. Documenting this information is crucial to ensure +reproducibility and requires, at minimum, the sharing of analytical data +sets, relevant metadata, analytical code, and related software.

        +

        Fitness for Use. The utility of scientific +information (in this case a dataset) for its intended users and its +intended purposes. Agencies must review and communicate the fitness of a +dataset for its intended purpose, and should provide the public +sufficient documentation about each dataset to allow data users to +determine the fitness of the data for the purpose for which third +parties may consider using it.

        +

        Decisions. The type of decisions that must be based +on publicly-available, reproducible, and peer-reviewed science has not +been defined. At a minimum it includes any influential decisions, but it +may also include any decisions subject to public review and comment.

        +

        Descriptive Reporting. The policies listed above are +consistent in the requirement to provide documentation that describes +the methods used to collect, process, and evaluate science products, +including data. Note that this is distinct from (and in practice may +significantly differ from) prescriptive documents such as protocols, +procedures, and study plans. Descriptive reporting should cite or +describe relevant science planning documents, methods used, deviations, +and mitigations. In total, descriptive reporting provides a clear “line +of sight” on precisely how data were collected, processed, and +evaluated. Although deviations may warrant revisions to prescriptive +documents, changes in prescriptive documents after the fact do not meet +reproducibility and transparency requirements.

        +
        +
        +

        Policy Requirements +

        +
        +

        NPS Requirements +

        +

        DO11B-a, +DO +11B-b, OMB +M-05-03 (Peer review and information quality):

        +
          +
        • Scientific information must be appropriately reviewed prior to +use in decision-making, regulatory processes, or dissemination to the +public, regardless of media.

        • +
        • As per OMB M-05-03 “scientific information” includes factual +inputs, data, models, analyses, technical information, or scientific +assessments related to such disciplines as the behavioral and social +sciences, public health and medical sciences, life and earth sciences, +engineering, or physical sciences.

        • +
        • Methods for producing information will be made transparent, to +the maximum extent practicable, through accurate documentation, use of +appropriate review, and verification of information quality.

        • +
        +

        OMB +M-19-15 (Updates to Implementing the Information +Quality Act):

        +
          +
        • Federal agencies must collect, use, and disseminate information +that is fit for its intended purpose.

        • +
        • Agencies must conduct pre-dissemination review of quality [of +scientific information] based on the likely use of that information. +Quality encompasses utility, integrity, and objectivity, defined as +follows: a) Utility – utility for its intended users and its intended +purposes, b) Integrity – refers to security, and c) Objectivity – +accurate, reliable, and unbiased as a matter of presentation and +substance.

        • +
        • Agencies should provide the public with sufficient documentation +about each dataset released to allow data users to determine the fitness +of the data for the purpose for which third parties may consider using +it. Potential users must be provided with sufficient +information to understand… the data’s strengths, weaknesses, analytical +limitations, security requirements, and processing options.

        • +
        • +

          Reproducibility requirements for Influential Information. Note +that because this may not be determined at the time of collection, +processing, or dissemination this should be the default for NPS +scientific activities:

          +
            +
          • Analyses must be disseminated with sufficient descriptions of +data and methods to allow them to be reproduced by qualified third +parties who may want to test the sensitivity of agency analyses. This is +a higher standard than simply documenting the characteristics of the +underlying data, which is required for all information.

          • +
          • Computer code used to process data should be made available to +the public for further analysis. In the context of results generated, +for example, a statistical model or machine augmented learning and +decision support, reproducibility requires, at a minimum transparency +about the specific methods, design parameters, equations or algorithms, +parameters, and assumptions used.

          • +
          +
        • +
        • Reports, data, and computer code used, developed, or cited in the +analysis and reporting of findings must be made publicly available +except where prohibited by law.

        • +
        +
        +
        +

        National Park Service Guidelines +

        +

        Multiple policy and guidance documents require the use of best +available science in decision-making at the Natonal Park Service (NPS). +Additional requirements include:

        +

        SO +3369 (Promoting Open Science):

        +
          +
        • Defines “best available science” as publicly-available, +reproducible, and peer reviewed. Requires that any decisions or +scientific conclusions must prioritize the use of publicly-available, +reproducible, and peer-reviewed science. Decisions or conclusions not +based on such must include an explanation of why the alternative is the +best available information. Effective as of 28 September 2018 with no +transition period.
        • +
        +

        DO +11B (Ensuring Objectivity, Utility, and Integrity +of Information Used and Disseminated by the National Park +Service):

        +
          +
        • The NPS will ensure that information it releases to the public or +utilizes in management decisions will be developed from reliable data +sources that provide the highest quality of information at each stage of +information development.
        • +
        +
        +
        +

        NPS Inventory and Monitoring Requirements +

        +

        NPS-75 +(Inventory and Monitoring Guidelines):

        +
          +
        • An annual summary report documenting the condition of park +resources should be developed as part of the annual revision of the +parks Resource Management Plan.

        • +
        • An annual report provides a mechanism for reviewing and making +recommendations for revisions in the [Protocol/SOPs].

        • +
        • [Inventory] data obtained should be archived in park records and, +when appropriate, a report should be written summarizing +findings.

        • +
        • Reporting requirements as per IMD directive

        • +
        +

        IMD +Reporting and Analysis Guidance

        +
          +
        • Annual Analyses Required of all Monitoring Protocols: Conduct an +annual data review to address whether there is any unexpected +variability or outliers, and whether any protocol changes or additional +studies may be needed. Part of the review must assess the data against +standards defined in the protocol narrative, data quality standards +document or quality assurance plan, and document whether those standards +were met. When data are not available for review during the year they +are collected (for example, when data have been submitted to a lab for +analysis), review must be conducted the year the data are available. For +example, if water quality and quantity data are typically reviewed in +October and lab results for water quality are not available until the +following March, these data must be reviewed during the following +October review period, if not before.
        • +
        +
        +
        +
        +

        Implications +

        +

        Because all of the data the NPS IMD collects is intended for use in +supporting science-based decisions as per our program’s five goals, and +is intended for use in planning (the decisions of which are subject to +public comment as per NEPA requirements), this means that by +default:

        +
          +
        • All analytical work we do should be reproducible to the extent +possible. Analytical work includes both statistical analysis and +reporting of data as well as quality control procedures where data are +tested against quality standards and qualified or corrected as +appropriate.

        • +
        • Full reproducibility may not be possible in all cases, +particularly where analytical methods involve subject matter expertise +to make informed judgments on how to proceed with analyses. In such +cases, decisions should be documented to ensure transparency.

        • +
        • All IMD data should be published with supporting documentation to +allow for reproduction of results.

        • +
        • All IMD data should be evaluated to determine whether they are +suitable for their intended use.

        • +
        • All IMD data should be published with information fully +describing how data were collected, processed, and evaluated.

        • +
        • All data should be published in open formats that support the FAIR principles +(Findable, Accessible, Interoperable, and Resuable).

        • +
        +
        +
        +

        Scope +

        +

        (for the NPS Inventory & Monitoring Program)

        +
        +

        General Studies +

        +

        Any project that involves the collection of scientific data for use +in supporting decisions to be made by NPS personnel. General study data +may or may not be collected based on documented or peer-reviewed study +plans or defined quality standards, but are in most cases purpose-driven +and resultant information should be evaluated for the suitability +for—and prior to—their use in decision support. These data may be reused +for secondary purposes including similar decisions at other locations or +times and/or portions of general study data may be reused or contribute +to other scientific work (observations from a deer browsing study may be +contribute to an inventory or may be used as ancillary data to explain +monitoring observations).

        +
        +Workflow for data collection, processing, dissemination, and use for general studies. Teal-colored boxes are subject to reproducibility requirements.

        +Workflow for data collection, processing, dissemination, and use for +general studies. Teal-colored boxes are subject to reproducibility +requirements. +

        +
        +
        +
        +

        Vital Signs Monitoring +

        +

        Vital signs monitoring data are collected by IMD and park staff to +address specific monitoring objectives following methods designed to +ensure long-term comparability of data. Procedures are established to +ensure that data quality standards are maintained in perpetuity. +However, because monitoring data are collected over long periods of time +in dynamic systems, the methods employed may differ from those +prescribed in monitoring protocols, procedures, or sampling plans, and +any deviations (and resultant mitigations to the data) must be +documented. Data should be evaluated to ensure that they meet prescribed +standards and are suitable for analyses designed to test whether +monitoring objectives have been met. Monitoring data may be reused for +secondary purposes including synthesis reports and condition +assessments, and portions of monitoring data may contribute to +inventories.

        +
        +Workflow for data collection, processing, dissemination, and use for vital sign monitoring efforts. Teal-colored boxes are subject to reproducibility requirements.

        +Workflow for data collection, processing, dissemination, and use for +vital sign monitoring efforts. Teal-colored boxes are subject to +reproducibility requirements. +

        +
        +
        +
        +

        Inventory Studies +

        +

        Inventory study data are similar to general study data in that they +are time- and area-specific efforts designed to answer specific +management needs as well as broader inventory objectives outlined in +project-specific study plans and inventory science plans. Inventory +studies typically follow well-documented data collection methods or +procedures, and resultant data should be evaluated for whether they are +suitable for use in supporting study-specific and broader +inventory-level objectives. Inventory study data are expected to be +reused to meet broader inventory level goals, but may also support other +scientific work and decision support.

        +
        +Workflow for data collection, processing, dissemination, and use for inventory studies. Teal-colored boxes are subject to reproducibility requirements.

        +Workflow for data collection, processing, dissemination, and use for +inventory studies. Teal-colored boxes are subject to reproducibility +requirements. +

        +
        +
        +
        +
        +

        References +

        +

        American Statistical Association (ASA). 2017. Recommendations to +funding agencies for supporting reproducible research. https://www.amstat.org/asa/files/pdfs/POL-ReproducibleResearchRecommendations.pdf.

        +

        Plesser, H. E. 2017. Reproducibility vs. Replicability: A brief +history of a confused terminology. Front. Neuroinform. 11:76. https://doi.org/10.3389/fninf.2017.00076.

        +
        +
        + + + +
        + + + +
        + +
        +

        +

        Site built with pkgdown 2.0.7.

        +
        + +
        +
        + + + + + + + + From fe099c3c94c5cf5a9b4a5b253f2b60caf80f90a8 Mon Sep 17 00:00:00 2001 From: Rob Baker Date: Fri, 9 Feb 2024 10:21:57 -0700 Subject: [PATCH 27/33] add image files supporting purpose and scope documentation --- docs/articles/QCkit.html | 128 --------------------- docs/articles/WorkflowModelGeneral.png | Bin 0 -> 15023 bytes docs/articles/WorkflowModelInventories.png | Bin 0 -> 26785 bytes docs/articles/WorkflowModelMonitoring.png | Bin 0 -> 31752 bytes 4 files changed, 128 deletions(-) delete mode 100644 docs/articles/QCkit.html create mode 100644 docs/articles/WorkflowModelGeneral.png create mode 100644 docs/articles/WorkflowModelInventories.png create mode 100644 docs/articles/WorkflowModelMonitoring.png diff --git a/docs/articles/QCkit.html b/docs/articles/QCkit.html deleted file mode 100644 index dd7b701..0000000 --- a/docs/articles/QCkit.html +++ /dev/null @@ -1,128 +0,0 @@ - - - - - - - -QCkit • QCkit - - - - - - - - - - - - -
        -
        - - - - -
        -
        - - - - - -
        - - - -
        - - - -
        - -
        -

        -

        Site built with pkgdown 2.0.7.

        -
        - -
        -
        - - - - - - - - diff --git a/docs/articles/WorkflowModelGeneral.png b/docs/articles/WorkflowModelGeneral.png new file mode 100644 index 0000000000000000000000000000000000000000..506dff02574982bde355e3668432f19b2acdfe68 GIT binary patch literal 15023 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 E0l!*-Pyhe` literal 0 HcmV?d00001 diff --git a/docs/articles/WorkflowModelInventories.png b/docs/articles/WorkflowModelInventories.png new file mode 100644 index 0000000000000000000000000000000000000000..940e6c07a8ca0b0d29b602cb9daf4c98bef3f02b GIT binary patch literal 26785 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 literal 0 HcmV?d00001 diff --git a/docs/articles/WorkflowModelMonitoring.png b/docs/articles/WorkflowModelMonitoring.png new file mode 100644 index 0000000000000000000000000000000000000000..39dfb8c4fd757054badafdd8c955fcd0458fd79c GIT binary patch literal 31752 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 AF#rGn literal 0 HcmV?d00001 From f31747e3d5c71285ff9234de4af41510d7b5fb39 Mon Sep 17 00:00:00 2001 From: Rob Baker Date: Fri, 9 Feb 2024 10:22:11 -0700 Subject: [PATCH 28/33] remove useless vignette --- vignettes/QCkit.Rmd | 19 ------------------- 1 file changed, 19 deletions(-) delete mode 100644 vignettes/QCkit.Rmd diff --git a/vignettes/QCkit.Rmd b/vignettes/QCkit.Rmd deleted file mode 100644 index 37c13e2..0000000 --- a/vignettes/QCkit.Rmd +++ /dev/null @@ -1,19 +0,0 @@ ---- -title: "QCkit" -output: rmarkdown::html_vignette -vignette: > - %\VignetteIndexEntry{QCkit} - %\VignetteEngine{knitr::rmarkdown} - %\VignetteEncoding{UTF-8} ---- - -```{r, include = FALSE} -knitr::opts_chunk$set( - collapse = TRUE, - comment = "#>" -) -``` - -```{r setup} -library(QCkit) -``` From 7e489a56f43b7e86bef6396813e5445f4c286f5b Mon Sep 17 00:00:00 2001 From: Rob Baker Date: Fri, 9 Feb 2024 10:22:26 -0700 Subject: [PATCH 29/33] add purpose and scope article --- vignettes/articles/DRR_Purpose_and_Scope.Rmd | 368 +++++++++++++++++++ 1 file changed, 368 insertions(+) create mode 100644 vignettes/articles/DRR_Purpose_and_Scope.Rmd diff --git a/vignettes/articles/DRR_Purpose_and_Scope.Rmd b/vignettes/articles/DRR_Purpose_and_Scope.Rmd new file mode 100644 index 0000000..3a590fc --- /dev/null +++ b/vignettes/articles/DRR_Purpose_and_Scope.Rmd @@ -0,0 +1,368 @@ +--- +title: "DRR Purpose and Scope" +--- + +```{r setup1, include=FALSE} +knitr::opts_chunk$set(echo = FALSE) + +# Learn more about creating websites with Distill at: +# https://rstudio.github.io/distill/website.html + +``` + + + +[![Lifecycle: experimental](https://img.shields.io/badge/lifecycle-experimental-orange.svg)](https://www.tidyverse.org/lifecycle/#experimental) + + + +```{r setup2, include=FALSE} +RRpackages <- c('markdown', # links to Sundown rendering library + 'rmarkdown', # newer rendering via pandoc + 'pander', # alternative renderer for markdown, + # plus better tables than just knitr + 'knitr', + "devtools", + "R.rsp", # dynamic generation of scientific reports + "rmdHelpers", # misc from Mark Peterson + # thisFileName() thisFile_knit() + 'yaml', # format data into markdown + 'kableExtra', + 'rmdformats', # templates including automatic ToC, + # also use_bookdown() + 'htmltools' # + ) + +inst <- RRpackages %in% installed.packages() +if (length(RRpackages[!inst]) > 0) { + install.packages(RRpackages[!inst], dep = TRUE) +} +lapply(RRpackages, library, character.only = TRUE) + +knitr::opts_chunk$set( + echo = TRUE, + comment = " ", + dev = "svg", + tidy.opts = list(width.cutoff = 60), + tidy = TRUE + ) + +``` + +# Background + +The Data Release Report (DRR) is aimed at fulfilling requirements and expectations of Open Science at the National Park Service. This includes: + +- Broad adoption of open-data and open-by-default practices. + +- A move in the scientific disciplines toward considering and + publishing data sets as independently-citable scientific works. + +- Routine assignment of digital object identifiers (DOIs) to datasets + to facilitate location, reuse, and citation of specific data + +- Increased transparency and reproducibility in the processing and + analysis of data. + +- Establishment of peer reviewed "data journals" dedicated to + publishing data sets and associated documentation designed to + facilitate their reuse. + +- Expectation that science-based decisions are based on peer-reviewed, + reproducible, and open science by default. + +Data Release Reports are designed to parallel external peer-reviewed +scientific journals dedicated to facilitate reuse of reproducible +scientific data, in recognition that the primary reason IMD data are +collected is to support science-based decisions. + +Note that publication in a Data Release Report Series (not mandated) is +distinct from requirements to document data collection, processing, and +quality evaluation (mandated; see below). The establishment of a Data +Release Report Series is intended to facilitate and encourage this type +of reporting in a standard format, and in a manner commensurate with +current scientific norms. + + +# Definitions + +**Reproducibility.** The degree to which scientific information, +modeling, and methods of analysis could be evaluated by an independent +third party to arrive at the same, or substantially similar, conclusion +as the original study or information, and that the scientific assessment +can be repeated to obtain similar results (Plesser 2017). A study is +reproducible if you can take the original data and the computer code +used to analyze the data and reproduce all of the numerical findings +from the study. This may initially sound like a trivial task but +experience has shown that it’s not always easy to achieve this seemingly +minimal standard (ASA 2017, Plesser 2017). + +**Transparency.** Full disclosure of the methods used to obtain, +process, analyze, and review scientific data and other information +products, the availability of the data that went into and came out of +the analysis, and the computer code used to conduct the analysis. +Documenting this information is crucial to ensure reproducibility and +requires, at minimum, the sharing of analytical data sets, relevant +metadata, analytical code, and related software. + +**Fitness for Use.** The utility of scientific information (in this case +a dataset) for its intended users and its intended purposes. Agencies +must review and communicate the fitness of a dataset for its intended +purpose, and should provide the public sufficient documentation about +each dataset to allow data users to determine the fitness of the data +for the purpose for which third parties may consider using it. + +**Decisions.** The type of decisions that must be based on +publicly-available, reproducible, and peer-reviewed science has not been +defined. At a minimum it includes any influential decisions, but it may +also include any decisions subject to public review and comment. + +**Descriptive Reporting.** The policies listed above are consistent in +the requirement to provide documentation that describes the methods used +to collect, process, and evaluate science products, including data. Note +that this is distinct from (and in practice may significantly differ +from) prescriptive documents such as protocols, procedures, and study +plans. Descriptive reporting should cite or describe relevant science +planning documents, methods used, deviations, and mitigations. In total, +descriptive reporting provides a clear “line of sight” on precisely how +data were collected, processed, and evaluated. Although deviations may +warrant revisions to prescriptive documents, changes in prescriptive +documents after the fact do not meet reproducibility and transparency +requirements. + +# Policy Requirements + +## NPS Requirements + +[**DO11B-a**](https://www.nps.gov/subjects/policy/upload/DO_11B_10-16-2002.pdf)**, +[DO 11B-b](https://irma.nps.gov/DataStore/DownloadFile/474958), [OMB +M-05-03](https://www.whitehouse.gov/wp-content/uploads/2017/11/2005-M-05-03-Issuance-of-OMBs-Final-Information-Quality-Bulletin-for-Peer-Review-December-16-2004.pdf) +(Peer review and information quality):** + +- Scientific information must be appropriately reviewed prior to use + in decision-making, regulatory processes, or dissemination to the + public, regardless of media. + +- As per OMB M-05-03 “scientific information” includes factual inputs, + data, models, analyses, technical information, or scientific + assessments related to such disciplines as the behavioral and social + sciences, public health and medical sciences, life and earth + sciences, engineering, or physical sciences. + +- Methods for producing information will be made transparent, to the + maximum extent practicable, through accurate documentation, use of + appropriate review, and verification of information quality. + +[**OMB +M-19-15**](https://www.whitehouse.gov/wp-content/uploads/2019/04/M-19-15.pdf) +**(Updates to Implementing the Information Quality Act):** + +- Federal agencies must collect, use, and disseminate information that + is fit for its intended purpose. + +- Agencies must conduct pre-dissemination review of quality [of + scientific information] based on the likely use of that information. + Quality encompasses utility, integrity, and objectivity, defined as + follows: a) Utility – utility for its intended users and its + intended purposes, b) Integrity – refers to security, and c) + Objectivity – accurate, reliable, and unbiased as a matter of + presentation and substance. + +- Agencies should provide the public with sufficient documentation + about each dataset released to allow data users to determine the + fitness of the data for the purpose for which third parties may + consider using it. Potential users *must* be provided with + sufficient information to understand… the data’s strengths, + weaknesses, analytical limitations, security requirements, and + processing options. + +- Reproducibility requirements for Influential Information. Note that + because this may not be determined at the time of collection, + processing, or dissemination this should be the default for NPS + scientific activities: + + - Analyses must be disseminated with sufficient descriptions of + data and methods to allow them to be reproduced by qualified + third parties who may want to test the sensitivity of agency + analyses. This is a higher standard than simply documenting the + characteristics of the underlying data, which is required for + all information. + + - Computer code used to process data should be made available to + the public for further analysis. In the context of results + generated, for example, a statistical model or machine augmented + learning and decision support, reproducibility requires, at a + minimum transparency about the specific methods, design + parameters, equations or algorithms, parameters, and assumptions + used. + +- Reports, data, and computer code used, developed, or cited in the + analysis and reporting of findings must be made publicly available + except where prohibited by law. + +## National Park Service Guidelines + +Multiple policy and guidance documents require the use of best available science in +decision-making at the Natonal Park Service (NPS). Additional requirements include: + +[**SO +3369**](https://www.doi.gov/sites/doi.gov/files/elips/documents/so_3369_promoting_open_science.pdf) +**(Promoting Open Science):** + +- Defines “best available science” as publicly-available, + reproducible, and peer reviewed. Requires that any decisions or + scientific conclusions must prioritize the use of + publicly-available, reproducible, and peer-reviewed science. + Decisions or conclusions not based on such must include an + explanation of why the alternative is the best available + information. Effective as of 28 September 2018 with no transition + period. + +[**DO +11B**](https://www.nps.gov/subjects/policy/upload/DO_11B_10-16-2002.pdf) +**(Ensuring Objectivity, Utility, and Integrity of Information Used and +Disseminated by the National Park Service):** + +- The NPS will ensure that information it releases to the public or + utilizes in management decisions will be developed from reliable + data sources that provide the highest quality of information at each + stage of information development. + +## NPS Inventory and Monitoring Requirements + +[**NPS-75**](https://irma.nps.gov/DataStore/Reference/Profile/622933) +**(Inventory and Monitoring Guidelines):** + +- An annual summary report documenting the condition of park resources + should be developed as part of the annual revision of the parks + Resource Management Plan. + +- An annual report provides a mechanism for reviewing and making + recommendations for revisions in the [Protocol/SOPs]. + +- [Inventory] data obtained should be archived in park records and, + when appropriate, a report should be written summarizing findings. + +- Reporting requirements as per IMD directive + +[**IMD Reporting and Analysis +Guidance**](https://irma.nps.gov/DataStore/Reference/Profile/2252934) + +- Annual Analyses Required of all Monitoring Protocols: Conduct an + annual data review to address whether there is any unexpected + variability or outliers, and whether any protocol changes or + additional studies may be needed. Part of the review must assess the + data against standards defined in the protocol narrative, data + quality standards document or quality assurance plan, and document + whether those standards were met. When data are not available for + review during the year they are collected (for example, when data + have been submitted to a lab for analysis), review must be conducted + the year the data are available. For example, if water quality and + quantity data are typically reviewed in October and lab results for + water quality are not available until the following March, these + data must be reviewed during the following October review period, if + not before. + +# Implications + +Because all of the data the NPS IMD collects is intended for use in supporting +science-based decisions as per our program’s five goals, and is intended +for use in planning (the decisions of which are subject to public +comment as per NEPA requirements), this means that by default: + +- All analytical work we do should be reproducible to the extent + possible. Analytical work includes both statistical analysis and + reporting of data as well as quality control procedures where data + are tested against quality standards and qualified or corrected as + appropriate. + +- Full reproducibility may not be possible in all cases, particularly + where analytical methods involve subject matter expertise to make + informed judgments on how to proceed with analyses. In such cases, + decisions should be documented to ensure transparency. + +- All IMD data should be published with supporting documentation to + allow for reproduction of results. + +- All IMD data should be evaluated to determine whether they are + suitable for their intended use. + +- All IMD data should be published with information fully describing + how data were collected, processed, and evaluated. + +- All data should be published in open formats that support the [FAIR + principles](https://www.go-fair.org/fair-principles/) (Findable, + Accessible, Interoperable, and Resuable). + +# Scope + +(for the NPS Inventory & Monitoring Program) + +## General Studies + +Any project that involves the collection of scientific data for use in +supporting decisions to be made by NPS personnel. General study data may +or may not be collected based on documented or peer-reviewed study plans +or defined quality standards, but are in most cases purpose-driven and +resultant information should be evaluated for the suitability for—and +prior to—their use in decision support. These data may be reused for +secondary purposes including similar decisions at other locations or +times and/or portions of general study data may be reused or contribute +to other scientific work (observations from a deer browsing study may be +contribute to an inventory or may be used as ancillary data to explain +monitoring observations). + +```{r figure1, echo=FALSE, fig.align="center", out.width="70%", fig.cap="Workflow for data collection, processing, dissemination, and use for general studies. Teal-colored boxes are subject to reproducibility requirements."} +include_graphics("WorkflowModelGeneral.png") + +``` + +## Vital Signs Monitoring + +Vital signs monitoring data are collected by IMD and park staff to +address specific monitoring objectives following methods designed to +ensure long-term comparability of data. Procedures are established to +ensure that data quality standards are maintained in perpetuity. +However, because monitoring data are collected over long periods of time +in dynamic systems, the methods employed may differ from those +prescribed in monitoring protocols, procedures, or sampling plans, and +any deviations (and resultant mitigations to the data) must be +documented. Data should be evaluated to ensure that they meet prescribed +standards and are suitable for analyses designed to test whether +monitoring objectives have been met. Monitoring data may be reused for +secondary purposes including synthesis reports and condition +assessments, and portions of monitoring data may contribute to +inventories. + +```{r figure2, echo=FALSE, fig.align="center", out.width="70%", fig.cap="Workflow for data collection, processing, dissemination, and use for vital sign monitoring efforts. Teal-colored boxes are subject to reproducibility requirements."} +include_graphics("WorkflowModelMonitoring.png") + +``` + +## Inventory Studies + +Inventory study data are similar to general study data in that they are +time- and area-specific efforts designed to answer specific management +needs as well as broader inventory objectives outlined in +project-specific study plans and inventory science plans. Inventory +studies typically follow well-documented data collection methods or +procedures, and resultant data should be evaluated for whether they are +suitable for use in supporting study-specific and broader +inventory-level objectives. Inventory study data are expected to be +reused to meet broader inventory level goals, but may also support other +scientific work and decision support. + +```{r figure3, echo=FALSE, fig.align="center", out.width="70%", fig.cap="Workflow for data collection, processing, dissemination, and use for inventory studies. Teal-colored boxes are subject to reproducibility requirements."} +include_graphics("WorkflowModelInventories.png") + +``` + +# References + +American Statistical Association (ASA). 2017. Recommendations to funding +agencies for supporting reproducible research. +. + +Plesser, H. E. 2017. Reproducibility vs. Replicability: A brief history +of a confused terminology. Front. Neuroinform. 11:76. +. From 4963208b3d38c2c7b1ce9b31f5db77743d7fea26 Mon Sep 17 00:00:00 2001 From: Rob Baker Date: Fri, 9 Feb 2024 10:22:43 -0700 Subject: [PATCH 30/33] add images supporting purpose and scope documentation --- vignettes/articles/WorkflowModelGeneral.png | Bin 0 -> 15023 bytes vignettes/articles/WorkflowModelInventories.png | Bin 0 -> 26785 bytes vignettes/articles/WorkflowModelMonitoring.png | Bin 0 -> 31752 bytes 3 files changed, 0 insertions(+), 0 deletions(-) create mode 100644 vignettes/articles/WorkflowModelGeneral.png create mode 100644 vignettes/articles/WorkflowModelInventories.png create mode 100644 vignettes/articles/WorkflowModelMonitoring.png diff --git a/vignettes/articles/WorkflowModelGeneral.png b/vignettes/articles/WorkflowModelGeneral.png new file mode 100644 index 0000000000000000000000000000000000000000..506dff02574982bde355e3668432f19b2acdfe68 GIT binary patch literal 15023 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 E0l!*-Pyhe` literal 0 HcmV?d00001 diff --git a/vignettes/articles/WorkflowModelInventories.png b/vignettes/articles/WorkflowModelInventories.png new file mode 100644 index 0000000000000000000000000000000000000000..940e6c07a8ca0b0d29b602cb9daf4c98bef3f02b GIT binary patch literal 26785 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 literal 0 HcmV?d00001 diff --git a/vignettes/articles/WorkflowModelMonitoring.png b/vignettes/articles/WorkflowModelMonitoring.png new file mode 100644 index 0000000000000000000000000000000000000000..39dfb8c4fd757054badafdd8c955fcd0458fd79c GIT binary patch literal 31752 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 AF#rGn literal 0 HcmV?d00001 From 21420072e214001df411640422941b3586d3c30b Mon Sep 17 00:00:00 2001 From: Rob Baker Date: Fri, 9 Feb 2024 10:23:02 -0700 Subject: [PATCH 31/33] auto update via devtools::document and pkgdown --- docs/404.html | 8 +-- docs/LICENSE-text.html | 8 +-- docs/LICENSE.html | 8 +-- docs/articles/Starting-a-DRR.html | 42 +++++++---- docs/articles/Using-the-DRR-Template.html | 80 ++++++--------------- docs/articles/index.html | 14 ++-- docs/authors.html | 12 ++-- docs/index.html | 8 +-- docs/news/index.html | 12 ++-- docs/pkgdown.yml | 4 +- docs/reference/DC_col_check.html | 8 +-- docs/reference/QCkit-package.html | 8 +-- docs/reference/check_dc_cols.html | 8 +-- docs/reference/check_te.html | 8 +-- docs/reference/convert_datetime_format.html | 8 +-- docs/reference/convert_long_to_utm.html | 8 +-- docs/reference/convert_utm_to_ll.html | 8 +-- docs/reference/create_datastore_script.html | 8 +-- docs/reference/fix_utc_offset.html | 8 +-- docs/reference/fuzz_location.html | 8 +-- docs/reference/get_custom_flags.html | 8 +-- docs/reference/get_dc_flags.html | 8 +-- docs/reference/get_df_flags.html | 8 +-- docs/reference/get_dp_flags.html | 8 +-- docs/reference/get_elevation.html | 8 +-- docs/reference/get_park_polygon.html | 8 +-- docs/reference/get_taxon_rank.html | 8 +-- docs/reference/get_utm_zone.html | 8 +-- docs/reference/index.html | 8 +-- docs/reference/long2UTM.html | 8 +-- docs/reference/order_cols.html | 8 +-- docs/reference/replace_blanks.html | 8 +-- docs/reference/te_check.html | 8 +-- docs/reference/utm_to_ll.html | 8 +-- docs/reference/validate_coord.html | 8 +-- docs/sitemap.xml | 4 +- 36 files changed, 192 insertions(+), 208 deletions(-) diff --git a/docs/404.html b/docs/404.html index 4de547b..e96494a 100644 --- a/docs/404.html +++ b/docs/404.html @@ -32,15 +32,12 @@ QCkit - 0.1.4 + 0.1.5

        Reproducible Reports

        -

        The following is for users who are using the -DRR_to_docx.rmd template file to generate a data release -report using RMarkdown.

        +

        The following is for users who are using the DRR template file to +generate a data release report using RMarkdown.

        Standard Code Chunks

        @@ -307,12 +273,12 @@

        Automating Citations QCkit - 0.1.4 + 0.1.5

        diff --git a/docs/authors.html b/docs/authors.html index 0b082d9..40eb1bd 100644 --- a/docs/authors.html +++ b/docs/authors.html @@ -17,15 +17,12 @@ QCkit - 0.1.4 + 0.1.5 +
        + +

        2024-02-09 * This version adds the DRR template, example files, and associated documentation to the QCkit package.

        +

        2024-01-23 * Maintenance on get_custom_flag() to align with updated DRR requirements * Added function replace_blanks() to ingest a directory of .csvs and write them back out to .csv (overwriting the original files) with blanks converted to NA (except if a file has NO data - then it remains blank and needs to be dealt with manually)

        diff --git a/docs/pkgdown.yml b/docs/pkgdown.yml index 478693e..2ae4a4c 100644 --- a/docs/pkgdown.yml +++ b/docs/pkgdown.yml @@ -2,8 +2,8 @@ pandoc: 3.1.1 pkgdown: 2.0.7 pkgdown_sha: ~ articles: + DRR_Purpose_and_Scope: DRR_Purpose_and_Scope.html Starting-a-DRR: Starting-a-DRR.html Using-the-DRR-Template: Using-the-DRR-Template.html - QCkit: QCkit.html -last_built: 2024-02-09T16:35Z +last_built: 2024-02-09T17:19Z diff --git a/docs/reference/DC_col_check.html b/docs/reference/DC_col_check.html index 7b50d51..b79483f 100644 --- a/docs/reference/DC_col_check.html +++ b/docs/reference/DC_col_check.html @@ -19,15 +19,12 @@ QCkit - 0.1.4 + 0.1.5

    33. +
      + + + + +
      +
      + + + + + +

      Lifecycle: experimental

      + +
      +

      DRRs: Background +

      +

      Purpose and Scope of Data Release +Reports

      +

      This is a template is for use when drafting Data Release Reports. +DRRs are created by the National Park Service and provide detailed +descriptions of valuable research datasets, including the methods used +to collect the data and technical analyses supporting the quality of the +measurements. Data Release Reports focus on helping others reuse data +rather than presenting results, testing hypotheses, or presenting new +interpretations and in-depth analyses.

      +
      +
      +

      About this Template +

      +

      This template contains an rmarkdown template file, default folder +structure for project files, and all the necessary template files to +generate an unformatted .docx file. Upon submission for publication, the +.docx file will be ingested by EXstyles, converted to an .xml file and +fully formatted according to NPS branding upon final publication. The +goal of this process is to relieve data producers, managers, and +scientists from the burden of formatting and allow them to focus +primarily on content. Consequently, the .docx generated for the +publication process may not be visually appealing. The content, however, +should focus on quality control, of NPS data packages and evaluate their +of utility.

      +
      +
      +

      How to Start a DRR +

      +
        +
      1. To start your DRR you will need all of your data in flat +.csv files. All quality assurance, quality control, and quality +flagging should be completed. Ideally you have already created or are in +the process of creating a data package. All of the .csv files you want +to describe in the DRR should be in a single folder with no +additional .csv files (other files such as .txt and .xml will +be ignored). This folder can be the same folder you used/are using to +create a data package.

      2. +
      3. Using Rstudio, open an R project (Select File +> New Project…) in the same folder as your .csv files. If you already +have an R project (.Rproj) initiated from creating a data package, you +can use that same R project.

      4. +
      5. Install, update (if necessary), and load the QCkit R +package. QCkit can be installed either as a component of the NPSdataverse +or on its own. The benefits of installing the entire NPSdataverse is +that upon loading the NPSdataverse, you will automatically be informed +if there are any updates to QCkit (or any of the constituent packages). +The downside to installing and loading the NPSdataverse is that the +first time you install it the process can be lengthy (there are many +dependencies) and you may hit the GitHub.com API rate limit. Either +installation is from GitHub.com and requires the devtools package to +install.

      6. +
      7. Open a new DRR Template. From within Rstudio, +select the “File” drop down menu. Choose “New File” and then “R +markdown…”. This will open up a pop-up dialog box. Select “From +Template” on in the right-hand list and choose the template labelled +“NPS DRR {QCkit}”. You can change the file and folder name to something +other than “Untitled”, but if you do so the example DRR will not render +properly. Click OK. A new folder will be generated in your current +working directory titled, “Untitled” (or whatever name you have opted to +call it).

      8. +
      +

      +
        +
      1. +
      2. How to Use this Template +line-by-line instructions and descriptions for how to use the DRR +Template.

      3. +
      4. The +DRR_Template the file you make changes to to generate a DRR. Note: +this is not a stand-alone file. To create a DRR please download the zipped +template with all associated files and folders.

      5. +
      6. Bibtex +reference file is used if you want to automate your citations. Add +each citation in bibtex format to this file and save it. Add in-text +citations to the DRR Template and your References section will +automatically be generated for you when you knit the .Rmd to .docx. You +should still visually check the final format in the .docx file for +accuracy, completion, and formatting. If you would prefer to manually +format your citations, feel free to continue doing so.

      7. +
      8. DRR_Report +an example of the .docx output file that takes into account your edits +and changes to DRR_to_docx.Rmd (assuming you have saved and/or knit the +.Rmd to .docx format in Rstudio).

      9. +
      +
      +
      +

      Examples +

      +

      More will be provided as they are published. The following examples +are post-formatting and should be used as examples for content +generation only.

      +
        +
      1. DRR for +tabular (csv) datasets of hydrologic data used for calculating +hydrologic metrics as a part of the national Environmental Settings +monitoring protocol.

      2. +
      3. DRR for geospatial (file +geodatabase) data continuing custom areas of analysis used for +Environmental Settings monitoring protocol. Report created in Microsoft +Word and ported to the template.

      4. +
      +
      +
      +

      Tips, FAQs, and Errata +

      +

      (coming soon)

      +
      +
      + + + +
      + + + + +