Mercurial > repos > ecology > obisindicators
comparison data.r @ 0:1015a0070bac draft
planemo upload for repository https://github.com/galaxyecology/tools-ecology/tree/master/tools/obisindicators commit 1e0b3b101d2380338030e607e6949331439c6dfc
author | ecology |
---|---|
date | Thu, 29 Dec 2022 13:05:04 +0000 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:1015a0070bac |
---|---|
1 #' OBIS occurrences, global sample of 1 million records | |
2 #' | |
3 #' Simple dataset of species and location for example purposes from 2022-04-04. | |
4 #' | |
5 #' @format A data frame with 1,000,000 rows and 4 variables: | |
6 #' - `decimalLongitude`: unique x | |
7 #' - `decimalLatitude`: unique y | |
8 #' - `species`: unique species | |
9 #' - `records`: number of records based on unique values of x, y, species | |
10 #' | |
11 #' @source \url{https://obis.org/data/access} | |
12 #' @concept data | |
13 "occ_1M" | |
14 | |
15 #' OBIS occurrences, South Atlantic full regional sample | |
16 #' | |
17 #' Simple dataset of species and location for example purposes from 2022-04-04. | |
18 #' | |
19 #' @format A data frame with 1,014,006 rows and 4 variables: | |
20 #' - `decimalLongitude`: unique x | |
21 #' - `decimalLatitude`: unique y | |
22 #' - `species`: unique species | |
23 #' - `records`: number of records based on unique values of x, y, species | |
24 #' | |
25 #' @source \url{https://obis.org/data/access} | |
26 #' @concept data | |
27 "occ_SAtlantic" | |
28 | |
29 #' OBIS occurrences, Florida Keys full regional sample | |
30 #' | |
31 #' Simple dataset of species and location for example purposes from 2022-04-04. | |
32 #' | |
33 #' @format A data frame with 1,014,006 rows and 4 variables: | |
34 #' - `decimalLongitude`: unique x | |
35 #' - `decimalLatitude`: unique y | |
36 #' - `species`: unique species | |
37 #' - `records`: number of records based on unique values of x, y, species | |
38 #' | |
39 #' @source \url{https://obis.org/data/access} | |
40 #' @concept data | |
41 "occ_fk" | |
42 | |
43 #' OBIS occurrences, temporal sample for the 1960s, limited to 1M records | |
44 #' | |
45 #' Simple dataset of species and location for example purposes from 2022-04-04. | |
46 #' | |
47 #' @format A data frame with 1,014,006 rows and 4 variables: | |
48 #' - `decimalLongitude`: unique x | |
49 #' - `decimalLatitude`: unique y | |
50 #' - `species`: unique species | |
51 #' - `records`: number of records based on unique values of x, y, species | |
52 #' | |
53 #' @source \url{https://obis.org/data/access} | |
54 #' @concept data | |
55 "occ_1960s" | |
56 | |
57 #' OBIS occurrences, temporal sample for the 1970s, limited to 1M records | |
58 #' | |
59 #' Simple dataset of species and location for example purposes from 2022-04-04. | |
60 #' | |
61 #' @format A data frame with 1,014,006 rows and 4 variables: | |
62 #' - `decimalLongitude`: unique x | |
63 #' - `decimalLatitude`: unique y | |
64 #' - `species`: unique species | |
65 #' - `records`: number of records based on unique values of x, y, species | |
66 #' | |
67 #' @source \url{https://obis.org/data/access} | |
68 #' @concept data | |
69 "occ_1970s" | |
70 | |
71 #' OBIS occurrences, temporal sample for the 1980s, limited to 1M records | |
72 #' | |
73 #' Simple dataset of species and location for example purposes from 2022-04-04. | |
74 #' | |
75 #' @format A data frame with 1,014,006 rows and 4 variables: | |
76 #' - `decimalLongitude`: unique x | |
77 #' - `decimalLatitude`: unique y | |
78 #' - `species`: unique species | |
79 #' - `records`: number of records based on unique values of x, y, species | |
80 #' | |
81 #' @source \url{https://obis.org/data/access} | |
82 #' @concept data | |
83 "occ_1980s" | |
84 | |
85 #' OBIS occurrences, temporal sample for the 1990s, limited to 1M records | |
86 #' | |
87 #' Simple dataset of species and location for example purposes from 2022-04-04. | |
88 #' | |
89 #' @format A data frame with 1,014,006 rows and 4 variables: | |
90 #' - `decimalLongitude`: unique x | |
91 #' - `decimalLatitude`: unique y | |
92 #' - `species`: unique species | |
93 #' - `records`: number of records based on unique values of x, y, species | |
94 #' | |
95 #' @source \url{https://obis.org/data/access} | |
96 #' @concept data | |
97 "occ_1990s" | |
98 | |
99 #' OBIS occurrences, temporal sample for the 2000s, limited to 1M records | |
100 #' | |
101 #' Simple dataset of species and location for example purposes from 2022-04-04. | |
102 #' | |
103 #' @format A data frame with 1,014,006 rows and 4 variables: | |
104 #' - `decimalLongitude`: unique x | |
105 #' - `decimalLatitude`: unique y | |
106 #' - `species`: unique species | |
107 #' - `records`: number of records based on unique values of x, y, species | |
108 #' | |
109 #' @source \url{https://obis.org/data/access} | |
110 #' @concept data | |
111 "occ_2000s" | |
112 | |
113 #' OBIS occurrences, temporal sample for the 2010s, limited to 1M records | |
114 #' | |
115 #' Simple dataset of species and location for example purposes from 2022-04-04. | |
116 #' | |
117 #' @format A data frame with 1,014,006 rows and 4 variables: | |
118 #' - `decimalLongitude`: unique x | |
119 #' - `decimalLatitude`: unique y | |
120 #' - `species`: unique species | |
121 #' - `records`: number of records based on unique values of x, y, species | |
122 #' | |
123 #' @source \url{https://obis.org/data/access} | |
124 #' @concept data | |
125 "occ_2010s" |