|
1 | | -\name{help_export} |
2 | | -\alias{help_export} |
3 | | -\title{help export} |
4 | | -\description{Overview of functions helping with exporting Data and Results} |
5 | | -\usage{help_export()} |
6 | | -\details{Functions helping with exporting data |
7 | | -\itemize{ |
8 | | -\item Export Input data from REddyProc class: |
9 | | -\code{\link{sEddyProc_sExportData}} |
10 | | -\item Export Computed results from REddyProc class: |
11 | | -\code{\link{sEddyProc_sExportResults}} |
12 | | -\item Write data frame to ASCII tab-separated text file: |
13 | | -\code{\link{fWriteDataframeToFile}} |
14 | | -\item Write data frame to ASCII comma-separated text file with units in header row: |
15 | | -\code{\link{fWriteFrench23}} |
16 | | -} |
17 | | - |
18 | | -Writing a file that can be supplied to the REddyProc webservice at |
19 | | -MPI-BGC Jena can be done by exporting data from REddyProc class \code{EProc}. |
20 | | - |
21 | | -\preformatted{ |
22 | | -df <- EProc$sExportData() |
23 | | -fWriteDataframeToFile(df, "myfilename.txt", isSplitDatetime = TRUE) |
24 | | -} |
25 | | - |
26 | | -For preparing minimal working examples also consider |
27 | | -\itemize{ |
28 | | -\item Omit records before the start of the first full day and the end of |
29 | | -the last full day: |
30 | | -\code{df <- \link{filter_entire_days}(df)} |
31 | | -\item Subset data.frame to one or two years: |
32 | | -\code{df <- \link{filter_years_eop}(df, c(1998))} |
33 | | -} |
34 | | - |
35 | | -There are several functions that import from file of different formats. |
36 | | -\itemize{ |
37 | | -\item Load text file with one header and one unit row into data frame: |
38 | | -\code{\link{fLoadTXTIntoDataframe}} |
39 | | -\item Reads sequence of annual files in the format of Europe-fluxdata 2016: |
40 | | -\code{\link{fLoadEuroFlux16}} |
41 | | -\item Read basic variables from Ameriflux standard (as of 2022) files: |
42 | | -\code{\link{fLoadAmeriflux22}} |
43 | | -\item Read NetCDF files -> moved to separate package REddyProcNCDF |
44 | | -(https://github.com/bgctw/REddyProcNCDF) |
45 | | -} |
46 | | - |
47 | | -Back to \link{REddyProc-package}.} |
48 | | - |
49 | | - |
50 | | -\author{TW |
51 | | -Department for Biogeochemical Integration at MPI-BGC, Jena, Germany <REddyProc-help@bgc-jena.mpg.de> [cph], Thomas Wutzler <twutz@bgc-jena.mpg.de> [aut, cre], Markus Reichstein <mreichstein@bgc-jena.mpg.de> [aut], Antje Maria Moffat <antje.moffat@bgc.mpg.de> [aut, trl], Olaf Menzer <omenzer@bgc-jena.mpg.de> [ctb], Mirco Migliavacca <mmiglia@bgc-jena.mpg.de> [aut], Kerstin Sickel <ksickel@bgc-jena.mpg.de> [ctb, trl], Ladislav <U+0160>igut <sigut.l@czechglobe.cz> [ctb]} |
52 | | - |
53 | | - |
54 | | - |
55 | | - |
56 | | - |
| 1 | +\name{help_export} |
| 2 | +\alias{help_export} |
| 3 | +\title{help export} |
| 4 | +\description{Overview of functions helping with exporting Data and Results} |
| 5 | +\usage{help_export()} |
| 6 | +\details{Functions helping with exporting data |
| 7 | +\itemize{ |
| 8 | +\item Export Input data from REddyProc class: |
| 9 | +\code{\link{sEddyProc_sExportData}} |
| 10 | +\item Export Computed results from REddyProc class: |
| 11 | +\code{\link{sEddyProc_sExportResults}} |
| 12 | +\item Write data frame to ASCII tab-separated text file: |
| 13 | +\code{\link{fWriteDataframeToFile}} |
| 14 | +\item Write data frame to ASCII comma-separated text file with units in header row: |
| 15 | +\code{\link{fWriteFrench23}} |
| 16 | +} |
| 17 | + |
| 18 | +Writing a file that can be supplied to the REddyProc webservice at |
| 19 | +MPI-BGC Jena can be done by exporting data from REddyProc class \code{EProc}. |
| 20 | + |
| 21 | +\preformatted{ |
| 22 | +df <- EProc$sExportData() |
| 23 | +fWriteDataframeToFile(df, "myfilename.txt", isSplitDatetime = TRUE) |
| 24 | +} |
| 25 | + |
| 26 | +For preparing minimal working examples also consider |
| 27 | +\itemize{ |
| 28 | +\item Omit records before the start of the first full day and the end of |
| 29 | +the last full day: |
| 30 | +\code{df <- \link{filter_entire_days}(df)} |
| 31 | +\item Subset data.frame to one or two years: |
| 32 | +\code{df <- \link{filter_years_eop}(df, c(1998))} |
| 33 | +} |
| 34 | + |
| 35 | +There are several functions that import from file of different formats. |
| 36 | +\itemize{ |
| 37 | +\item Load text file with one header and one unit row into data frame: |
| 38 | +\code{\link{fLoadTXTIntoDataframe}} |
| 39 | +\item Reads sequence of annual files in the format of Europe-fluxdata 2016: |
| 40 | +\code{\link{fLoadEuroFlux16}} |
| 41 | +\item Read basic variables from Ameriflux standard (as of 2022) files: |
| 42 | +\code{\link{fLoadAmeriflux22}} |
| 43 | +\item Read NetCDF files -> moved to separate package REddyProcNCDF |
| 44 | +(https://github.com/EarthyScience/REddyProcNCDF) |
| 45 | +} |
| 46 | + |
| 47 | +Back to \link{REddyProc-package}.} |
| 48 | + |
| 49 | + |
| 50 | +\author{TW |
| 51 | +Department for Biogeochemical Integration at MPI-BGC, Jena, Germany <REddyProc-help@bgc-jena.mpg.de> [cph], Thomas Wutzler <twutz@bgc-jena.mpg.de> [aut, cre], Markus Reichstein <mreichstein@bgc-jena.mpg.de> [aut], Antje Maria Moffat <antje.moffat@bgc.mpg.de> [aut, trl], Olaf Menzer <omenzer@bgc-jena.mpg.de> [ctb], Mirco Migliavacca <mmiglia@bgc-jena.mpg.de> [aut], Kerstin Sickel <ksickel@bgc-jena.mpg.de> [ctb, trl], Ladislav <U+0160>igut <sigut.l@czechglobe.cz> [ctb]} |
| 52 | + |
| 53 | + |
| 54 | + |
| 55 | + |
| 56 | + |
0 commit comments