Revision 14366
Added by Aaron Marcuse-Kubitza over 10 years ago
trunk/inputs/test_taxonomic_names/_scrub/TNRS.sql | ||
---|---|---|
103 | 103 |
ALTER FUNCTION "TNRS".map_taxonomic_status(taxonomic_status_verbatim text, accepted_taxon_name_no_author text) OWNER TO bien; |
104 | 104 |
|
105 | 105 |
-- |
106 |
-- Name: remove_prefix(text, text, boolean, boolean); Type: FUNCTION; Schema: TNRS; Owner: bien |
|
107 |
-- |
|
108 |
|
|
109 |
CREATE FUNCTION remove_prefix(prefix text, str text, require boolean DEFAULT true, case_sensitive boolean DEFAULT true) RETURNS text |
|
110 |
LANGUAGE sql IMMUTABLE |
|
111 |
AS $$ |
|
112 |
SELECT util.remove_prefix(prefix, str, require, case_sensitive) |
|
113 |
$$; |
|
114 |
|
|
115 |
|
|
116 |
ALTER FUNCTION "TNRS".remove_prefix(prefix text, str text, require boolean, case_sensitive boolean) OWNER TO bien; |
|
117 |
|
|
118 |
-- |
|
119 |
-- Name: FUNCTION remove_prefix(prefix text, str text, require boolean, case_sensitive boolean); Type: COMMENT; Schema: TNRS; Owner: bien |
|
120 |
-- |
|
121 |
|
|
122 |
COMMENT ON FUNCTION remove_prefix(prefix text, str text, require boolean, case_sensitive boolean) IS ' |
|
123 |
wrapper that prevents views from getting dropped when the util schema is reinstalled |
|
124 |
'; |
|
125 |
|
|
126 |
|
|
127 |
-- |
|
106 | 128 |
-- Name: taxon_match__batch_begin(); Type: FUNCTION; Schema: TNRS; Owner: bien |
107 | 129 |
-- |
108 | 130 |
|
... | ... | |
212 | 234 |
-- clear derived cols so old values won't be used in calculations |
213 | 235 |
new."[parsed_]morphospecies[_suffix]__@Brad__.morphosp@vegpath.org" = NULL; |
214 | 236 |
new."[matched_]species[_binomial]~(-Accepted_-)__@TNRS__@vegpath.org" = NULL; |
237 |
new."matched~Name[_no_author]___@TNRS__@vegpath.org" = NULL; |
|
215 | 238 |
new."[matched_]scientificName[_with_author]__@DwC__@vegpath.org" = NULL; |
216 | 239 |
new.matched_has_accepted = NULL; |
217 | 240 |
new."Accepted_family__@TNRS__@vegpath.org" = NULL; |
218 | 241 |
new."__accepted_{genus,specific_epithet}" = NULL; |
219 | 242 |
new."[accepted_]genus__@DwC__@vegpath.org" = NULL; |
220 | 243 |
new."[accepted_]specificEpithet__@DwC__@vegpath.org" = NULL; |
244 |
new."Accepted_species[_binomial]__@TNRS__@vegpath.org" = NULL; |
|
221 | 245 |
new."[accepted_]morphospecies[_binomial]__@Brad__.TNRS@vegpath.org" = NULL; |
222 | 246 |
new.__accepted_infraspecific_label = NULL; |
223 | 247 |
new."__accepted_infraspecific_{rank,epithet}" = NULL; |
... | ... | |
236 | 260 |
new."[scrubbed_]name[_no_author]~(-Accepted_-)__@TNRS__@vegpath.org" = NULL; |
237 | 261 |
new."[scrubbed_]author~(-Accepted_-)__@TNRS__@vegpath.org" = NULL; |
238 | 262 |
new."[scrubbed_]scientificName[_with_author]__@DwC__@vegpath.org" = NULL; |
239 |
new."matched~Name[_no_author]___@TNRS__@vegpath.org" = NULL; |
|
240 | 263 |
|
241 | 264 |
-- populate derived cols |
242 | 265 |
new."[parsed_]morphospecies[_suffix]__@Brad__.morphosp@vegpath.org" = (SELECT "*Unmatched_terms" FROM (SELECT new.*) new); |
243 | 266 |
new."[matched_]species[_binomial]~(-Accepted_-)__@TNRS__@vegpath.org" = (SELECT ("*Genus_matched" || ' '::text) || "*Specific_epithet_matched" FROM (SELECT new.*) new); |
244 |
new."[matched_]scientificName[_with_author]__@DwC__@vegpath.org" = (SELECT "*Name_matched" || COALESCE((' '::text || "*Name_matched_author"), ''::text) FROM (SELECT new.*) new); |
|
267 |
new."matched~Name[_no_author]___@TNRS__@vegpath.org" = (SELECT NULLIF("*Name_matched", 'No suitable matches found.'::text) FROM (SELECT new.*) new); |
|
268 |
new."[matched_]scientificName[_with_author]__@DwC__@vegpath.org" = (SELECT "matched~Name[_no_author]___@TNRS__@vegpath.org" || COALESCE((' '::text || "*Name_matched_author"), ''::text) FROM (SELECT new.*) new); |
|
245 | 269 |
new.matched_has_accepted = (SELECT "*Accepted_name" IS NOT NULL FROM (SELECT new.*) new); |
246 | 270 |
new."Accepted_family__@TNRS__@vegpath.org" = (SELECT COALESCE("*Accepted_name_family", |
247 | 271 |
CASE |
... | ... | |
255 | 279 |
ELSE NULL::text |
256 | 280 |
END) FROM (SELECT new.*) new); |
257 | 281 |
new."[accepted_]specificEpithet__@DwC__@vegpath.org" = (SELECT "__accepted_{genus,specific_epithet}"[2] FROM (SELECT new.*) new); |
282 |
new."Accepted_species[_binomial]__@TNRS__@vegpath.org" = (SELECT rtrim("*Accepted_name_species", ' '::text) FROM (SELECT new.*) new); |
|
258 | 283 |
new."[accepted_]morphospecies[_binomial]__@Brad__.TNRS@vegpath.org" = (SELECT CASE |
259 | 284 |
WHEN ("*Accepted_name_rank" = 'family'::text) THEN concat_ws(' '::text, "Accepted_family__@TNRS__@vegpath.org", "[parsed_]morphospecies[_suffix]__@Brad__.morphosp@vegpath.org") |
260 | 285 |
WHEN ("*Accepted_name_rank" = 'genus'::text) THEN concat_ws(' '::text, "[accepted_]genus__@DwC__@vegpath.org", "[parsed_]morphospecies[_suffix]__@Brad__.morphosp@vegpath.org") |
261 | 286 |
ELSE "*Accepted_name_species" |
262 | 287 |
END FROM (SELECT new.*) new); |
263 |
new.__accepted_infraspecific_label = (SELECT ltrim(NULLIF(util.remove_prefix("*Accepted_name_species", "*Accepted_name", require := true), ''::text), ' '::text) FROM (SELECT new.*) new);
|
|
288 |
new.__accepted_infraspecific_label = (SELECT ltrim(NULLIF("TNRS".remove_prefix("*Accepted_name_species", "*Accepted_name", require := true, case_sensitive := false), ''::text), ' '::text) FROM (SELECT new.*) new);
|
|
264 | 289 |
new."__accepted_infraspecific_{rank,epithet}" = (SELECT regexp_split_to_array(__accepted_infraspecific_label, ' '::text) FROM (SELECT new.*) new); |
265 | 290 |
new."[accepted_]Infraspecific_rank[_abbr]__@TNRS__@vegpath.org" = (SELECT "__accepted_infraspecific_{rank,epithet}"[1] FROM (SELECT new.*) new); |
266 | 291 |
new."[accepted_]infraspecificEpithet__@DwC__@vegpath.org" = (SELECT "__accepted_infraspecific_{rank,epithet}"[2] FROM (SELECT new.*) new); |
... | ... | |
301 | 326 |
END FROM (SELECT new.*) new); |
302 | 327 |
new."[scrubbed_]name[_no_author]~(-Accepted_-)__@TNRS__@vegpath.org" = (SELECT CASE |
303 | 328 |
WHEN matched_has_accepted THEN "*Accepted_name" |
304 |
ELSE "*Name_matched"
|
|
329 |
ELSE "matched~Name[_no_author]___@TNRS__@vegpath.org"
|
|
305 | 330 |
END FROM (SELECT new.*) new); |
306 | 331 |
new."[scrubbed_]author~(-Accepted_-)__@TNRS__@vegpath.org" = (SELECT CASE |
307 | 332 |
WHEN matched_has_accepted THEN "*Accepted_name_author" |
... | ... | |
311 | 336 |
WHEN matched_has_accepted THEN "[accepted_]scientificName[_with_author]__@DwC__@vegpath.org" |
312 | 337 |
ELSE "[matched_]scientificName[_with_author]__@DwC__@vegpath.org" |
313 | 338 |
END FROM (SELECT new.*) new); |
314 |
new."matched~Name[_no_author]___@TNRS__@vegpath.org" = (SELECT NULLIF("*Name_matched", 'No suitable matches found.'::text) FROM (SELECT new.*) new); |
|
315 | 339 |
|
316 | 340 |
RETURN new; |
317 | 341 |
END; |
... | ... | |
461 | 485 |
"[matched_]scientificName[_with_author]__@DwC__@vegpath.org" text, |
462 | 486 |
matched_has_accepted boolean, |
463 | 487 |
"Accepted_family__@TNRS__@vegpath.org" text, |
488 |
"Accepted_species[_binomial]__@TNRS__@vegpath.org" text, |
|
464 | 489 |
"__accepted_{genus,specific_epithet}" text[], |
465 | 490 |
"[accepted_]genus__@DwC__@vegpath.org" text, |
466 | 491 |
"[accepted_]specificEpithet__@DwC__@vegpath.org" text, |
... | ... | |
487 | 512 |
WHEN ("*Accepted_name_rank" = 'family'::text) THEN "*Accepted_name" |
488 | 513 |
ELSE NULL::text |
489 | 514 |
END)))), |
515 |
CONSTRAINT "Accepted_species[_binomial]__@TNRS__@vegpath.org" CHECK ((NOT ("Accepted_species[_binomial]__@TNRS__@vegpath.org" IS DISTINCT FROM rtrim("*Accepted_name_species", ' '::text)))), |
|
490 | 516 |
CONSTRAINT "[accepted_]Infraspecific_rank[_abbr]__@TNRS__@vegpath.org" CHECK ((NOT ("[accepted_]Infraspecific_rank[_abbr]__@TNRS__@vegpath.org" IS DISTINCT FROM "__accepted_infraspecific_{rank,epithet}"[1]))), |
491 | 517 |
CONSTRAINT "[accepted_]genus__@DwC__@vegpath.org" CHECK ((NOT ("[accepted_]genus__@DwC__@vegpath.org" IS DISTINCT FROM COALESCE("__accepted_{genus,specific_epithet}"[1], |
492 | 518 |
CASE |
... | ... | |
502 | 528 |
END))), |
503 | 529 |
CONSTRAINT "[accepted_]scientificName[_with_author]__@DwC__@vegpath.org" CHECK ((NOT ("[accepted_]scientificName[_with_author]__@DwC__@vegpath.org" IS DISTINCT FROM ("*Accepted_name" || COALESCE((' '::text || "*Accepted_name_author"), ''::text))))), |
504 | 530 |
CONSTRAINT "[accepted_]specificEpithet__@DwC__@vegpath.org" CHECK ((NOT ("[accepted_]specificEpithet__@DwC__@vegpath.org" IS DISTINCT FROM "__accepted_{genus,specific_epithet}"[2]))), |
505 |
CONSTRAINT "[matched_]scientificName[_with_author]__@DwC__@vegpath.org" CHECK ((NOT ("[matched_]scientificName[_with_author]__@DwC__@vegpath.org" IS DISTINCT FROM ("*Name_matched" || COALESCE((' '::text || "*Name_matched_author"), ''::text))))),
|
|
531 |
CONSTRAINT "[matched_]scientificName[_with_author]__@DwC__@vegpath.org" CHECK ((NOT ("[matched_]scientificName[_with_author]__@DwC__@vegpath.org" IS DISTINCT FROM ("matched~Name[_no_author]___@TNRS__@vegpath.org" || COALESCE((' '::text || "*Name_matched_author"), ''::text))))),
|
|
506 | 532 |
CONSTRAINT "[matched_]species[_binomial]~(-Accepted_-)__@TNRS__@vegpath.org" CHECK ((NOT ("[matched_]species[_binomial]~(-Accepted_-)__@TNRS__@vegpath.org" IS DISTINCT FROM (("*Genus_matched" || ' '::text) || "*Specific_epithet_matched")))), |
507 | 533 |
CONSTRAINT "[parsed_]morphospecies[_suffix]__@Brad__.morphosp@vegpath.org" CHECK ((NOT ("[parsed_]morphospecies[_suffix]__@Brad__.morphosp@vegpath.org" IS DISTINCT FROM "*Unmatched_terms"))), |
508 | 534 |
CONSTRAINT "[scrubbed_]Infraspecific_rank[_abbr]__@TNRS__@vegpath.org" CHECK ((NOT ("[scrubbed_]Infraspecific_rank[_abbr]__@TNRS__@vegpath.org" IS DISTINCT FROM |
... | ... | |
539 | 565 |
CONSTRAINT "[scrubbed_]name[_no_author]~(-Accepted_-)__@TNRS__@vegpath.org" CHECK ((NOT ("[scrubbed_]name[_no_author]~(-Accepted_-)__@TNRS__@vegpath.org" IS DISTINCT FROM |
540 | 566 |
CASE |
541 | 567 |
WHEN matched_has_accepted THEN "*Accepted_name" |
542 |
ELSE "*Name_matched"
|
|
568 |
ELSE "matched~Name[_no_author]___@TNRS__@vegpath.org"
|
|
543 | 569 |
END))), |
544 | 570 |
CONSTRAINT "[scrubbed_]scientificName[_with_author]__@DwC__@vegpath.org" CHECK ((NOT ("[scrubbed_]scientificName[_with_author]__@DwC__@vegpath.org" IS DISTINCT FROM |
545 | 571 |
CASE |
... | ... | |
562 | 588 |
ELSE "*Name_matched_rank" |
563 | 589 |
END))), |
564 | 590 |
CONSTRAINT "[scrubbed_]taxonomicStatus__@DwC__@vegpath.org" CHECK ((NOT ("[scrubbed_]taxonomicStatus__@DwC__@vegpath.org" IS DISTINCT FROM map_taxonomic_status("*Taxonomic_status", "*Accepted_name")))), |
565 |
CONSTRAINT __accepted_infraspecific_label CHECK ((NOT (__accepted_infraspecific_label IS DISTINCT FROM ltrim(NULLIF(util.remove_prefix("*Accepted_name_species", "*Accepted_name", require := true), ''::text), ' '::text)))),
|
|
591 |
CONSTRAINT __accepted_infraspecific_label CHECK ((NOT (__accepted_infraspecific_label IS DISTINCT FROM ltrim(NULLIF(remove_prefix("*Accepted_name_species", "*Accepted_name", require := true, case_sensitive := false), ''::text), ' '::text)))),
|
|
566 | 592 |
CONSTRAINT "__accepted_infraspecific_{rank,epithet}" CHECK ((NOT ("__accepted_infraspecific_{rank,epithet}" IS DISTINCT FROM regexp_split_to_array(__accepted_infraspecific_label, ' '::text)))), |
567 | 593 |
CONSTRAINT "__accepted_{genus,specific_epithet}" CHECK ((NOT ("__accepted_{genus,specific_epithet}" IS DISTINCT FROM regexp_split_to_array("*Accepted_name_species", ' '::text)))), |
568 | 594 |
CONSTRAINT matched_has_accepted CHECK ((NOT (matched_has_accepted IS DISTINCT FROM ("*Accepted_name" IS NOT NULL)))), |
... | ... | |
580 | 606 |
whenever columns are renamed: |
581 | 607 |
SELECT util.derived_cols_update(''"TNRS".taxon_match''); |
582 | 608 |
|
583 |
to remove columns or add columns at the end: |
|
584 |
$ rm=1 inputs/.TNRS/data.sql.run |
|
609 |
to port derived column changes to vegbiendev: |
|
610 |
SELECT util.derived_cols_export(''"TNRS".taxon_match''); |
|
611 |
# run the returned SQL on vegbiendev |
|
612 |
-- runtime: 30 min ("5564201 rows affected, 1624829 ms execution time") |
|
613 |
SELECT util.recreate_view(''"TNRS".taxon_best_match''); |
|
614 |
|
|
615 |
to add a new derived column: |
|
616 |
SELECT util.derived_col_update(((''"TNRS".taxon_match'', ''col''), $$ |
|
617 |
expr |
|
618 |
$$)); |
|
619 |
SELECT util.derived_cols_populate(''"TNRS".taxon_match''); |
|
620 |
SELECT util.recreate_view(''"TNRS".taxon_best_match''); |
|
585 | 621 |
$ make schemas/remake |
586 | 622 |
|
587 |
to add columns in the middle: |
|
623 |
to remove a column: |
|
624 |
SELECT util.recreate_view(''"TNRS".taxon_best_match''); |
|
625 |
$ make schemas/remake |
|
626 |
|
|
627 |
to move a derived column to the middle or to add a non-derived column: |
|
588 | 628 |
make the changes in inputs/.TNRS/schema.sql |
589 | 629 |
$ inputs/.TNRS/data.sql.run refresh # re-run TNRS |
590 | 630 |
SELECT util.derived_cols_update(''"TNRS".taxon_match''); |
591 | 631 |
SELECT util.derived_cols_repopulate(''"TNRS".taxon_match''); |
632 |
SELECT util.recreate_view(''"TNRS".taxon_best_match''); |
|
592 | 633 |
$ make schemas/remake |
593 | 634 |
|
594 |
to populate a new column: |
|
595 |
ALTER TABLE "TNRS".taxon_match DISABLE TRIGGER taxon_match__fill; --speeds up update |
|
596 |
UPDATE "TNRS".taxon_match SET "col" = value; |
|
597 |
-- runtime: 30 min ("5564201 rows affected, 1624829 ms execution time") |
|
598 |
CLUSTER "TNRS".taxon_match; -- ensure rows are exported in sorted order |
|
599 |
ALTER TABLE "TNRS".taxon_match ENABLE TRIGGER taxon_match__fill; |
|
600 |
VACUUM ANALYZE "TNRS".taxon_match --remove previous rows; runtime: 1.5 min ("92633 ms") |
|
601 |
|
|
602 | 635 |
to add a constraint: runtime: 3 min ("173620 ms") |
603 | 636 |
'; |
604 | 637 |
|
... | ... | |
668 | 701 |
-- |
669 | 702 |
|
670 | 703 |
COMMENT ON COLUMN taxon_match."[matched_]scientificName[_with_author]__@DwC__@vegpath.org" IS ' |
671 |
= "*Name_matched" || COALESCE(('' ''::text || "*Name_matched_author"), ''''::text)
|
|
704 |
= "matched~Name[_no_author]___@TNRS__@vegpath.org" || COALESCE(('' ''::text || "*Name_matched_author"), ''''::text)
|
|
672 | 705 |
|
673 | 706 |
derived column |
674 | 707 |
|
675 | 708 |
to modify expr: |
676 |
SELECT util.derived_col_update(((''"TNRS".taxon_match'', ''[matched_]scientificName[_with_author]__@DwC__@vegpath.org'')::util.col, $$"*Name_matched" || COALESCE(('' ''::text || "*Name_matched_author"), ''''::text)$$)::util.derived_col_def);
|
|
709 |
SELECT util.derived_col_update(((''"TNRS".taxon_match'', ''[matched_]scientificName[_with_author]__@DwC__@vegpath.org'')::util.col, $$"matched~Name[_no_author]___@TNRS__@vegpath.org" || COALESCE(('' ''::text || "*Name_matched_author"), ''''::text)$$)::util.derived_col_def);
|
|
677 | 710 |
SELECT util.derived_cols_populate(''"TNRS".taxon_match''::regclass); |
678 | 711 |
|
679 | 712 |
to rename: |
... | ... | |
732 | 765 |
|
733 | 766 |
|
734 | 767 |
-- |
768 |
-- Name: COLUMN taxon_match."Accepted_species[_binomial]__@TNRS__@vegpath.org"; Type: COMMENT; Schema: TNRS; Owner: bien |
|
769 |
-- |
|
770 |
|
|
771 |
COMMENT ON COLUMN taxon_match."Accepted_species[_binomial]__@TNRS__@vegpath.org" IS ' |
|
772 |
= rtrim("*Accepted_name_species", '' ''::text) |
|
773 |
|
|
774 |
derived column |
|
775 |
|
|
776 |
to modify expr: |
|
777 |
SELECT util.derived_col_update(((''"TNRS".taxon_match'', ''Accepted_species[_binomial]__@TNRS__@vegpath.org'')::util.col, $$rtrim("*Accepted_name_species", '' ''::text)$$)::util.derived_col_def); |
|
778 |
SELECT util.derived_cols_populate(''"TNRS".taxon_match''::regclass); |
|
779 |
|
|
780 |
to rename: |
|
781 |
# rename column |
|
782 |
# rename CHECK constraint |
|
783 |
SELECT util.derived_cols_update(''"TNRS".taxon_match''::regclass); |
|
784 |
'; |
|
785 |
|
|
786 |
|
|
787 |
-- |
|
735 | 788 |
-- Name: COLUMN taxon_match."__accepted_{genus,specific_epithet}"; Type: COMMENT; Schema: TNRS; Owner: bien |
736 | 789 |
-- |
737 | 790 |
|
... | ... | |
832 | 885 |
-- |
833 | 886 |
|
834 | 887 |
COMMENT ON COLUMN taxon_match.__accepted_infraspecific_label IS ' |
835 |
= ltrim(NULLIF(util.remove_prefix("*Accepted_name_species", "*Accepted_name", require := true), ''''::text), '' ''::text)
|
|
888 |
= ltrim(NULLIF("TNRS".remove_prefix("*Accepted_name_species", "*Accepted_name", require := true, case_sensitive := false), ''''::text), '' ''::text)
|
|
836 | 889 |
|
837 | 890 |
derived column |
838 | 891 |
|
839 | 892 |
to modify expr: |
840 |
SELECT util.derived_col_update(((''"TNRS".taxon_match'', ''__accepted_infraspecific_label'')::util.col, $$ltrim(NULLIF(util.remove_prefix("*Accepted_name_species", "*Accepted_name", require := true), ''''::text), '' ''::text)$$)::util.derived_col_def);
|
|
893 |
SELECT util.derived_col_update(((''"TNRS".taxon_match'', ''__accepted_infraspecific_label'')::util.col, $$ltrim(NULLIF("TNRS".remove_prefix("*Accepted_name_species", "*Accepted_name", require := true, case_sensitive := false), ''''::text), '' ''::text)$$)::util.derived_col_def);
|
|
841 | 894 |
SELECT util.derived_cols_populate(''"TNRS".taxon_match''::regclass); |
842 | 895 |
|
843 | 896 |
to rename: |
... | ... | |
1164 | 1217 |
COMMENT ON COLUMN taxon_match."[scrubbed_]name[_no_author]~(-Accepted_-)__@TNRS__@vegpath.org" IS ' |
1165 | 1218 |
= CASE |
1166 | 1219 |
WHEN matched_has_accepted THEN "*Accepted_name" |
1167 |
ELSE "*Name_matched"
|
|
1220 |
ELSE "matched~Name[_no_author]___@TNRS__@vegpath.org"
|
|
1168 | 1221 |
END |
1169 | 1222 |
|
1170 | 1223 |
derived column |
... | ... | |
1172 | 1225 |
to modify expr: |
1173 | 1226 |
SELECT util.derived_col_update(((''"TNRS".taxon_match'', ''[scrubbed_]name[_no_author]~(-Accepted_-)__@TNRS__@vegpath.org'')::util.col, $$CASE |
1174 | 1227 |
WHEN matched_has_accepted THEN "*Accepted_name" |
1175 |
ELSE "*Name_matched"
|
|
1228 |
ELSE "matched~Name[_no_author]___@TNRS__@vegpath.org"
|
|
1176 | 1229 |
END$$)::util.derived_col_def); |
1177 | 1230 |
SELECT util.derived_cols_populate(''"TNRS".taxon_match''::regclass); |
1178 | 1231 |
|
... | ... | |
1280 | 1333 |
taxon_match."*Accepted_name_lsid", |
1281 | 1334 |
taxon_match.is_valid_match, |
1282 | 1335 |
taxon_match.scrubbed_unique_taxon_name, |
1336 |
taxon_match."[parsed_]morphospecies[_suffix]__@Brad__.morphosp@vegpath.org", |
|
1283 | 1337 |
taxon_match."[matched_]species[_binomial]~(-Accepted_-)__@TNRS__@vegpath.org", |
1338 |
taxon_match."matched~Name[_no_author]___@TNRS__@vegpath.org", |
|
1284 | 1339 |
taxon_match."[matched_]scientificName[_with_author]__@DwC__@vegpath.org", |
1285 | 1340 |
taxon_match.matched_has_accepted, |
1341 |
taxon_match."Accepted_family__@TNRS__@vegpath.org", |
|
1286 | 1342 |
taxon_match."__accepted_{genus,specific_epithet}", |
1287 | 1343 |
taxon_match."[accepted_]genus__@DwC__@vegpath.org", |
1288 | 1344 |
taxon_match."[accepted_]specificEpithet__@DwC__@vegpath.org", |
1345 |
taxon_match."Accepted_species[_binomial]__@TNRS__@vegpath.org", |
|
1346 |
taxon_match."[accepted_]morphospecies[_binomial]__@Brad__.TNRS@vegpath.org", |
|
1289 | 1347 |
taxon_match.__accepted_infraspecific_label, |
1290 | 1348 |
taxon_match."__accepted_infraspecific_{rank,epithet}", |
1291 | 1349 |
taxon_match."[accepted_]Infraspecific_rank[_abbr]__@TNRS__@vegpath.org", |
1292 | 1350 |
taxon_match."[accepted_]infraspecificEpithet__@DwC__@vegpath.org", |
1293 | 1351 |
taxon_match."[accepted_]scientificName[_with_author]__@DwC__@vegpath.org", |
1352 |
taxon_match."[scrubbed_]taxonomicStatus__@DwC__@vegpath.org", |
|
1294 | 1353 |
taxon_match."[scrubbed_]taxonRank__@DwC__@vegpath.org", |
1295 | 1354 |
taxon_match."[scrubbed_]family~(-Accepted_-)__@TNRS__@vegpath.org", |
1296 | 1355 |
taxon_match."[scrubbed_]genus__@DwC__@vegpath.org", |
1297 | 1356 |
taxon_match."[scrubbed_]specificEpithet__@DwC__@vegpath.org", |
1298 | 1357 |
taxon_match."[scrubbed_]species[_binom]~(-Accepted_-)__@TNRS__@vegpath.org", |
1358 |
taxon_match."[scrubbed_]morphospecies[_binomial]__@Brad__.TNRS@vegpath.org", |
|
1299 | 1359 |
taxon_match."[scrubbed_]Infraspecific_rank[_abbr]__@TNRS__@vegpath.org", |
1300 | 1360 |
taxon_match."[scrubbed_]infraspecificEpithet__@DwC__@vegpath.org", |
1301 | 1361 |
taxon_match."[scrubbed_]name[_no_author]~(-Accepted_-)__@TNRS__@vegpath.org", |
... | ... | |
1364 | 1424 |
taxon_best_match."*Accepted_name_lsid", |
1365 | 1425 |
taxon_best_match.is_valid_match, |
1366 | 1426 |
taxon_best_match.scrubbed_unique_taxon_name, |
1427 |
taxon_best_match."[parsed_]morphospecies[_suffix]__@Brad__.morphosp@vegpath.org", |
|
1367 | 1428 |
taxon_best_match."[matched_]species[_binomial]~(-Accepted_-)__@TNRS__@vegpath.org", |
1429 |
taxon_best_match."matched~Name[_no_author]___@TNRS__@vegpath.org", |
|
1368 | 1430 |
taxon_best_match."[matched_]scientificName[_with_author]__@DwC__@vegpath.org", |
1369 | 1431 |
taxon_best_match.matched_has_accepted, |
1432 |
taxon_best_match."Accepted_family__@TNRS__@vegpath.org", |
|
1370 | 1433 |
taxon_best_match."__accepted_{genus,specific_epithet}", |
1371 | 1434 |
taxon_best_match."[accepted_]genus__@DwC__@vegpath.org", |
1372 | 1435 |
taxon_best_match."[accepted_]specificEpithet__@DwC__@vegpath.org", |
1436 |
taxon_best_match."Accepted_species[_binomial]__@TNRS__@vegpath.org", |
|
1437 |
taxon_best_match."[accepted_]morphospecies[_binomial]__@Brad__.TNRS@vegpath.org", |
|
1373 | 1438 |
taxon_best_match.__accepted_infraspecific_label, |
1374 | 1439 |
taxon_best_match."__accepted_infraspecific_{rank,epithet}", |
1375 | 1440 |
taxon_best_match."[accepted_]Infraspecific_rank[_abbr]__@TNRS__@vegpath.org", |
1376 | 1441 |
taxon_best_match."[accepted_]infraspecificEpithet__@DwC__@vegpath.org", |
1377 | 1442 |
taxon_best_match."[accepted_]scientificName[_with_author]__@DwC__@vegpath.org", |
1443 |
taxon_best_match."[scrubbed_]taxonomicStatus__@DwC__@vegpath.org", |
|
1378 | 1444 |
taxon_best_match."[scrubbed_]taxonRank__@DwC__@vegpath.org", |
1379 | 1445 |
taxon_best_match."[scrubbed_]family~(-Accepted_-)__@TNRS__@vegpath.org", |
1380 | 1446 |
taxon_best_match."[scrubbed_]genus__@DwC__@vegpath.org", |
1381 | 1447 |
taxon_best_match."[scrubbed_]specificEpithet__@DwC__@vegpath.org", |
1382 | 1448 |
taxon_best_match."[scrubbed_]species[_binom]~(-Accepted_-)__@TNRS__@vegpath.org", |
1449 |
taxon_best_match."[scrubbed_]morphospecies[_binomial]__@Brad__.TNRS@vegpath.org", |
|
1383 | 1450 |
taxon_best_match."[scrubbed_]Infraspecific_rank[_abbr]__@TNRS__@vegpath.org", |
1384 | 1451 |
taxon_best_match."[scrubbed_]infraspecificEpithet__@DwC__@vegpath.org", |
1385 | 1452 |
taxon_best_match."[scrubbed_]name[_no_author]~(-Accepted_-)__@TNRS__@vegpath.org", |
... | ... | |
1485 | 1552 |
"MatchedTaxon"."*Accepted_name_lsid", |
1486 | 1553 |
"MatchedTaxon".is_valid_match, |
1487 | 1554 |
"MatchedTaxon".scrubbed_unique_taxon_name, |
1555 |
"MatchedTaxon"."[parsed_]morphospecies[_suffix]__@Brad__.morphosp@vegpath.org", |
|
1488 | 1556 |
"MatchedTaxon"."[matched_]species[_binomial]~(-Accepted_-)__@TNRS__@vegpath.org", |
1557 |
"MatchedTaxon"."matched~Name[_no_author]___@TNRS__@vegpath.org", |
|
1489 | 1558 |
"MatchedTaxon"."[matched_]scientificName[_with_author]__@DwC__@vegpath.org", |
1490 | 1559 |
"MatchedTaxon".matched_has_accepted, |
1560 |
"MatchedTaxon"."Accepted_family__@TNRS__@vegpath.org", |
|
1491 | 1561 |
"MatchedTaxon"."__accepted_{genus,specific_epithet}", |
1492 | 1562 |
"MatchedTaxon"."[accepted_]genus__@DwC__@vegpath.org", |
1493 | 1563 |
"MatchedTaxon"."[accepted_]specificEpithet__@DwC__@vegpath.org", |
1564 |
"MatchedTaxon"."Accepted_species[_binomial]__@TNRS__@vegpath.org", |
|
1565 |
"MatchedTaxon"."[accepted_]morphospecies[_binomial]__@Brad__.TNRS@vegpath.org", |
|
1494 | 1566 |
"MatchedTaxon".__accepted_infraspecific_label, |
1495 | 1567 |
"MatchedTaxon"."__accepted_infraspecific_{rank,epithet}", |
1496 | 1568 |
"MatchedTaxon"."[accepted_]Infraspecific_rank[_abbr]__@TNRS__@vegpath.org", |
1497 | 1569 |
"MatchedTaxon"."[accepted_]infraspecificEpithet__@DwC__@vegpath.org", |
1498 | 1570 |
"MatchedTaxon"."[accepted_]scientificName[_with_author]__@DwC__@vegpath.org", |
1571 |
"MatchedTaxon"."[scrubbed_]taxonomicStatus__@DwC__@vegpath.org", |
|
1499 | 1572 |
"MatchedTaxon"."[scrubbed_]taxonRank__@DwC__@vegpath.org", |
1500 | 1573 |
"MatchedTaxon"."[scrubbed_]family~(-Accepted_-)__@TNRS__@vegpath.org", |
1501 | 1574 |
"MatchedTaxon"."[scrubbed_]genus__@DwC__@vegpath.org", |
1502 | 1575 |
"MatchedTaxon"."[scrubbed_]specificEpithet__@DwC__@vegpath.org", |
1503 | 1576 |
"MatchedTaxon"."[scrubbed_]species[_binom]~(-Accepted_-)__@TNRS__@vegpath.org", |
1577 |
"MatchedTaxon"."[scrubbed_]morphospecies[_binomial]__@Brad__.TNRS@vegpath.org", |
|
1504 | 1578 |
"MatchedTaxon"."[scrubbed_]Infraspecific_rank[_abbr]__@TNRS__@vegpath.org", |
1505 | 1579 |
"MatchedTaxon"."[scrubbed_]infraspecificEpithet__@DwC__@vegpath.org", |
1506 | 1580 |
"MatchedTaxon"."[scrubbed_]name[_no_author]~(-Accepted_-)__@TNRS__@vegpath.org", |
... | ... | |
1791 | 1865 |
"ValidMatchedTaxon"."*Warnings", |
1792 | 1866 |
"ValidMatchedTaxon"."*Accepted_name_lsid", |
1793 | 1867 |
"ValidMatchedTaxon".is_valid_match, |
1868 |
"ValidMatchedTaxon"."[parsed_]morphospecies[_suffix]__@Brad__.morphosp@vegpath.org", |
|
1794 | 1869 |
"ValidMatchedTaxon"."[matched_]species[_binomial]~(-Accepted_-)__@TNRS__@vegpath.org", |
1870 |
"ValidMatchedTaxon"."matched~Name[_no_author]___@TNRS__@vegpath.org", |
|
1795 | 1871 |
"ValidMatchedTaxon"."[matched_]scientificName[_with_author]__@DwC__@vegpath.org", |
1796 | 1872 |
"ValidMatchedTaxon".matched_has_accepted, |
1873 |
"ValidMatchedTaxon"."Accepted_family__@TNRS__@vegpath.org", |
|
1797 | 1874 |
"ValidMatchedTaxon"."__accepted_{genus,specific_epithet}", |
1798 | 1875 |
"ValidMatchedTaxon"."[accepted_]genus__@DwC__@vegpath.org", |
1799 | 1876 |
"ValidMatchedTaxon"."[accepted_]specificEpithet__@DwC__@vegpath.org", |
1877 |
"ValidMatchedTaxon"."Accepted_species[_binomial]__@TNRS__@vegpath.org", |
|
1878 |
"ValidMatchedTaxon"."[accepted_]morphospecies[_binomial]__@Brad__.TNRS@vegpath.org", |
|
1800 | 1879 |
"ValidMatchedTaxon".__accepted_infraspecific_label, |
1801 | 1880 |
"ValidMatchedTaxon"."__accepted_infraspecific_{rank,epithet}", |
1802 | 1881 |
"ValidMatchedTaxon"."[accepted_]Infraspecific_rank[_abbr]__@TNRS__@vegpath.org", |
1803 | 1882 |
"ValidMatchedTaxon"."[accepted_]infraspecificEpithet__@DwC__@vegpath.org", |
1804 | 1883 |
"ValidMatchedTaxon"."[accepted_]scientificName[_with_author]__@DwC__@vegpath.org", |
1884 |
"ValidMatchedTaxon"."[scrubbed_]taxonomicStatus__@DwC__@vegpath.org", |
|
1805 | 1885 |
"ValidMatchedTaxon"."[scrubbed_]taxonRank__@DwC__@vegpath.org", |
1806 | 1886 |
"ValidMatchedTaxon"."[scrubbed_]family~(-Accepted_-)__@TNRS__@vegpath.org", |
1807 | 1887 |
"ValidMatchedTaxon"."[scrubbed_]genus__@DwC__@vegpath.org", |
1808 | 1888 |
"ValidMatchedTaxon"."[scrubbed_]specificEpithet__@DwC__@vegpath.org", |
1809 | 1889 |
"ValidMatchedTaxon"."[scrubbed_]species[_binom]~(-Accepted_-)__@TNRS__@vegpath.org", |
1890 |
"ValidMatchedTaxon"."[scrubbed_]morphospecies[_binomial]__@Brad__.TNRS@vegpath.org", |
|
1810 | 1891 |
"ValidMatchedTaxon"."[scrubbed_]Infraspecific_rank[_abbr]__@TNRS__@vegpath.org", |
1811 | 1892 |
"ValidMatchedTaxon"."[scrubbed_]infraspecificEpithet__@DwC__@vegpath.org", |
1812 | 1893 |
"ValidMatchedTaxon"."[scrubbed_]name[_no_author]~(-Accepted_-)__@TNRS__@vegpath.org", |
... | ... | |
1874 | 1955 |
-- |
1875 | 1956 |
|
1876 | 1957 |
COPY batch (id, id_by_time, time_submitted, client_version) FROM stdin; |
1877 |
2014-07-25 12:11:56.765269-07 2014-07-25 12:11:56.765269-07 2014-07-25 12:11:56.765269-07 \N
|
|
1958 |
2014-07-26 21:26:21.824011-07 2014-07-26 21:26:21.824011-07 2014-07-26 21:26:21.824011-07 \N
|
|
1878 | 1959 |
\. |
1879 | 1960 |
|
1880 | 1961 |
|
... | ... | |
1898 | 1979 |
-- Data for Name: taxon_match; Type: TABLE DATA; Schema: TNRS; Owner: bien |
1899 | 1980 |
-- |
1900 | 1981 |
|
1901 |
COPY taxon_match (batch, match_num, "*Name_number", "*Name_submitted", "*Overall_score", "*Name_matched", "*Name_matched_rank", "*Name_score", "*Name_matched_author", "*Name_matched_url", "*Author_matched", "*Author_score", "*Family_matched", "*Family_score", "*Name_matched_accepted_family", "*Genus_matched", "*Genus_score", "*Specific_epithet_matched", "*Specific_epithet_score", "*Infraspecific_rank", "*Infraspecific_epithet_matched", "*Infraspecific_epithet_score", "*Infraspecific_rank_2", "*Infraspecific_epithet_2_matched", "*Infraspecific_epithet_2_score", "*Annotations", "*Unmatched_terms", "*Taxonomic_status", "*Accepted_name", "*Accepted_name_author", "*Accepted_name_rank", "*Accepted_name_url", "*Accepted_name_species", "*Accepted_name_family", "*Selected", "*Source", "*Warnings", "*Accepted_name_lsid", is_valid_match, scrubbed_unique_taxon_name, "[parsed_]morphospecies[_suffix]__@Brad__.morphosp@vegpath.org", "[matched_]species[_binomial]~(-Accepted_-)__@TNRS__@vegpath.org", "matched~Name[_no_author]___@TNRS__@vegpath.org", "[matched_]scientificName[_with_author]__@DwC__@vegpath.org", matched_has_accepted, "Accepted_family__@TNRS__@vegpath.org", "__accepted_{genus,specific_epithet}", "[accepted_]genus__@DwC__@vegpath.org", "[accepted_]specificEpithet__@DwC__@vegpath.org", "[accepted_]morphospecies[_binomial]__@Brad__.TNRS@vegpath.org", __accepted_infraspecific_label, "__accepted_infraspecific_{rank,epithet}", "[accepted_]Infraspecific_rank[_abbr]__@TNRS__@vegpath.org", "[accepted_]infraspecificEpithet__@DwC__@vegpath.org", "[accepted_]scientificName[_with_author]__@DwC__@vegpath.org", "[scrubbed_]taxonomicStatus__@DwC__@vegpath.org", "[scrubbed_]taxonRank__@DwC__@vegpath.org", "[scrubbed_]family~(-Accepted_-)__@TNRS__@vegpath.org", "[scrubbed_]genus__@DwC__@vegpath.org", "[scrubbed_]specificEpithet__@DwC__@vegpath.org", "[scrubbed_]species[_binom]~(-Accepted_-)__@TNRS__@vegpath.org", "[scrubbed_]morphospecies[_binomial]__@Brad__.TNRS@vegpath.org", "[scrubbed_]Infraspecific_rank[_abbr]__@TNRS__@vegpath.org", "[scrubbed_]infraspecificEpithet__@DwC__@vegpath.org", "[scrubbed_]name[_no_author]~(-Accepted_-)__@TNRS__@vegpath.org", "[scrubbed_]author~(-Accepted_-)__@TNRS__@vegpath.org", "[scrubbed_]scientificName[_with_author]__@DwC__@vegpath.org") FROM stdin; |
|
1902 |
2014-07-25 12:11:56.765269-07 0 0 Compositae indet. sp.1 0.900000000000000022 Compositae family 1 \N http://www.theplantlist.org/1.1/browse/A/Compositae/ \N \N Compositae 1 \N \N \N \N \N \N \N \N \N \N \N \N indet. sp.1 Accepted Compositae \N family http://www.theplantlist.org/1.1/browse/A/Compositae/ \N \N true tpl [Ambiguous match] \N t Compositae indet. sp.1 \N Compositae Compositae t Compositae \N \N \N Compositae indet. sp.1 \N \N \N \N Compositae accepted family Compositae \N \N \N Compositae indet. sp.1 \N \N Compositae \N Compositae
|
|
1903 |
2014-07-25 12:11:56.765269-07 1 0 Compositae indet. sp.1 0.900000000000000022 Compositae family 1 \N \N \N \N Compositae 1 \N \N \N \N \N \N \N \N \N \N \N \N indet. sp.1 Accepted Compositae \N family \N \N \N false tpl [Ambiguous match] \N t Compositae indet. sp.1 \N Compositae Compositae t Compositae \N \N \N Compositae indet. sp.1 \N \N \N \N Compositae accepted family Compositae \N \N \N Compositae indet. sp.1 \N \N Compositae \N Compositae
|
|
1904 |
2014-07-25 12:11:56.765269-07 2 0 Compositae indet. sp.1 0.900000000000000022 Compositae family 1 Giseke http://www.tropicos.org/Name/50255940 \N \N Compositae 1 Compositae \N \N \N \N \N \N \N \N \N \N \N indet. sp.1 Synonym Asteraceae Bercht. & J. Presl family http://www.tropicos.org/Name/50307371 \N Asteraceae false tropicos \N t Asteraceae Bercht. & J. Presl indet. sp.1 \N Compositae Compositae Giseke t Asteraceae \N \N \N Asteraceae indet. sp.1 \N \N \N \N Asteraceae Bercht. & J. Presl accepted family Asteraceae \N \N \N Asteraceae indet. sp.1 \N \N Asteraceae Bercht. & J. Presl Asteraceae Bercht. & J. Presl
|
|
1905 |
2014-07-25 12:11:56.765269-07 3 1 Fabaceae Boyle#6500 0.839999999999999969 Fagaceae family 0.939999999999999947 \N ;http://plants.usda.gov/java/nameSearch \N \N Fagaceae 0.880000000000000004 \N \N \N \N \N \N \N \N \N \N \N \N Boyle#6500 Accepted Fagaceae \N family ;http://plants.usda.gov/java/nameSearch \N \N true tpl;usda \N f Fagaceae Boyle#6500 \N Fagaceae Fagaceae t Fagaceae \N \N \N Fagaceae Boyle#6500 \N \N \N \N Fagaceae accepted family Fagaceae \N \N \N Fagaceae Boyle#6500 \N \N Fagaceae \N Fagaceae
|
|
1906 |
2014-07-25 12:11:56.765269-07 4 1 Fabaceae Boyle#6500 0.900000000000000022 Fabaceae family 1 Lindl. http://www.tropicos.org/Name/42000184 \N \N Fabaceae 1 Fabaceae \N \N \N \N \N \N \N \N \N \N \N Boyle#6500 Accepted Fabaceae Lindl. family http://www.tropicos.org/Name/42000184 \N Fabaceae false tropicos \N t Fabaceae Lindl. Boyle#6500 \N Fabaceae Fabaceae Lindl. t Fabaceae \N \N \N Fabaceae Boyle#6500 \N \N \N \N Fabaceae Lindl. accepted family Fabaceae \N \N \N Fabaceae Boyle#6500 \N \N Fabaceae Lindl. Fabaceae Lindl.
|
|
1907 |
2014-07-25 12:11:56.765269-07 5 1 Fabaceae Boyle#6500 0.839999999999999969 Fagaceae family 0.939999999999999947 Dumort. http://www.tropicos.org/Name/42000062 \N \N Fagaceae 0.880000000000000004 Fagaceae \N \N \N \N \N \N \N \N \N \N \N Boyle#6500 Accepted Fagaceae Dumort. family http://www.tropicos.org/Name/42000062 \N Fagaceae false tropicos \N f Fagaceae Dumort. Boyle#6500 \N Fagaceae Fagaceae Dumort. t Fagaceae \N \N \N Fagaceae Boyle#6500 \N \N \N \N Fagaceae Dumort. accepted family Fagaceae \N \N \N Fagaceae Boyle#6500 \N \N Fagaceae Dumort. Fagaceae Dumort.
|
|
1908 |
2014-07-25 12:11:56.765269-07 6 1 Fabaceae Boyle#6500 0.67000000000000004 Ficaceae family 0.770000000000000018 Bercht. & J. Presl http://www.tropicos.org/Name/100353631 \N \N Ficaceae 0.75 Ficaceae \N \N \N \N \N \N \N \N \N \N \N Boyle#6500 No opinion \N \N \N \N \N \N false tropicos \N f Ficaceae Bercht. & J. Presl Boyle#6500 \N Ficaceae Ficaceae Bercht. & J. Presl f \N \N \N \N \N \N \N \N \N \N no opinion family Ficaceae \N \N \N Ficaceae Boyle#6500 \N \N Ficaceae Bercht. & J. Presl Ficaceae Bercht. & J. Presl
|
|
1909 |
2014-07-25 12:11:56.765269-07 7 1 Fabaceae Boyle#6500 0.67000000000000004 Fucaceae family 0.770000000000000018 \N http://www.tropicos.org/Name/100371040 \N \N Fucaceae 0.75 Fucaceae \N \N \N \N \N \N \N \N \N \N \N Boyle#6500 No opinion \N \N \N \N \N \N false tropicos \N f Fucaceae Boyle#6500 \N Fucaceae Fucaceae f \N \N \N \N \N \N \N \N \N \N no opinion family Fucaceae \N \N \N Fucaceae Boyle#6500 \N \N Fucaceae \N Fucaceae
|
|
1910 |
2014-07-25 12:11:56.765269-07 8 1 Fabaceae Boyle#6500 0.900000000000000022 Fabaceae family 1 \N http://plants.usda.gov/java/nameSearch \N \N Fabaceae 1 \N \N \N \N \N \N \N \N \N \N \N \N Boyle#6500 Accepted Fabaceae \N family http://plants.usda.gov/java/nameSearch \N \N false usda \N t Fabaceae Boyle#6500 \N Fabaceae Fabaceae t Fabaceae \N \N \N Fabaceae Boyle#6500 \N \N \N \N Fabaceae accepted family Fabaceae \N \N \N Fabaceae Boyle#6500 \N \N Fabaceae \N Fabaceae
|
|
1911 |
2014-07-25 12:11:56.765269-07 9 2 Fabaceae Inga "fuzzy leaf" 0.900000000000000022 Inga genus 1 \N http://www.theplantlist.org/1.1/browse/A/Leguminosae/Inga/;http://plants.usda.gov/java/profile?symbol=INGA \N \N Fabaceae 1 Fabaceae Inga 1 \N \N \N \N \N \N \N \N \N "fuzzy leaf" Accepted Inga \N genus http://www.theplantlist.org/1.1/browse/A/Leguminosae/Inga/;http://plants.usda.gov/java/profile?symbol=INGA \N Fabaceae true tpl;usda \N t Fabaceae Inga "fuzzy leaf" \N Inga Inga t Fabaceae \N Inga \N Inga "fuzzy leaf" \N \N \N \N Inga accepted genus Fabaceae Inga \N \N Inga "fuzzy leaf" \N \N Inga \N Inga
|
|
1912 |
2014-07-25 12:11:56.765269-07 10 2 Fabaceae Inga "fuzzy leaf" 0.900000000000000022 Inga genus 1 Mill. http://www.tropicos.org/Name/40031040 \N \N Fabaceae 1 Fabaceae Inga 1 \N \N \N \N \N \N \N \N \N "fuzzy leaf" Accepted Inga Mill. genus http://www.tropicos.org/Name/40031040 \N Fabaceae false tropicos \N t Fabaceae Inga Mill. "fuzzy leaf" \N Inga Inga Mill. t Fabaceae \N Inga \N Inga "fuzzy leaf" \N \N \N \N Inga Mill. accepted genus Fabaceae Inga \N \N Inga "fuzzy leaf" \N \N Inga Mill. Inga Mill.
|
|
1913 |
2014-07-25 12:11:56.765269-07 11 2 Fabaceae Inga "fuzzy leaf" 0.900000000000000022 Inga genus 1 Scop. http://www.tropicos.org/Name/50215121 \N \N Fabaceae 1 Fabaceae Inga 1 \N \N \N \N \N \N \N \N \N "fuzzy leaf" Illegitimate \N \N \N \N \N \N false tropicos \N t Fabaceae Inga Scop. "fuzzy leaf" \N Inga Inga Scop. f \N \N \N \N \N \N \N \N \N \N illegitimate genus Fabaceae Inga \N \N Inga "fuzzy leaf" \N \N Inga Scop. Inga Scop.
|
|
1914 |
2014-07-25 12:11:56.765269-07 12 3 Fabaceae Inga sp.3 0.900000000000000022 Inga genus 1 \N http://www.theplantlist.org/1.1/browse/A/Leguminosae/Inga/;http://plants.usda.gov/java/profile?symbol=INGA \N \N Fabaceae 1 Fabaceae Inga 1 \N \N \N \N \N \N \N \N \N sp.3 Accepted Inga \N genus http://www.theplantlist.org/1.1/browse/A/Leguminosae/Inga/;http://plants.usda.gov/java/profile?symbol=INGA \N Fabaceae true tpl;usda \N t Fabaceae Inga sp.3 \N Inga Inga t Fabaceae \N Inga \N Inga sp.3 \N \N \N \N Inga accepted genus Fabaceae Inga \N \N Inga sp.3 \N \N Inga \N Inga
|
|
1915 |
2014-07-25 12:11:56.765269-07 13 3 Fabaceae Inga sp.3 0.900000000000000022 Inga genus 1 Mill. http://www.tropicos.org/Name/40031040 \N \N Fabaceae 1 Fabaceae Inga 1 \N \N \N \N \N \N \N \N \N sp.3 Accepted Inga Mill. genus http://www.tropicos.org/Name/40031040 \N Fabaceae false tropicos \N t Fabaceae Inga Mill. sp.3 \N Inga Inga Mill. t Fabaceae \N Inga \N Inga sp.3 \N \N \N \N Inga Mill. accepted genus Fabaceae Inga \N \N Inga sp.3 \N \N Inga Mill. Inga Mill.
|
|
1916 |
2014-07-25 12:11:56.765269-07 14 3 Fabaceae Inga sp.3 0.900000000000000022 Inga genus 1 Scop. http://www.tropicos.org/Name/50215121 \N \N Fabaceae 1 Fabaceae Inga 1 \N \N \N \N \N \N \N \N \N sp.3 Illegitimate \N \N \N \N \N \N false tropicos \N t Fabaceae Inga Scop. sp.3 \N Inga Inga Scop. f \N \N \N \N \N \N \N \N \N \N illegitimate genus Fabaceae Inga \N \N Inga sp.3 \N \N Inga Scop. Inga Scop.
|
|
1917 |
2014-07-25 12:11:56.765269-07 15 4 Fabaceae unknown #2 0.839999999999999969 Fagaceae family 0.939999999999999947 \N ;http://plants.usda.gov/java/nameSearch \N \N Fagaceae 0.880000000000000004 \N \N \N \N \N \N \N \N \N \N \N \N unknown #2 Accepted Fagaceae \N family ;http://plants.usda.gov/java/nameSearch \N \N true tpl;usda \N f Fagaceae unknown #2 \N Fagaceae Fagaceae t Fagaceae \N \N \N Fagaceae unknown #2 \N \N \N \N Fagaceae accepted family Fagaceae \N \N \N Fagaceae unknown #2 \N \N Fagaceae \N Fagaceae
|
|
1918 |
2014-07-25 12:11:56.765269-07 16 4 Fabaceae unknown #2 0.900000000000000022 Fabaceae family 1 Lindl. http://www.tropicos.org/Name/42000184 \N \N Fabaceae 1 Fabaceae \N \N \N \N \N \N \N \N \N \N \N unknown #2 Accepted Fabaceae Lindl. family http://www.tropicos.org/Name/42000184 \N Fabaceae false tropicos \N t Fabaceae Lindl. unknown #2 \N Fabaceae Fabaceae Lindl. t Fabaceae \N \N \N Fabaceae unknown #2 \N \N \N \N Fabaceae Lindl. accepted family Fabaceae \N \N \N Fabaceae unknown #2 \N \N Fabaceae Lindl. Fabaceae Lindl.
|
|
1919 |
2014-07-25 12:11:56.765269-07 17 4 Fabaceae unknown #2 0.839999999999999969 Fagaceae family 0.939999999999999947 Dumort. http://www.tropicos.org/Name/42000062 \N \N Fagaceae 0.880000000000000004 Fagaceae \N \N \N \N \N \N \N \N \N \N \N unknown #2 Accepted Fagaceae Dumort. family http://www.tropicos.org/Name/42000062 \N Fagaceae false tropicos \N f Fagaceae Dumort. unknown #2 \N Fagaceae Fagaceae Dumort. t Fagaceae \N \N \N Fagaceae unknown #2 \N \N \N \N Fagaceae Dumort. accepted family Fagaceae \N \N \N Fagaceae unknown #2 \N \N Fagaceae Dumort. Fagaceae Dumort.
|
|
1920 |
2014-07-25 12:11:56.765269-07 18 4 Fabaceae unknown #2 0.67000000000000004 Ficaceae family 0.770000000000000018 Bercht. & J. Presl http://www.tropicos.org/Name/100353631 \N \N Ficaceae 0.75 Ficaceae \N \N \N \N \N \N \N \N \N \N \N unknown #2 No opinion \N \N \N \N \N \N false tropicos \N f Ficaceae Bercht. & J. Presl unknown #2 \N Ficaceae Ficaceae Bercht. & J. Presl f \N \N \N \N \N \N \N \N \N \N no opinion family Ficaceae \N \N \N Ficaceae unknown #2 \N \N Ficaceae Bercht. & J. Presl Ficaceae Bercht. & J. Presl
|
|
1921 |
2014-07-25 12:11:56.765269-07 19 4 Fabaceae unknown #2 0.67000000000000004 Fucaceae family 0.770000000000000018 \N http://www.tropicos.org/Name/100371040 \N \N Fucaceae 0.75 Fucaceae \N \N \N \N \N \N \N \N \N \N \N unknown #2 No opinion \N \N \N \N \N \N false tropicos \N f Fucaceae unknown #2 \N Fucaceae Fucaceae f \N \N \N \N \N \N \N \N \N \N no opinion family Fucaceae \N \N \N Fucaceae unknown #2 \N \N Fucaceae \N Fucaceae
|
|
1922 |
2014-07-25 12:11:56.765269-07 20 4 Fabaceae unknown #2 0.900000000000000022 Fabaceae family 1 \N http://plants.usda.gov/java/nameSearch \N \N Fabaceae 1 \N \N \N \N \N \N \N \N \N \N \N \N unknown #2 Accepted Fabaceae \N family http://plants.usda.gov/java/nameSearch \N \N false usda \N t Fabaceae unknown #2 \N Fabaceae Fabaceae t Fabaceae \N \N \N Fabaceae unknown #2 \N \N \N \N Fabaceae accepted family Fabaceae \N \N \N Fabaceae unknown #2 \N \N Fabaceae \N Fabaceae
|
|
1923 |
2014-07-25 12:11:56.765269-07 21 5 Fam_indet. Boyle#6501 0 No suitable matches found. \N 0 \N \N \N 0 \N 0 \N \N 0 \N 0 \N \N 0 \N \N 0 \N \N \N \N \N \N \N \N \N true \N \N f \N \N \N \N No suitable matches found. f \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N No suitable matches found. \N No suitable matches found.
|
|
1924 |
2014-07-25 12:11:56.765269-07 22 6 Poa annua 1 Poa annua species 1 L. http://www.theplantlist.org/tpl1.1/record/kew-435194;http://www.tropicos.org/Name/25509881;http://plants.usda.gov/java/profile?symbol=POAN \N \N \N \N Poaceae Poa 1 annua 1 \N \N \N \N \N \N \N \N Accepted Poa annua L. species http://www.theplantlist.org/tpl1.1/record/kew-435194;http://www.tropicos.org/Name/25509881;http://plants.usda.gov/java/profile?symbol=POAN Poa annua Poaceae true tpl;tropicos;usda \N t Poaceae Poa annua L. \N Poa annua Poa annua Poa annua L. t Poaceae {Poa,annua} Poa annua Poa annua \N \N \N \N Poa annua L. accepted species Poaceae Poa annua Poa annua Poa annua \N annua Poa annua L. Poa annua L.
|
|
1925 |
2014-07-25 12:11:56.765269-07 23 6 Poa annua 1 Poa annua species 1 Cham. & Schltdl. http://www.theplantlist.org/tpl1.1/record/kew-435195 \N \N \N \N Poaceae Poa 1 annua 1 \N \N \N \N \N \N \N \N Synonym Poa infirma Kunth species http://www.theplantlist.org/tpl1.1/record/kew-436189 Poa infirma Poaceae false tpl \N t Poaceae Poa infirma Kunth \N Poa annua Poa annua Poa annua Cham. & Schltdl. t Poaceae {Poa,infirma} Poa infirma Poa infirma \N \N \N \N Poa infirma Kunth accepted species Poaceae Poa infirma Poa infirma Poa infirma \N infirma Poa infirma Kunth Poa infirma Kunth
|
|
1926 |
2014-07-25 12:11:56.765269-07 24 7 Poa annua L. 1 Poa annua species 1 L. http://www.theplantlist.org/tpl1.1/record/kew-435194;http://www.tropicos.org/Name/25509881;http://plants.usda.gov/java/profile?symbol=POAN L. 1 \N \N Poaceae Poa 1 annua 1 \N \N \N \N \N \N \N \N Accepted Poa annua L. species http://www.theplantlist.org/tpl1.1/record/kew-435194;http://www.tropicos.org/Name/25509881;http://plants.usda.gov/java/profile?symbol=POAN Poa annua Poaceae true tpl;tropicos;usda \N t Poaceae Poa annua L. \N Poa annua Poa annua Poa annua L. t Poaceae {Poa,annua} Poa annua Poa annua \N \N \N \N Poa annua L. accepted species Poaceae Poa annua Poa annua Poa annua \N annua Poa annua L. Poa annua L.
|
|
1927 |
2014-07-25 12:11:56.765269-07 25 7 Poa annua L. 0.800000000000000044 Poa annua species 1 Cham. & Schltdl. http://www.theplantlist.org/tpl1.1/record/kew-435195 Cham. & Schltdl. 0 \N \N Poaceae Poa 1 annua 1 \N \N \N \N \N \N \N \N Synonym Poa infirma Kunth species http://www.theplantlist.org/tpl1.1/record/kew-436189 Poa infirma Poaceae false tpl \N t Poaceae Poa infirma Kunth \N Poa annua Poa annua Poa annua Cham. & Schltdl. t Poaceae {Poa,infirma} Poa infirma Poa infirma \N \N \N \N Poa infirma Kunth accepted species Poaceae Poa infirma Poa infirma Poa infirma \N infirma Poa infirma Kunth Poa infirma Kunth
|
|
1928 |
2014-07-25 12:11:56.765269-07 26 8 Poa annua fo. lanuginosa 1 Poa annua fo. lanuginosa fo. 1 Sennen http://www.theplantlist.org/tpl1.1/record/tro-50267771 \N \N \N \N \N Poa 1 annua 1 fo. lanuginosa 1 \N \N \N \N \N Synonym Poa annua L. species http://www.theplantlist.org/tpl1.1/record/kew-435194 Poa annua Poaceae true tpl \N t Poaceae Poa annua L. \N Poa annua Poa annua fo. lanuginosa Poa annua fo. lanuginosa Sennen t Poaceae {Poa,annua} Poa annua Poa annua \N \N \N \N Poa annua L. accepted species Poaceae Poa annua Poa annua Poa annua \N annua Poa annua L. Poa annua L.
|
|
1929 |
2014-07-25 12:11:56.765269-07 27 8 Poa annua fo. lanuginosa 1 Poa annua fo. lanuginosa forma 1 Sennen http://www.tropicos.org/Name/50267771 \N \N \N \N Poaceae Poa 1 annua 1 fo. lanuginosa 1 \N \N \N \N \N Synonym Poa annua var. annua \N variety http://www.tropicos.org/Name/25517736 Poa annua Poaceae false tropicos \N t Poaceae Poa annua var. annua \N Poa annua Poa annua fo. lanuginosa Poa annua fo. lanuginosa Sennen t Poaceae {Poa,annua} Poa annua Poa annua var. annua {var.,annua} var. annua Poa annua var. annua accepted variety Poaceae Poa annua Poa annua Poa annua var. annua Poa annua var. annua \N Poa annua var. annua
|
|
1930 |
2014-07-25 12:11:56.765269-07 28 9 Poa annua ssp. exilis 1 Poa annua subsp. exilis subspecies 1 (Tomm. ex Freyn) Asch. & Graebn. http://www.tropicos.org/Name/50063800 \N \N \N \N Poaceae Poa 1 annua 1 subsp. exilis 1 \N \N \N \N \N Synonym Poa infirma Kunth species http://www.tropicos.org/Name/25514158 Poa infirma Poaceae true tropicos \N t Poaceae Poa infirma Kunth \N Poa annua Poa annua subsp. exilis Poa annua subsp. exilis (Tomm. ex Freyn) Asch. & Graebn. t Poaceae {Poa,infirma} Poa infirma Poa infirma \N \N \N \N Poa infirma Kunth accepted species Poaceae Poa infirma Poa infirma Poa infirma \N infirma Poa infirma Kunth Poa infirma Kunth
|
|
1931 |
2014-07-25 12:11:56.765269-07 29 9 Poa annua ssp. exilis 0.959999999999999964 Poa annua var. exilis variety 0.959999999999999964 Tomm. ex Freyn http://www.tropicos.org/Name/25547854 \N \N \N \N Poaceae Poa 1 annua 1 var. exilis 0.699999999999999956 \N \N \N \N \N Synonym Poa infirma Kunth species http://www.tropicos.org/Name/25514158 Poa infirma Poaceae false tropicos \N t Poaceae Poa infirma Kunth \N Poa annua Poa annua var. exilis Poa annua var. exilis Tomm. ex Freyn t Poaceae {Poa,infirma} Poa infirma Poa infirma \N \N \N \N Poa infirma Kunth accepted species Poaceae Poa infirma Poa infirma Poa infirma \N infirma Poa infirma Kunth Poa infirma Kunth
|
|
1932 |
2014-07-25 12:11:56.765269-07 30 10 Poa annua subsp. exilis 1 Poa annua subsp. exilis subsp. 1 (Tomm. ex Freyn.) Asch. & Graebn. http://www.theplantlist.org/tpl1.1/record/kew-435202 \N \N \N \N \N Poa 1 annua 1 subsp. exilis 1 \N \N \N \N \N Synonym Poa infirma Kunth species http://www.theplantlist.org/tpl1.1/record/kew-436189 Poa infirma Poaceae true tpl \N t Poaceae Poa infirma Kunth \N Poa annua Poa annua subsp. exilis Poa annua subsp. exilis (Tomm. ex Freyn.) Asch. & Graebn. t Poaceae {Poa,infirma} Poa infirma Poa infirma \N \N \N \N Poa infirma Kunth accepted species Poaceae Poa infirma Poa infirma Poa infirma \N infirma Poa infirma Kunth Poa infirma Kunth
|
|
1933 |
2014-07-25 12:11:56.765269-07 31 10 Poa annua subsp. exilis 1 Poa annua subsp. exilis subspecies 1 (Tomm. ex Freyn) Asch. & Graebn. http://www.tropicos.org/Name/50063800 \N \N \N \N Poaceae Poa 1 annua 1 subsp. exilis 1 \N \N \N \N \N Synonym Poa infirma Kunth species http://www.tropicos.org/Name/25514158 Poa infirma Poaceae false tropicos \N t Poaceae Poa infirma Kunth \N Poa annua Poa annua subsp. exilis Poa annua subsp. exilis (Tomm. ex Freyn) Asch. & Graebn. t Poaceae {Poa,infirma} Poa infirma Poa infirma \N \N \N \N Poa infirma Kunth accepted species Poaceae Poa infirma Poa infirma Poa infirma \N infirma Poa infirma Kunth Poa infirma Kunth
|
|
1934 |
2014-07-25 12:11:56.765269-07 32 11 Poa annua subvar. minima 1 Poa annua subvar. minima subvariety 1 (Schur) Asch. & Graebn. http://www.tropicos.org/Name/50158097 \N \N \N \N Poaceae Poa 1 annua 1 subvar. minima 1 \N \N \N \N \N Accepted Poa annua subvar. minima (Schur) Asch. & Graebn. subvariety http://www.tropicos.org/Name/50158097 Poa annua Poaceae true tropicos \N t Poaceae Poa annua subvar. minima (Schur) Asch. & Graebn. \N Poa annua Poa annua subvar. minima Poa annua subvar. minima (Schur) Asch. & Graebn. t Poaceae {Poa,annua} Poa annua Poa annua subvar. minima {subvar.,minima} subvar. minima Poa annua subvar. minima (Schur) Asch. & Graebn. accepted subvariety Poaceae Poa annua Poa annua Poa annua subvar. annua Poa annua subvar. minima (Schur) Asch. & Graebn. Poa annua subvar. minima (Schur) Asch. & Graebn.
|
|
1935 |
2014-07-25 12:11:56.765269-07 33 12 Poa annua var. eriolepis 1 Poa annua var. eriolepis var. 1 ̉ۡ.Desv. http://www.theplantlist.org/tpl1.1/record/kew-435206 \N \N \N \N \N Poa 1 annua 1 var. eriolepis 1 \N \N \N \N \N Synonym Poa annua L. species http://www.theplantlist.org/tpl1.1/record/kew-435194 Poa annua Poaceae true tpl \N t Poaceae Poa annua L. \N Poa annua Poa annua var. eriolepis Poa annua var. eriolepis ̉ۡ.Desv. t Poaceae {Poa,annua} Poa annua Poa annua \N \N \N \N Poa annua L. accepted species Poaceae Poa annua Poa annua Poa annua \N annua Poa annua L. Poa annua L.
|
|
1936 |
2014-07-25 12:11:56.765269-07 34 12 Poa annua var. eriolepis 1 Poa annua var. eriolepis variety 1 E. Desv. http://www.tropicos.org/Name/50119145 \N \N \N \N Poaceae Poa 1 annua 1 var. eriolepis 1 \N \N \N \N \N Synonym Poa annua L. species http://www.tropicos.org/Name/25509881 Poa annua Poaceae false tropicos \N t Poaceae Poa annua L. \N Poa annua Poa annua var. eriolepis Poa annua var. eriolepis E. Desv. t Poaceae {Poa,annua} Poa annua Poa annua \N \N \N \N Poa annua L. accepted species Poaceae Poa annua Poa annua Poa annua \N annua Poa annua L. Poa annua L.
|
|
1937 |
2014-07-25 12:11:56.765269-07 35 13 Silene scouleri Hook. subsp. pringlei (S. Watson) C.L. Hitchc. & Maguire var. grisea C.L. Hitchc. & Maguire 0.770000000000000018 Silene scouleri subsp. pringlei subsp. 0.770000000000000018 (S. Watson) C.L. Hitchc. & Maguire http://www.theplantlist.org/tpl1.1/record/tro-6303627 \N \N \N \N Caryophyllaceae Silene 1 scouleri 1 subsp. pringlei 1 \N \N \N \N var. grisea Accepted Silene scouleri subsp. pringlei (S. Watson) C.L. Hitchc. & Maguire subsp. http://www.theplantlist.org/tpl1.1/record/tro-6303627 Silene scouleri Caryophyllaceae true tpl [Partial match] \N t Caryophyllaceae Silene scouleri subsp. pringlei (S. Watson) C.L. Hitchc. & Maguire var. grisea Silene scouleri Silene scouleri subsp. pringlei Silene scouleri subsp. pringlei (S. Watson) C.L. Hitchc. & Maguire t Caryophyllaceae {Silene,scouleri} Silene scouleri Silene scouleri subsp. pringlei {subsp.,pringlei} subsp. pringlei Silene scouleri subsp. pringlei (S. Watson) C.L. Hitchc. & Maguire accepted subsp. Caryophyllaceae Silene scouleri Silene scouleri Silene scouleri subsp. scouleri Silene scouleri subsp. pringlei (S. Watson) C.L. Hitchc. & Maguire Silene scouleri subsp. pringlei (S. Watson) C.L. Hitchc. & Maguire
|
|
1938 |
2014-07-25 12:11:56.765269-07 36 13 Silene scouleri Hook. subsp. pringlei (S. Watson) C.L. Hitchc. & Maguire var. grisea C.L. Hitchc. & Maguire 0.770000000000000018 Silene scouleri subsp. pringlei subspecies 0.770000000000000018 (S. Watson) C.L. Hitchc. & Maguire http://www.tropicos.org/Name/6303627 \N \N \N \N Caryophyllaceae Silene 1 scouleri 1 subsp. pringlei 1 \N \N \N \N var. grisea Accepted Silene scouleri subsp. pringlei (S. Watson) C.L. Hitchc. & Maguire subspecies http://www.tropicos.org/Name/6303627 Silene scouleri Caryophyllaceae false tropicos [Partial match] \N t Caryophyllaceae Silene scouleri subsp. pringlei (S. Watson) C.L. Hitchc. & Maguire var. grisea Silene scouleri Silene scouleri subsp. pringlei Silene scouleri subsp. pringlei (S. Watson) C.L. Hitchc. & Maguire t Caryophyllaceae {Silene,scouleri} Silene scouleri Silene scouleri subsp. pringlei {subsp.,pringlei} subsp. pringlei Silene scouleri subsp. pringlei (S. Watson) C.L. Hitchc. & Maguire accepted subspecies Caryophyllaceae Silene scouleri Silene scouleri Silene scouleri subsp. scouleri Silene scouleri subsp. pringlei (S. Watson) C.L. Hitchc. & Maguire Silene scouleri subsp. pringlei (S. Watson) C.L. Hitchc. & Maguire
|
|
1939 |
2014-07-25 12:11:56.765269-07 37 13 Silene scouleri Hook. subsp. pringlei (S. Watson) C.L. Hitchc. & Maguire var. grisea C.L. Hitchc. & Maguire 0.770000000000000018 Silene scouleri subsp. pringlei subspecies 0.770000000000000018 (S. Watson) C.L. Hitchc. & Maguire http://plants.usda.gov/java/profile?symbol=SISCP \N \N \N \N Caryophyllaceae Silene 1 scouleri 1 subsp. pringlei 1 \N \N \N \N var. grisea Accepted Silene scouleri ssp. pringlei (S. Watson) C.L. Hitchc. & Maguire subspecies http://plants.usda.gov/java/profile?symbol=SISCP Silene scouleri Caryophyllaceae false usda [Partial match] \N t Caryophyllaceae Silene scouleri ssp. pringlei (S. Watson) C.L. Hitchc. & Maguire var. grisea Silene scouleri Silene scouleri subsp. pringlei Silene scouleri subsp. pringlei (S. Watson) C.L. Hitchc. & Maguire t Caryophyllaceae {Silene,scouleri} Silene scouleri Silene scouleri ssp. pringlei {ssp.,pringlei} ssp. pringlei Silene scouleri ssp. pringlei (S. Watson) C.L. Hitchc. & Maguire accepted subspecies Caryophyllaceae Silene scouleri Silene scouleri Silene scouleri ssp. scouleri Silene scouleri ssp. pringlei (S. Watson) C.L. Hitchc. & Maguire Silene scouleri ssp. pringlei (S. Watson) C.L. Hitchc. & Maguire
|
|
1940 |
2014-07-25 12:11:56.765269-07 38 14 Silene scouleri subsp. pringlei var. grisea C.L. Hitchc. & Maguire 0.770000000000000018 Silene scouleri subsp. pringlei subsp. 0.770000000000000018 (S. Watson) C.L. Hitchc. & Maguire http://www.theplantlist.org/tpl1.1/record/tro-6303627 \N \N \N \N Caryophyllaceae Silene 1 scouleri 1 subsp. pringlei 1 \N \N \N \N var. grisea Accepted Silene scouleri subsp. pringlei (S. Watson) C.L. Hitchc. & Maguire subsp. http://www.theplantlist.org/tpl1.1/record/tro-6303627 Silene scouleri Caryophyllaceae true tpl [Partial match] \N t Caryophyllaceae Silene scouleri subsp. pringlei (S. Watson) C.L. Hitchc. & Maguire var. grisea Silene scouleri Silene scouleri subsp. pringlei Silene scouleri subsp. pringlei (S. Watson) C.L. Hitchc. & Maguire t Caryophyllaceae {Silene,scouleri} Silene scouleri Silene scouleri subsp. pringlei {subsp.,pringlei} subsp. pringlei Silene scouleri subsp. pringlei (S. Watson) C.L. Hitchc. & Maguire accepted subsp. Caryophyllaceae Silene scouleri Silene scouleri Silene scouleri subsp. scouleri Silene scouleri subsp. pringlei (S. Watson) C.L. Hitchc. & Maguire Silene scouleri subsp. pringlei (S. Watson) C.L. Hitchc. & Maguire
|
|
1941 |
2014-07-25 12:11:56.765269-07 39 14 Silene scouleri subsp. pringlei var. grisea C.L. Hitchc. & Maguire 0.770000000000000018 Silene scouleri subsp. pringlei subspecies 0.770000000000000018 (S. Watson) C.L. Hitchc. & Maguire http://www.tropicos.org/Name/6303627 \N \N \N \N Caryophyllaceae Silene 1 scouleri 1 subsp. pringlei 1 \N \N \N \N var. grisea Accepted Silene scouleri subsp. pringlei (S. Watson) C.L. Hitchc. & Maguire subspecies http://www.tropicos.org/Name/6303627 Silene scouleri Caryophyllaceae false tropicos [Partial match] \N t Caryophyllaceae Silene scouleri subsp. pringlei (S. Watson) C.L. Hitchc. & Maguire var. grisea Silene scouleri Silene scouleri subsp. pringlei Silene scouleri subsp. pringlei (S. Watson) C.L. Hitchc. & Maguire t Caryophyllaceae {Silene,scouleri} Silene scouleri Silene scouleri subsp. pringlei {subsp.,pringlei} subsp. pringlei Silene scouleri subsp. pringlei (S. Watson) C.L. Hitchc. & Maguire accepted subspecies Caryophyllaceae Silene scouleri Silene scouleri Silene scouleri subsp. scouleri Silene scouleri subsp. pringlei (S. Watson) C.L. Hitchc. & Maguire Silene scouleri subsp. pringlei (S. Watson) C.L. Hitchc. & Maguire
|
|
1942 |
2014-07-25 12:11:56.765269-07 40 14 Silene scouleri subsp. pringlei var. grisea C.L. Hitchc. & Maguire 0.770000000000000018 Silene scouleri subsp. pringlei subspecies 0.770000000000000018 (S. Watson) C.L. Hitchc. & Maguire http://plants.usda.gov/java/profile?symbol=SISCP \N \N \N \N Caryophyllaceae Silene 1 scouleri 1 subsp. pringlei 1 \N \N \N \N var. grisea Accepted Silene scouleri ssp. pringlei (S. Watson) C.L. Hitchc. & Maguire subspecies http://plants.usda.gov/java/profile?symbol=SISCP Silene scouleri Caryophyllaceae false usda [Partial match] \N t Caryophyllaceae Silene scouleri ssp. pringlei (S. Watson) C.L. Hitchc. & Maguire var. grisea Silene scouleri Silene scouleri subsp. pringlei Silene scouleri subsp. pringlei (S. Watson) C.L. Hitchc. & Maguire t Caryophyllaceae {Silene,scouleri} Silene scouleri Silene scouleri ssp. pringlei {ssp.,pringlei} ssp. pringlei Silene scouleri ssp. pringlei (S. Watson) C.L. Hitchc. & Maguire accepted subspecies Caryophyllaceae Silene scouleri Silene scouleri Silene scouleri ssp. scouleri Silene scouleri ssp. pringlei (S. Watson) C.L. Hitchc. & Maguire Silene scouleri ssp. pringlei (S. Watson) C.L. Hitchc. & Maguire
|
|
1982 |
COPY taxon_match (batch, match_num, "*Name_number", "*Name_submitted", "*Overall_score", "*Name_matched", "*Name_matched_rank", "*Name_score", "*Name_matched_author", "*Name_matched_url", "*Author_matched", "*Author_score", "*Family_matched", "*Family_score", "*Name_matched_accepted_family", "*Genus_matched", "*Genus_score", "*Specific_epithet_matched", "*Specific_epithet_score", "*Infraspecific_rank", "*Infraspecific_epithet_matched", "*Infraspecific_epithet_score", "*Infraspecific_rank_2", "*Infraspecific_epithet_2_matched", "*Infraspecific_epithet_2_score", "*Annotations", "*Unmatched_terms", "*Taxonomic_status", "*Accepted_name", "*Accepted_name_author", "*Accepted_name_rank", "*Accepted_name_url", "*Accepted_name_species", "*Accepted_name_family", "*Selected", "*Source", "*Warnings", "*Accepted_name_lsid", is_valid_match, scrubbed_unique_taxon_name, "[parsed_]morphospecies[_suffix]__@Brad__.morphosp@vegpath.org", "[matched_]species[_binomial]~(-Accepted_-)__@TNRS__@vegpath.org", "matched~Name[_no_author]___@TNRS__@vegpath.org", "[matched_]scientificName[_with_author]__@DwC__@vegpath.org", matched_has_accepted, "Accepted_family__@TNRS__@vegpath.org", "Accepted_species[_binomial]__@TNRS__@vegpath.org", "__accepted_{genus,specific_epithet}", "[accepted_]genus__@DwC__@vegpath.org", "[accepted_]specificEpithet__@DwC__@vegpath.org", "[accepted_]morphospecies[_binomial]__@Brad__.TNRS@vegpath.org", __accepted_infraspecific_label, "__accepted_infraspecific_{rank,epithet}", "[accepted_]Infraspecific_rank[_abbr]__@TNRS__@vegpath.org", "[accepted_]infraspecificEpithet__@DwC__@vegpath.org", "[accepted_]scientificName[_with_author]__@DwC__@vegpath.org", "[scrubbed_]taxonomicStatus__@DwC__@vegpath.org", "[scrubbed_]taxonRank__@DwC__@vegpath.org", "[scrubbed_]family~(-Accepted_-)__@TNRS__@vegpath.org", "[scrubbed_]genus__@DwC__@vegpath.org", "[scrubbed_]specificEpithet__@DwC__@vegpath.org", "[scrubbed_]species[_binom]~(-Accepted_-)__@TNRS__@vegpath.org", "[scrubbed_]morphospecies[_binomial]__@Brad__.TNRS@vegpath.org", "[scrubbed_]Infraspecific_rank[_abbr]__@TNRS__@vegpath.org", "[scrubbed_]infraspecificEpithet__@DwC__@vegpath.org", "[scrubbed_]name[_no_author]~(-Accepted_-)__@TNRS__@vegpath.org", "[scrubbed_]author~(-Accepted_-)__@TNRS__@vegpath.org", "[scrubbed_]scientificName[_with_author]__@DwC__@vegpath.org") FROM stdin;
|
|
1983 |
2014-07-26 21:26:21.824011-07 0 0 Compositae indet. sp.1 0.900000000000000022 Compositae family 1 \N http://www.theplantlist.org/1.1/browse/A/Compositae/ \N \N Compositae 1 \N \N \N \N \N \N \N \N \N \N \N \N indet. sp.1 Accepted Compositae \N family http://www.theplantlist.org/1.1/browse/A/Compositae/ \N \N true tpl [Ambiguous match] \N t Compositae indet. sp.1 \N Compositae Compositae t Compositae \N \N \N \N Compositae indet. sp.1 \N \N \N \N Compositae accepted family Compositae \N \N \N Compositae indet. sp.1 \N \N Compositae \N Compositae
|
|
1984 |
2014-07-26 21:26:21.824011-07 1 0 Compositae indet. sp.1 0.900000000000000022 Compositae family 1 \N \N \N \N Compositae 1 \N \N \N \N \N \N \N \N \N \N \N \N indet. sp.1 Accepted Compositae \N family \N \N \N false tpl [Ambiguous match] \N t Compositae indet. sp.1 \N Compositae Compositae t Compositae \N \N \N \N Compositae indet. sp.1 \N \N \N \N Compositae accepted family Compositae \N \N \N Compositae indet. sp.1 \N \N Compositae \N Compositae
|
|
1985 |
2014-07-26 21:26:21.824011-07 2 0 Compositae indet. sp.1 0.900000000000000022 Compositae family 1 Giseke http://www.tropicos.org/Name/50255940 \N \N Compositae 1 Compositae \N \N \N \N \N \N \N \N \N \N \N indet. sp.1 Synonym Asteraceae Bercht. & J. Presl family http://www.tropicos.org/Name/50307371 \N Asteraceae false tropicos \N t Asteraceae Bercht. & J. Presl indet. sp.1 \N Compositae Compositae Giseke t Asteraceae \N \N \N \N Asteraceae indet. sp.1 \N \N \N \N Asteraceae Bercht. & J. Presl accepted family Asteraceae \N \N \N Asteraceae indet. sp.1 \N \N Asteraceae Bercht. & J. Presl Asteraceae Bercht. & J. Presl
|
|
1986 |
2014-07-26 21:26:21.824011-07 3 1 Fabaceae Boyle#6500 0.839999999999999969 Fagaceae family 0.939999999999999947 \N ;http://plants.usda.gov/java/nameSearch \N \N Fagaceae 0.880000000000000004 \N \N \N \N \N \N \N \N \N \N \N \N Boyle#6500 Accepted Fagaceae \N family ;http://plants.usda.gov/java/nameSearch \N \N true tpl;usda \N f Fagaceae Boyle#6500 \N Fagaceae Fagaceae t Fagaceae \N \N \N \N Fagaceae Boyle#6500 \N \N \N \N Fagaceae accepted family Fagaceae \N \N \N Fagaceae Boyle#6500 \N \N Fagaceae \N Fagaceae
|
|
1987 |
2014-07-26 21:26:21.824011-07 4 1 Fabaceae Boyle#6500 0.900000000000000022 Fabaceae family 1 Lindl. http://www.tropicos.org/Name/42000184 \N \N Fabaceae 1 Fabaceae \N \N \N \N \N \N \N \N \N \N \N Boyle#6500 Accepted Fabaceae Lindl. family http://www.tropicos.org/Name/42000184 \N Fabaceae false tropicos \N t Fabaceae Lindl. Boyle#6500 \N Fabaceae Fabaceae Lindl. t Fabaceae \N \N \N \N Fabaceae Boyle#6500 \N \N \N \N Fabaceae Lindl. accepted family Fabaceae \N \N \N Fabaceae Boyle#6500 \N \N Fabaceae Lindl. Fabaceae Lindl.
|
|
1988 |
2014-07-26 21:26:21.824011-07 5 1 Fabaceae Boyle#6500 0.839999999999999969 Fagaceae family 0.939999999999999947 Dumort. http://www.tropicos.org/Name/42000062 \N \N Fagaceae 0.880000000000000004 Fagaceae \N \N \N \N \N \N \N \N \N \N \N Boyle#6500 Accepted Fagaceae Dumort. family http://www.tropicos.org/Name/42000062 \N Fagaceae false tropicos \N f Fagaceae Dumort. Boyle#6500 \N Fagaceae Fagaceae Dumort. t Fagaceae \N \N \N \N Fagaceae Boyle#6500 \N \N \N \N Fagaceae Dumort. accepted family Fagaceae \N \N \N Fagaceae Boyle#6500 \N \N Fagaceae Dumort. Fagaceae Dumort.
|
|
1989 |
2014-07-26 21:26:21.824011-07 6 1 Fabaceae Boyle#6500 0.67000000000000004 Ficaceae family 0.770000000000000018 Bercht. & J. Presl http://www.tropicos.org/Name/100353631 \N \N Ficaceae 0.75 Ficaceae \N \N \N \N \N \N \N \N \N \N \N Boyle#6500 No opinion \N \N \N \N \N \N false tropicos \N f Ficaceae Bercht. & J. Presl Boyle#6500 \N Ficaceae Ficaceae Bercht. & J. Presl f \N \N \N \N \N \N \N \N \N \N \N no opinion family Ficaceae \N \N \N Ficaceae Boyle#6500 \N \N Ficaceae Bercht. & J. Presl Ficaceae Bercht. & J. Presl
|
|
1990 |
2014-07-26 21:26:21.824011-07 7 1 Fabaceae Boyle#6500 0.67000000000000004 Fucaceae family 0.770000000000000018 \N http://www.tropicos.org/Name/100371040 \N \N Fucaceae 0.75 Fucaceae \N \N \N \N \N \N \N \N \N \N \N Boyle#6500 No opinion \N \N \N \N \N \N false tropicos \N f Fucaceae Boyle#6500 \N Fucaceae Fucaceae f \N \N \N \N \N \N \N \N \N \N \N no opinion family Fucaceae \N \N \N Fucaceae Boyle#6500 \N \N Fucaceae \N Fucaceae
|
|
1991 |
2014-07-26 21:26:21.824011-07 8 1 Fabaceae Boyle#6500 0.900000000000000022 Fabaceae family 1 \N http://plants.usda.gov/java/nameSearch \N \N Fabaceae 1 \N \N \N \N \N \N \N \N \N \N \N \N Boyle#6500 Accepted Fabaceae \N family http://plants.usda.gov/java/nameSearch \N \N false usda \N t Fabaceae Boyle#6500 \N Fabaceae Fabaceae t Fabaceae \N \N \N \N Fabaceae Boyle#6500 \N \N \N \N Fabaceae accepted family Fabaceae \N \N \N Fabaceae Boyle#6500 \N \N Fabaceae \N Fabaceae
|
|
1992 |
2014-07-26 21:26:21.824011-07 9 2 Fabaceae Inga "fuzzy leaf" 0.900000000000000022 Inga genus 1 \N http://www.theplantlist.org/1.1/browse/A/Leguminosae/Inga/;http://plants.usda.gov/java/profile?symbol=INGA \N \N Fabaceae 1 Fabaceae Inga 1 \N \N \N \N \N \N \N \N \N "fuzzy leaf" Accepted Inga \N genus http://www.theplantlist.org/1.1/browse/A/Leguminosae/Inga/;http://plants.usda.gov/java/profile?symbol=INGA \N Fabaceae true tpl;usda \N t Fabaceae Inga "fuzzy leaf" \N Inga Inga t Fabaceae \N \N Inga \N Inga "fuzzy leaf" \N \N \N \N Inga accepted genus Fabaceae Inga \N \N Inga "fuzzy leaf" \N \N Inga \N Inga
|
|
1993 |
2014-07-26 21:26:21.824011-07 10 2 Fabaceae Inga "fuzzy leaf" 0.900000000000000022 Inga genus 1 Mill. http://www.tropicos.org/Name/40031040 \N \N Fabaceae 1 Fabaceae Inga 1 \N \N \N \N \N \N \N \N \N "fuzzy leaf" Accepted Inga Mill. genus http://www.tropicos.org/Name/40031040 \N Fabaceae false tropicos \N t Fabaceae Inga Mill. "fuzzy leaf" \N Inga Inga Mill. t Fabaceae \N \N Inga \N Inga "fuzzy leaf" \N \N \N \N Inga Mill. accepted genus Fabaceae Inga \N \N Inga "fuzzy leaf" \N \N Inga Mill. Inga Mill.
|
|
1994 |
2014-07-26 21:26:21.824011-07 11 2 Fabaceae Inga "fuzzy leaf" 0.900000000000000022 Inga genus 1 Scop. http://www.tropicos.org/Name/50215121 \N \N Fabaceae 1 Fabaceae Inga 1 \N \N \N \N \N \N \N \N \N "fuzzy leaf" Illegitimate \N \N \N \N \N \N false tropicos \N t Fabaceae Inga Scop. "fuzzy leaf" \N Inga Inga Scop. f \N \N \N \N \N \N \N \N \N \N \N illegitimate genus Fabaceae Inga \N \N Inga "fuzzy leaf" \N \N Inga Scop. Inga Scop.
|
|
1995 |
2014-07-26 21:26:21.824011-07 12 3 Fabaceae Inga sp.3 0.900000000000000022 Inga genus 1 \N http://www.theplantlist.org/1.1/browse/A/Leguminosae/Inga/;http://plants.usda.gov/java/profile?symbol=INGA \N \N Fabaceae 1 Fabaceae Inga 1 \N \N \N \N \N \N \N \N \N sp.3 Accepted Inga \N genus http://www.theplantlist.org/1.1/browse/A/Leguminosae/Inga/;http://plants.usda.gov/java/profile?symbol=INGA \N Fabaceae true tpl;usda \N t Fabaceae Inga sp.3 \N Inga Inga t Fabaceae \N \N Inga \N Inga sp.3 \N \N \N \N Inga accepted genus Fabaceae Inga \N \N Inga sp.3 \N \N Inga \N Inga
|
|
1996 |
2014-07-26 21:26:21.824011-07 13 3 Fabaceae Inga sp.3 0.900000000000000022 Inga genus 1 Mill. http://www.tropicos.org/Name/40031040 \N \N Fabaceae 1 Fabaceae Inga 1 \N \N \N \N \N \N \N \N \N sp.3 Accepted Inga Mill. genus http://www.tropicos.org/Name/40031040 \N Fabaceae false tropicos \N t Fabaceae Inga Mill. sp.3 \N Inga Inga Mill. t Fabaceae \N \N Inga \N Inga sp.3 \N \N \N \N Inga Mill. accepted genus Fabaceae Inga \N \N Inga sp.3 \N \N Inga Mill. Inga Mill.
|
|
1997 |
2014-07-26 21:26:21.824011-07 14 3 Fabaceae Inga sp.3 0.900000000000000022 Inga genus 1 Scop. http://www.tropicos.org/Name/50215121 \N \N Fabaceae 1 Fabaceae Inga 1 \N \N \N \N \N \N \N \N \N sp.3 Illegitimate \N \N \N \N \N \N false tropicos \N t Fabaceae Inga Scop. sp.3 \N Inga Inga Scop. f \N \N \N \N \N \N \N \N \N \N \N illegitimate genus Fabaceae Inga \N \N Inga sp.3 \N \N Inga Scop. Inga Scop.
|
|
1998 |
2014-07-26 21:26:21.824011-07 15 4 Fabaceae unknown #2 0.839999999999999969 Fagaceae family 0.939999999999999947 \N ;http://plants.usda.gov/java/nameSearch \N \N Fagaceae 0.880000000000000004 \N \N \N \N \N \N \N \N \N \N \N \N unknown #2 Accepted Fagaceae \N family ;http://plants.usda.gov/java/nameSearch \N \N true tpl;usda \N f Fagaceae unknown #2 \N Fagaceae Fagaceae t Fagaceae \N \N \N \N Fagaceae unknown #2 \N \N \N \N Fagaceae accepted family Fagaceae \N \N \N Fagaceae unknown #2 \N \N Fagaceae \N Fagaceae
|
|
1999 |
2014-07-26 21:26:21.824011-07 16 4 Fabaceae unknown #2 0.900000000000000022 Fabaceae family 1 Lindl. http://www.tropicos.org/Name/42000184 \N \N Fabaceae 1 Fabaceae \N \N \N \N \N \N \N \N \N \N \N unknown #2 Accepted Fabaceae Lindl. family http://www.tropicos.org/Name/42000184 \N Fabaceae false tropicos \N t Fabaceae Lindl. unknown #2 \N Fabaceae Fabaceae Lindl. t Fabaceae \N \N \N \N Fabaceae unknown #2 \N \N \N \N Fabaceae Lindl. accepted family Fabaceae \N \N \N Fabaceae unknown #2 \N \N Fabaceae Lindl. Fabaceae Lindl.
|
|
2000 |
2014-07-26 21:26:21.824011-07 17 4 Fabaceae unknown #2 0.839999999999999969 Fagaceae family 0.939999999999999947 Dumort. http://www.tropicos.org/Name/42000062 \N \N Fagaceae 0.880000000000000004 Fagaceae \N \N \N \N \N \N \N \N \N \N \N unknown #2 Accepted Fagaceae Dumort. family http://www.tropicos.org/Name/42000062 \N Fagaceae false tropicos \N f Fagaceae Dumort. unknown #2 \N Fagaceae Fagaceae Dumort. t Fagaceae \N \N \N \N Fagaceae unknown #2 \N \N \N \N Fagaceae Dumort. accepted family Fagaceae \N \N \N Fagaceae unknown #2 \N \N Fagaceae Dumort. Fagaceae Dumort.
|
|
2001 |
2014-07-26 21:26:21.824011-07 18 4 Fabaceae unknown #2 0.67000000000000004 Ficaceae family 0.770000000000000018 Bercht. & J. Presl http://www.tropicos.org/Name/100353631 \N \N Ficaceae 0.75 Ficaceae \N \N \N \N \N \N \N \N \N \N \N unknown #2 No opinion \N \N \N \N \N \N false tropicos \N f Ficaceae Bercht. & J. Presl unknown #2 \N Ficaceae Ficaceae Bercht. & J. Presl f \N \N \N \N \N \N \N \N \N \N \N no opinion family Ficaceae \N \N \N Ficaceae unknown #2 \N \N Ficaceae Bercht. & J. Presl Ficaceae Bercht. & J. Presl
|
|
2002 |
2014-07-26 21:26:21.824011-07 19 4 Fabaceae unknown #2 0.67000000000000004 Fucaceae family 0.770000000000000018 \N http://www.tropicos.org/Name/100371040 \N \N Fucaceae 0.75 Fucaceae \N \N \N \N \N \N \N \N \N \N \N unknown #2 No opinion \N \N \N \N \N \N false tropicos \N f Fucaceae unknown #2 \N Fucaceae Fucaceae f \N \N \N \N \N \N \N \N \N \N \N no opinion family Fucaceae \N \N \N Fucaceae unknown #2 \N \N Fucaceae \N Fucaceae
|
|
2003 |
2014-07-26 21:26:21.824011-07 20 4 Fabaceae unknown #2 0.900000000000000022 Fabaceae family 1 \N http://plants.usda.gov/java/nameSearch \N \N Fabaceae 1 \N \N \N \N \N \N \N \N \N \N \N \N unknown #2 Accepted Fabaceae \N family http://plants.usda.gov/java/nameSearch \N \N false usda \N t Fabaceae unknown #2 \N Fabaceae Fabaceae t Fabaceae \N \N \N \N Fabaceae unknown #2 \N \N \N \N Fabaceae accepted family Fabaceae \N \N \N Fabaceae unknown #2 \N \N Fabaceae \N Fabaceae
|
|
2004 |
2014-07-26 21:26:21.824011-07 21 5 Fam_indet. Boyle#6501 0 No suitable matches found. \N 0 \N \N \N 0 \N 0 \N \N 0 \N 0 \N \N 0 \N \N 0 \N \N \N \N \N \N \N \N \N true \N \N f \N \N \N \N \N f \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N
|
|
2005 |
2014-07-26 21:26:21.824011-07 22 6 Poa annua 1 Poa annua species 1 L. http://www.theplantlist.org/tpl1.1/record/kew-435194;http://www.tropicos.org/Name/25509881;http://plants.usda.gov/java/profile?symbol=POAN \N \N \N \N Poaceae Poa 1 annua 1 \N \N \N \N \N \N \N \N Accepted Poa annua L. species http://www.theplantlist.org/tpl1.1/record/kew-435194;http://www.tropicos.org/Name/25509881;http://plants.usda.gov/java/profile?symbol=POAN Poa annua Poaceae true tpl;tropicos;usda \N t Poaceae Poa annua L. \N Poa annua Poa annua Poa annua L. t Poaceae Poa annua {Poa,annua} Poa annua Poa annua \N \N \N \N Poa annua L. accepted species Poaceae Poa annua Poa annua Poa annua \N annua Poa annua L. Poa annua L.
|
|
2006 |
2014-07-26 21:26:21.824011-07 23 6 Poa annua 1 Poa annua species 1 Cham. & Schltdl. http://www.theplantlist.org/tpl1.1/record/kew-435195 \N \N \N \N Poaceae Poa 1 annua 1 \N \N \N \N \N \N \N \N Synonym Poa infirma Kunth species http://www.theplantlist.org/tpl1.1/record/kew-436189 Poa infirma Poaceae false tpl \N t Poaceae Poa infirma Kunth \N Poa annua Poa annua Poa annua Cham. & Schltdl. t Poaceae Poa infirma {Poa,infirma} Poa infirma Poa infirma \N \N \N \N Poa infirma Kunth accepted species Poaceae Poa infirma Poa infirma Poa infirma \N infirma Poa infirma Kunth Poa infirma Kunth
|
|
2007 |
2014-07-26 21:26:21.824011-07 24 7 Poa annua L. 1 Poa annua species 1 L. http://www.theplantlist.org/tpl1.1/record/kew-435194;http://www.tropicos.org/Name/25509881;http://plants.usda.gov/java/profile?symbol=POAN L. 1 \N \N Poaceae Poa 1 annua 1 \N \N \N \N \N \N \N \N Accepted Poa annua L. species http://www.theplantlist.org/tpl1.1/record/kew-435194;http://www.tropicos.org/Name/25509881;http://plants.usda.gov/java/profile?symbol=POAN Poa annua Poaceae true tpl;tropicos;usda \N t Poaceae Poa annua L. \N Poa annua Poa annua Poa annua L. t Poaceae Poa annua {Poa,annua} Poa annua Poa annua \N \N \N \N Poa annua L. accepted species Poaceae Poa annua Poa annua Poa annua \N annua Poa annua L. Poa annua L.
|
|
2008 |
2014-07-26 21:26:21.824011-07 25 7 Poa annua L. 0.800000000000000044 Poa annua species 1 Cham. & Schltdl. http://www.theplantlist.org/tpl1.1/record/kew-435195 Cham. & Schltdl. 0 \N \N Poaceae Poa 1 annua 1 \N \N \N \N \N \N \N \N Synonym Poa infirma Kunth species http://www.theplantlist.org/tpl1.1/record/kew-436189 Poa infirma Poaceae false tpl \N t Poaceae Poa infirma Kunth \N Poa annua Poa annua Poa annua Cham. & Schltdl. t Poaceae Poa infirma {Poa,infirma} Poa infirma Poa infirma \N \N \N \N Poa infirma Kunth accepted species Poaceae Poa infirma Poa infirma Poa infirma \N infirma Poa infirma Kunth Poa infirma Kunth
|
|
2009 |
2014-07-26 21:26:21.824011-07 26 8 Poa annua fo. lanuginosa 1 Poa annua fo. lanuginosa fo. 1 Sennen http://www.theplantlist.org/tpl1.1/record/tro-50267771 \N \N \N \N \N Poa 1 annua 1 fo. lanuginosa 1 \N \N \N \N \N Synonym Poa annua L. species http://www.theplantlist.org/tpl1.1/record/kew-435194 Poa annua Poaceae true tpl \N t Poaceae Poa annua L. \N Poa annua Poa annua fo. lanuginosa Poa annua fo. lanuginosa Sennen t Poaceae Poa annua {Poa,annua} Poa annua Poa annua \N \N \N \N Poa annua L. accepted species Poaceae Poa annua Poa annua Poa annua \N annua Poa annua L. Poa annua L.
|
|
2010 |
2014-07-26 21:26:21.824011-07 27 8 Poa annua fo. lanuginosa 1 Poa annua fo. lanuginosa forma 1 Sennen http://www.tropicos.org/Name/50267771 \N \N \N \N Poaceae Poa 1 annua 1 fo. lanuginosa 1 \N \N \N \N \N Synonym Poa annua var. annua \N variety http://www.tropicos.org/Name/25517736 Poa annua Poaceae false tropicos \N t Poaceae Poa annua var. annua \N Poa annua Poa annua fo. lanuginosa Poa annua fo. lanuginosa Sennen t Poaceae Poa annua {Poa,annua} Poa annua Poa annua var. annua {var.,annua} var. annua Poa annua var. annua accepted variety Poaceae Poa annua Poa annua Poa annua var. annua Poa annua var. annua \N Poa annua var. annua
|
|
2011 |
2014-07-26 21:26:21.824011-07 28 9 Poa annua ssp. exilis 1 Poa annua subsp. exilis subspecies 1 (Tomm. ex Freyn) Asch. & Graebn. http://www.tropicos.org/Name/50063800 \N \N \N \N Poaceae Poa 1 annua 1 subsp. exilis 1 \N \N \N \N \N Synonym Poa infirma Kunth species http://www.tropicos.org/Name/25514158 Poa infirma Poaceae true tropicos \N t Poaceae Poa infirma Kunth \N Poa annua Poa annua subsp. exilis Poa annua subsp. exilis (Tomm. ex Freyn) Asch. & Graebn. t Poaceae Poa infirma {Poa,infirma} Poa infirma Poa infirma \N \N \N \N Poa infirma Kunth accepted species Poaceae Poa infirma Poa infirma Poa infirma \N infirma Poa infirma Kunth Poa infirma Kunth
|
|
2012 |
2014-07-26 21:26:21.824011-07 29 9 Poa annua ssp. exilis 0.959999999999999964 Poa annua var. exilis variety 0.959999999999999964 Tomm. ex Freyn http://www.tropicos.org/Name/25547854 \N \N \N \N Poaceae Poa 1 annua 1 var. exilis 0.699999999999999956 \N \N \N \N \N Synonym Poa infirma Kunth species http://www.tropicos.org/Name/25514158 Poa infirma Poaceae false tropicos \N t Poaceae Poa infirma Kunth \N Poa annua Poa annua var. exilis Poa annua var. exilis Tomm. ex Freyn t Poaceae Poa infirma {Poa,infirma} Poa infirma Poa infirma \N \N \N \N Poa infirma Kunth accepted species Poaceae Poa infirma Poa infirma Poa infirma \N infirma Poa infirma Kunth Poa infirma Kunth
|
|
2013 |
2014-07-26 21:26:21.824011-07 30 10 Poa annua subsp. exilis 1 Poa annua subsp. exilis subsp. 1 (Tomm. ex Freyn.) Asch. & Graebn. http://www.theplantlist.org/tpl1.1/record/kew-435202 \N \N \N \N \N Poa 1 annua 1 subsp. exilis 1 \N \N \N \N \N Synonym Poa infirma Kunth species http://www.theplantlist.org/tpl1.1/record/kew-436189 Poa infirma Poaceae true tpl \N t Poaceae Poa infirma Kunth \N Poa annua Poa annua subsp. exilis Poa annua subsp. exilis (Tomm. ex Freyn.) Asch. & Graebn. t Poaceae Poa infirma {Poa,infirma} Poa infirma Poa infirma \N \N \N \N Poa infirma Kunth accepted species Poaceae Poa infirma Poa infirma Poa infirma \N infirma Poa infirma Kunth Poa infirma Kunth
|
|
2014 |
2014-07-26 21:26:21.824011-07 31 10 Poa annua subsp. exilis 1 Poa annua subsp. exilis subspecies 1 (Tomm. ex Freyn) Asch. & Graebn. http://www.tropicos.org/Name/50063800 \N \N \N \N Poaceae Poa 1 annua 1 subsp. exilis 1 \N \N \N \N \N Synonym Poa infirma Kunth species http://www.tropicos.org/Name/25514158 Poa infirma Poaceae false tropicos \N t Poaceae Poa infirma Kunth \N Poa annua Poa annua subsp. exilis Poa annua subsp. exilis (Tomm. ex Freyn) Asch. & Graebn. t Poaceae Poa infirma {Poa,infirma} Poa infirma Poa infirma \N \N \N \N Poa infirma Kunth accepted species Poaceae Poa infirma Poa infirma Poa infirma \N infirma Poa infirma Kunth Poa infirma Kunth
|
|
2015 |
2014-07-26 21:26:21.824011-07 32 11 Poa annua subvar. minima 1 Poa annua subvar. minima subvariety 1 (Schur) Asch. & Graebn. http://www.tropicos.org/Name/50158097 \N \N \N \N Poaceae Poa 1 annua 1 subvar. minima 1 \N \N \N \N \N Accepted Poa annua subvar. minima (Schur) Asch. & Graebn. subvariety http://www.tropicos.org/Name/50158097 Poa annua Poaceae true tropicos \N t Poaceae Poa annua subvar. minima (Schur) Asch. & Graebn. \N Poa annua Poa annua subvar. minima Poa annua subvar. minima (Schur) Asch. & Graebn. t Poaceae Poa annua {Poa,annua} Poa annua Poa annua subvar. minima {subvar.,minima} subvar. minima Poa annua subvar. minima (Schur) Asch. & Graebn. accepted subvariety Poaceae Poa annua Poa annua Poa annua subvar. annua Poa annua subvar. minima (Schur) Asch. & Graebn. Poa annua subvar. minima (Schur) Asch. & Graebn.
|
|
2016 |
2014-07-26 21:26:21.824011-07 33 12 Poa annua var. eriolepis 1 Poa annua var. eriolepis var. 1 ̉ۡ.Desv. http://www.theplantlist.org/tpl1.1/record/kew-435206 \N \N \N \N \N Poa 1 annua 1 var. eriolepis 1 \N \N \N \N \N Synonym Poa annua L. species http://www.theplantlist.org/tpl1.1/record/kew-435194 Poa annua Poaceae true tpl \N t Poaceae Poa annua L. \N Poa annua Poa annua var. eriolepis Poa annua var. eriolepis ̉ۡ.Desv. t Poaceae Poa annua {Poa,annua} Poa annua Poa annua \N \N \N \N Poa annua L. accepted species Poaceae Poa annua Poa annua Poa annua \N annua Poa annua L. Poa annua L.
|
|
2017 |
2014-07-26 21:26:21.824011-07 34 12 Poa annua var. eriolepis 1 Poa annua var. eriolepis variety 1 E. Desv. http://www.tropicos.org/Name/50119145 \N \N \N \N Poaceae Poa 1 annua 1 var. eriolepis 1 \N \N \N \N \N Synonym Poa annua L. species http://www.tropicos.org/Name/25509881 Poa annua Poaceae false tropicos \N t Poaceae Poa annua L. \N Poa annua Poa annua var. eriolepis Poa annua var. eriolepis E. Desv. t Poaceae Poa annua {Poa,annua} Poa annua Poa annua \N \N \N \N Poa annua L. accepted species Poaceae Poa annua Poa annua Poa annua \N annua Poa annua L. Poa annua L.
|
|
2018 |
2014-07-26 21:26:21.824011-07 35 13 Silene scouleri Hook. subsp. pringlei (S. Watson) C.L. Hitchc. & Maguire var. grisea C.L. Hitchc. & Maguire 0.770000000000000018 Silene scouleri subsp. pringlei subsp. 0.770000000000000018 (S. Watson) C.L. Hitchc. & Maguire http://www.theplantlist.org/tpl1.1/record/tro-6303627 \N \N \N \N Caryophyllaceae Silene 1 scouleri 1 subsp. pringlei 1 \N \N \N \N var. grisea Accepted Silene scouleri subsp. pringlei (S. Watson) C.L. Hitchc. & Maguire subsp. http://www.theplantlist.org/tpl1.1/record/tro-6303627 Silene scouleri Caryophyllaceae true tpl [Partial match] \N t Caryophyllaceae Silene scouleri subsp. pringlei (S. Watson) C.L. Hitchc. & Maguire var. grisea Silene scouleri Silene scouleri subsp. pringlei Silene scouleri subsp. pringlei (S. Watson) C.L. Hitchc. & Maguire t Caryophyllaceae Silene scouleri {Silene,scouleri} Silene scouleri Silene scouleri subsp. pringlei {subsp.,pringlei} subsp. pringlei Silene scouleri subsp. pringlei (S. Watson) C.L. Hitchc. & Maguire accepted subsp. Caryophyllaceae Silene scouleri Silene scouleri Silene scouleri subsp. scouleri Silene scouleri subsp. pringlei (S. Watson) C.L. Hitchc. & Maguire Silene scouleri subsp. pringlei (S. Watson) C.L. Hitchc. & Maguire
|
|
2019 |
2014-07-26 21:26:21.824011-07 36 13 Silene scouleri Hook. subsp. pringlei (S. Watson) C.L. Hitchc. & Maguire var. grisea C.L. Hitchc. & Maguire 0.770000000000000018 Silene scouleri subsp. pringlei subspecies 0.770000000000000018 (S. Watson) C.L. Hitchc. & Maguire http://www.tropicos.org/Name/6303627 \N \N \N \N Caryophyllaceae Silene 1 scouleri 1 subsp. pringlei 1 \N \N \N \N var. grisea Accepted Silene scouleri subsp. pringlei (S. Watson) C.L. Hitchc. & Maguire subspecies http://www.tropicos.org/Name/6303627 Silene scouleri Caryophyllaceae false tropicos [Partial match] \N t Caryophyllaceae Silene scouleri subsp. pringlei (S. Watson) C.L. Hitchc. & Maguire var. grisea Silene scouleri Silene scouleri subsp. pringlei Silene scouleri subsp. pringlei (S. Watson) C.L. Hitchc. & Maguire t Caryophyllaceae Silene scouleri {Silene,scouleri} Silene scouleri Silene scouleri subsp. pringlei {subsp.,pringlei} subsp. pringlei Silene scouleri subsp. pringlei (S. Watson) C.L. Hitchc. & Maguire accepted subspecies Caryophyllaceae Silene scouleri Silene scouleri Silene scouleri subsp. scouleri Silene scouleri subsp. pringlei (S. Watson) C.L. Hitchc. & Maguire Silene scouleri subsp. pringlei (S. Watson) C.L. Hitchc. & Maguire
|
|
2020 |
2014-07-26 21:26:21.824011-07 37 13 Silene scouleri Hook. subsp. pringlei (S. Watson) C.L. Hitchc. & Maguire var. grisea C.L. Hitchc. & Maguire 0.770000000000000018 Silene scouleri subsp. pringlei subspecies 0.770000000000000018 (S. Watson) C.L. Hitchc. & Maguire http://plants.usda.gov/java/profile?symbol=SISCP \N \N \N \N Caryophyllaceae Silene 1 scouleri 1 subsp. pringlei 1 \N \N \N \N var. grisea Accepted Silene scouleri ssp. pringlei (S. Watson) C.L. Hitchc. & Maguire subspecies http://plants.usda.gov/java/profile?symbol=SISCP Silene scouleri Caryophyllaceae false usda [Partial match] \N t Caryophyllaceae Silene scouleri ssp. pringlei (S. Watson) C.L. Hitchc. & Maguire var. grisea Silene scouleri Silene scouleri subsp. pringlei Silene scouleri subsp. pringlei (S. Watson) C.L. Hitchc. & Maguire t Caryophyllaceae Silene scouleri {Silene,scouleri} Silene scouleri Silene scouleri ssp. pringlei {ssp.,pringlei} ssp. pringlei Silene scouleri ssp. pringlei (S. Watson) C.L. Hitchc. & Maguire accepted subspecies Caryophyllaceae Silene scouleri Silene scouleri Silene scouleri ssp. scouleri Silene scouleri ssp. pringlei (S. Watson) C.L. Hitchc. & Maguire Silene scouleri ssp. pringlei (S. Watson) C.L. Hitchc. & Maguire
|
|
2021 |
2014-07-26 21:26:21.824011-07 38 14 Silene scouleri subsp. pringlei var. grisea C.L. Hitchc. & Maguire 0.770000000000000018 Silene scouleri subsp. pringlei subsp. 0.770000000000000018 (S. Watson) C.L. Hitchc. & Maguire http://www.theplantlist.org/tpl1.1/record/tro-6303627 \N \N \N \N Caryophyllaceae Silene 1 scouleri 1 subsp. pringlei 1 \N \N \N \N var. grisea Accepted Silene scouleri subsp. pringlei (S. Watson) C.L. Hitchc. & Maguire subsp. http://www.theplantlist.org/tpl1.1/record/tro-6303627 Silene scouleri Caryophyllaceae true tpl [Partial match] \N t Caryophyllaceae Silene scouleri subsp. pringlei (S. Watson) C.L. Hitchc. & Maguire var. grisea Silene scouleri Silene scouleri subsp. pringlei Silene scouleri subsp. pringlei (S. Watson) C.L. Hitchc. & Maguire t Caryophyllaceae Silene scouleri {Silene,scouleri} Silene scouleri Silene scouleri subsp. pringlei {subsp.,pringlei} subsp. pringlei Silene scouleri subsp. pringlei (S. Watson) C.L. Hitchc. & Maguire accepted subsp. Caryophyllaceae Silene scouleri Silene scouleri Silene scouleri subsp. scouleri Silene scouleri subsp. pringlei (S. Watson) C.L. Hitchc. & Maguire Silene scouleri subsp. pringlei (S. Watson) C.L. Hitchc. & Maguire
|
|
2022 |
2014-07-26 21:26:21.824011-07 39 14 Silene scouleri subsp. pringlei var. grisea C.L. Hitchc. & Maguire 0.770000000000000018 Silene scouleri subsp. pringlei subspecies 0.770000000000000018 (S. Watson) C.L. Hitchc. & Maguire http://www.tropicos.org/Name/6303627 \N \N \N \N Caryophyllaceae Silene 1 scouleri 1 subsp. pringlei 1 \N \N \N \N var. grisea Accepted Silene scouleri subsp. pringlei (S. Watson) C.L. Hitchc. & Maguire subspecies http://www.tropicos.org/Name/6303627 Silene scouleri Caryophyllaceae false tropicos [Partial match] \N t Caryophyllaceae Silene scouleri subsp. pringlei (S. Watson) C.L. Hitchc. & Maguire var. grisea Silene scouleri Silene scouleri subsp. pringlei Silene scouleri subsp. pringlei (S. Watson) C.L. Hitchc. & Maguire t Caryophyllaceae Silene scouleri {Silene,scouleri} Silene scouleri Silene scouleri subsp. pringlei {subsp.,pringlei} subsp. pringlei Silene scouleri subsp. pringlei (S. Watson) C.L. Hitchc. & Maguire accepted subspecies Caryophyllaceae Silene scouleri Silene scouleri Silene scouleri subsp. scouleri Silene scouleri subsp. pringlei (S. Watson) C.L. Hitchc. & Maguire Silene scouleri subsp. pringlei (S. Watson) C.L. Hitchc. & Maguire
|
|
2023 |
2014-07-26 21:26:21.824011-07 40 14 Silene scouleri subsp. pringlei var. grisea C.L. Hitchc. & Maguire 0.770000000000000018 Silene scouleri subsp. pringlei subspecies 0.770000000000000018 (S. Watson) C.L. Hitchc. & Maguire http://plants.usda.gov/java/profile?symbol=SISCP \N \N \N \N Caryophyllaceae Silene 1 scouleri 1 subsp. pringlei 1 \N \N \N \N var. grisea Accepted Silene scouleri ssp. pringlei (S. Watson) C.L. Hitchc. & Maguire subspecies http://plants.usda.gov/java/profile?symbol=SISCP Silene scouleri Caryophyllaceae false usda [Partial match] \N t Caryophyllaceae Silene scouleri ssp. pringlei (S. Watson) C.L. Hitchc. & Maguire var. grisea Silene scouleri Silene scouleri subsp. pringlei Silene scouleri subsp. pringlei (S. Watson) C.L. Hitchc. & Maguire t Caryophyllaceae Silene scouleri {Silene,scouleri} Silene scouleri Silene scouleri ssp. pringlei {ssp.,pringlei} ssp. pringlei Silene scouleri ssp. pringlei (S. Watson) C.L. Hitchc. & Maguire accepted subspecies Caryophyllaceae Silene scouleri Silene scouleri Silene scouleri ssp. scouleri Silene scouleri ssp. pringlei (S. Watson) C.L. Hitchc. & Maguire Silene scouleri ssp. pringlei (S. Watson) C.L. Hitchc. & Maguire
|
|
1943 | 2024 |
\. |
1944 | 2025 |
|
1945 | 2026 |
|
trunk/inputs/test_taxonomic_names/_scrub/public.test_taxonomic_names.sql | ||
---|---|---|
22 | 22 |
-- Name: SCHEMA "public.test_taxonomic_names"; Type: COMMENT; Schema: -; Owner: bien |
23 | 23 |
-- |
24 | 24 |
|
25 |
COMMENT ON SCHEMA "public.test_taxonomic_names" IS 'Version: public (2014-7-25 12:12:04 PDT)';
|
|
25 |
COMMENT ON SCHEMA "public.test_taxonomic_names" IS 'Version: public (2014-7-26 21:26:29 PDT)';
|
|
26 | 26 |
|
27 | 27 |
|
28 | 28 |
SET search_path = "public.test_taxonomic_names", pg_catalog; |
... | ... | |
763 | 763 |
ALTER FUNCTION "public.test_taxonomic_names"._taxonomic_name_is_epithet(rank taxonrank) OWNER TO bien; |
764 | 764 |
|
765 | 765 |
-- |
766 |
-- Name: analytical_stem_view_modify(); Type: FUNCTION; Schema: public.test_taxonomic_names; Owner: bien |
|
766 |
-- Name: analytical_stem_view_modify(boolean); Type: FUNCTION; Schema: public.test_taxonomic_names; Owner: bien
|
|
767 | 767 |
-- |
768 | 768 |
|
769 |
CREATE FUNCTION analytical_stem_view_modify() RETURNS void |
|
769 |
CREATE FUNCTION analytical_stem_view_modify(repopulate boolean DEFAULT true) RETURNS void
|
|
770 | 770 |
LANGUAGE sql |
771 | 771 |
AS $_$ |
772 |
SELECT util.recreate($$ |
|
773 |
DROP TABLE IF EXISTS analytical_stem; |
|
774 |
SELECT util.copy('analytical_stem_view'::regclass, 'analytical_stem'); |
|
772 |
SELECT util.rematerialize_view('analytical_stem', 'analytical_stem_view', $$ |
|
775 | 773 |
ALTER TABLE analytical_stem ADD COLUMN "TAXONOBSERVATION_ID__@VegBank__.taxonObservation@vegpath.org" serial PRIMARY KEY; |
776 | 774 |
COMMENT ON COLUMN analytical_stem."TAXONOBSERVATION_ID__@VegBank__.taxonObservation@vegpath.org" IS 'VegBIEN-autogenerated "identifier assigned to each unique observation of a taxon in a plot"'; |
777 | 775 |
|
... | ... | |
785 | 783 |
CREATE INDEX ON analytical_stem ("datasource__@Brad__.identifier_examples@vegpath.org", "[custodial_]institutionCode[s]__@DwC__@vegpath.org", "collectionCode__@DwC__@vegpath.org", "catalogNumber__@DwC__@vegpath.org"); |
786 | 784 |
CREATE INDEX ON analytical_stem ("datasource__@Brad__.identifier_examples@vegpath.org", "projectID__@VegX__.plotObservation@vegpath.org", "locationID__@DwC__@vegpath.org", "eventDate__@DwC__@vegpath.org"); |
787 | 785 |
CREATE INDEX ON analytical_stem ("speciesBinomialWithMorphospecies__@VegCore__@vegpath.org"); |
788 |
$$); |
|
786 |
$$, repopulate);
|
|
789 | 787 |
$_$; |
790 | 788 |
|
791 | 789 |
|
792 |
ALTER FUNCTION "public.test_taxonomic_names".analytical_stem_view_modify() OWNER TO bien; |
|
790 |
ALTER FUNCTION "public.test_taxonomic_names".analytical_stem_view_modify(repopulate boolean) OWNER TO bien;
|
|
793 | 791 |
|
794 | 792 |
-- |
795 | 793 |
-- Name: datasource_publish(text, anyelement); Type: FUNCTION; Schema: public.test_taxonomic_names; Owner: bien |
... | ... | |
961 | 959 |
ALTER FUNCTION "public.test_taxonomic_names".delete_scrubbed_taxondeterminations(datasource text) OWNER TO bien; |
962 | 960 |
|
963 | 961 |
-- |
964 |
-- Name: geoscrub_input_view_modify(); Type: FUNCTION; Schema: public.test_taxonomic_names; Owner: bien |
|
962 |
-- Name: geoscrub_input_view_modify(boolean); Type: FUNCTION; Schema: public.test_taxonomic_names; Owner: bien
|
|
965 | 963 |
-- |
966 | 964 |
|
967 |
CREATE FUNCTION geoscrub_input_view_modify() RETURNS void |
|
965 |
CREATE FUNCTION geoscrub_input_view_modify(repopulate boolean DEFAULT true) RETURNS void
|
|
968 | 966 |
LANGUAGE sql |
969 |
AS $$ |
|
970 |
DROP TABLE IF EXISTS geoscrub_input; |
|
971 |
SELECT util.copy('geoscrub_input_view'::regclass, 'geoscrub_input'); |
|
972 |
|
|
967 |
AS $_$ |
|
968 |
SELECT util.rematerialize_view('geoscrub_input', 'geoscrub_input_view', $$ |
|
973 | 969 |
GRANT SELECT ON TABLE geoscrub_input TO bien_read; |
974 | 970 |
GRANT SELECT ON TABLE geoscrub_input_view TO bien_read; |
975 |
$$; |
|
971 |
$$, repopulate); |
|
972 |
$_$; |
|
976 | 973 |
|
977 | 974 |
|
978 |
ALTER FUNCTION "public.test_taxonomic_names".geoscrub_input_view_modify() OWNER TO bien; |
|
975 |
ALTER FUNCTION "public.test_taxonomic_names".geoscrub_input_view_modify(repopulate boolean) OWNER TO bien;
|
|
979 | 976 |
|
980 | 977 |
-- |
981 | 978 |
-- Name: in_iucn_red_list(text, text, anyelement); Type: FUNCTION; Schema: public.test_taxonomic_names; Owner: bien |
... | ... | |
1054 | 1051 |
|
1055 | 1052 |
|
1056 | 1053 |
-- |
1057 |
-- Name: iucn_red_list_view_modify(); Type: FUNCTION; Schema: public.test_taxonomic_names; Owner: bien |
|
1054 |
-- Name: iucn_red_list_view_modify(boolean); Type: FUNCTION; Schema: public.test_taxonomic_names; Owner: bien
|
|
1058 | 1055 |
-- |
1059 | 1056 |
|
1060 |
CREATE FUNCTION iucn_red_list_view_modify() RETURNS void |
|
1057 |
CREATE FUNCTION iucn_red_list_view_modify(repopulate boolean DEFAULT true) RETURNS void
|
|
1061 | 1058 |
LANGUAGE sql |
1062 |
AS $$ |
|
1063 |
SELECT util.rematerialize_view('iucn_red_list', 'iucn_red_list_view'); |
|
1064 |
|
|
1059 |
AS $_$ |
|
1060 |
SELECT util.rematerialize_view('iucn_red_list', 'iucn_red_list_view', $$ |
|
1065 | 1061 |
ALTER TABLE iucn_red_list ADD PRIMARY KEY(accepted_family, accepted_species_binomial); |
1066 |
$$; |
|
1062 |
$$, repopulate); |
|
1063 |
$_$; |
|
1067 | 1064 |
|
1068 | 1065 |
|
1069 |
ALTER FUNCTION "public.test_taxonomic_names".iucn_red_list_view_modify() OWNER TO bien; |
|
1066 |
ALTER FUNCTION "public.test_taxonomic_names".iucn_red_list_view_modify(repopulate boolean) OWNER TO bien;
|
|
1070 | 1067 |
|
1071 | 1068 |
-- |
1072 | 1069 |
-- Name: location__pull_forward_from_parent(); Type: FUNCTION; Schema: public.test_taxonomic_names; Owner: bien |
... | ... | |
1656 | 1653 |
|
1657 | 1654 |
|
1658 | 1655 |
-- |
1659 |
-- Name: provider_count_view_modify(); Type: FUNCTION; Schema: public.test_taxonomic_names; Owner: bien |
|
1656 |
-- Name: provider_count_view_modify(boolean); Type: FUNCTION; Schema: public.test_taxonomic_names; Owner: bien
|
|
1660 | 1657 |
-- |
1661 | 1658 |
|
1662 |
CREATE FUNCTION provider_count_view_modify() RETURNS void |
|
1659 |
CREATE FUNCTION provider_count_view_modify(repopulate boolean DEFAULT true) RETURNS void
|
|
1663 | 1660 |
LANGUAGE sql |
1664 |
AS $$ |
|
1665 |
DROP TABLE IF EXISTS provider_count; |
|
1666 |
SELECT util.copy('provider_count_view'::regclass, 'provider_count'); |
|
1667 |
|
|
1661 |
AS $_$ |
|
1662 |
SELECT util.rematerialize_view('provider_count', 'provider_count_view', $$ |
|
1668 | 1663 |
GRANT SELECT ON TABLE provider_count TO bien_read; |
1669 | 1664 |
GRANT SELECT ON TABLE provider_count TO public_; |
1670 | 1665 |
GRANT SELECT ON TABLE provider_count_view TO bien_read; |
1671 | 1666 |
GRANT SELECT ON TABLE provider_count_view TO public_; |
1672 | 1667 |
|
1673 | 1668 |
ALTER TABLE provider_count ADD PRIMARY KEY (dataprovider, dataset); |
1674 |
$$; |
|
1669 |
$$, repopulate); |
|
1670 |
$_$; |
|
1675 | 1671 |
|
1676 | 1672 |
|
1677 |
ALTER FUNCTION "public.test_taxonomic_names".provider_count_view_modify() OWNER TO bien; |
|
1673 |
ALTER FUNCTION "public.test_taxonomic_names".provider_count_view_modify(repopulate boolean) OWNER TO bien;
|
|
1678 | 1674 |
|
1679 | 1675 |
-- |
1680 | 1676 |
-- Name: public_schema_publish(text); Type: FUNCTION; Schema: public.test_taxonomic_names; Owner: bien |
... | ... | |
1900 | 1896 |
|
1901 | 1897 |
|
1902 | 1898 |
-- |
1903 |
-- Name: taxon_trait_view_modify(); Type: FUNCTION; Schema: public.test_taxonomic_names; Owner: bien |
|
1899 |
-- Name: taxon_trait_view_modify(boolean); Type: FUNCTION; Schema: public.test_taxonomic_names; Owner: bien
|
|
1904 | 1900 |
-- |
1905 | 1901 |
|
1906 |
CREATE FUNCTION taxon_trait_view_modify() RETURNS void |
|
1902 |
CREATE FUNCTION taxon_trait_view_modify(repopulate boolean DEFAULT true) RETURNS void
|
|
1907 | 1903 |
LANGUAGE sql |
1908 |
AS $$ |
|
1909 |
DROP TABLE IF EXISTS taxon_trait; |
|
1910 |
SELECT util.copy('taxon_trait_view'::regclass, 'taxon_trait'); |
|
1911 |
|
|
1904 |
AS $_$ |
|
1905 |
SELECT util.rematerialize_view('taxon_trait', 'taxon_trait_view', $$ |
|
1912 | 1906 |
GRANT SELECT ON TABLE taxon_trait TO bien_read; |
1913 | 1907 |
GRANT SELECT ON TABLE taxon_trait_view TO bien_read; |
1914 | 1908 |
|
... | ... | |
1916 | 1910 |
ALTER TABLE taxon_trait ALTER COLUMN "measurementType" SET NOT NULL; |
1917 | 1911 |
|
1918 | 1912 |
CREATE INDEX ON taxon_trait ("scientificName", "measurementType" ); |
1919 |
$$; |
|
1913 |
$$, repopulate); |
|
1914 |
$_$; |
|
1920 | 1915 |
|
1921 | 1916 |
|
1922 |
ALTER FUNCTION "public.test_taxonomic_names".taxon_trait_view_modify() OWNER TO bien; |
|
1917 |
ALTER FUNCTION "public.test_taxonomic_names".taxon_trait_view_modify(repopulate boolean) OWNER TO bien;
|
|
1923 | 1918 |
|
1924 | 1919 |
-- |
1925 | 1920 |
-- Name: taxondetermination_set_iscurrent(integer); Type: FUNCTION; Schema: public.test_taxonomic_names; Owner: bien |
... | ... | |
2382 | 2377 |
"cultivatedBasis_bien" text, |
2383 | 2378 |
"occurrenceRemarks__@DwC__@vegpath.org" text, |
2384 | 2379 |
"coverPercent__@VegX__.attribute.ordinal@vegpath.org" double precision, |
2385 |
"stem_dbh[_cm]__@SALVIAS__.Plot_data@vegpath.org" double precision, |
|
2386 |
"stemHeight[_m]__@VegBank__.stemCount@vegpath.org" double precision, |
|
2387 |
"[tag=]identificationLabel__@VegX__.individual@vegpath.org" text, |
|
2388 |
"relativeX[_m]__@VegX__.individualOrganismObs@vegpath.org" double precision, |
|
2389 |
"relativeY[_m]__@VegX__.individualOrganismObs@vegpath.org" double precision, |
|
2390 | 2380 |
"taxonObservation[.id]__@VegBank__@vegpath.org" text, |
2391 | 2381 |
"taxonNameUsageConcept.authorCode__@VegX__@vegpath.org" text, |
2392 | 2382 |
"aggregateOrganismObservation.id__@VegX__@vegpath.org" text, |
2393 | 2383 |
"individualOrganismObservation.id__@VegX__@vegpath.org" text, |
2394 | 2384 |
"individualID__@DwC__@vegpath.org" text, |
2395 | 2385 |
"individualCount__@DwC__@vegpath.org" integer, |
2386 |
"plantobservation.""_id__@VegBIEN__.public@vegpath.org" integer, |
|
2387 |
"stem_dbh[_cm]__@SALVIAS__.Plot_data@vegpath.org" double precision, |
|
2388 |
"stemHeight[_m]__@VegBank__.stemCount@vegpath.org" double precision, |
|
2389 |
"[tag=]identificationLabel__@VegX__.individual@vegpath.org" text, |
|
2390 |
"relativeX[_m]__@VegX__.individualOrganismObs@vegpath.org" double precision, |
|
2391 |
"relativeY[_m]__@VegX__.individualOrganismObs@vegpath.org" double precision, |
|
2396 | 2392 |
"stemCode__@VegBank__.stemLocation@vegpath.org" text, |
2397 | 2393 |
"TAXONOBSERVATION_ID__@VegBank__.taxonObservation@vegpath.org" integer NOT NULL |
2398 | 2394 |
); |
... | ... | |
2835 | 2831 |
|
2836 | 2832 |
|
2837 | 2833 |
-- |
2838 |
-- Name: COLUMN analytical_stem."stem_dbh[_cm]__@SALVIAS__.Plot_data@vegpath.org"; Type: COMMENT; Schema: public.test_taxonomic_names; Owner: bien
|
|
2834 |
-- Name: COLUMN analytical_stem."taxonObservation[.id]__@VegBank__@vegpath.org"; Type: COMMENT; Schema: public.test_taxonomic_names; Owner: bien
|
|
2839 | 2835 |
-- |
2840 | 2836 |
|
2841 |
COMMENT ON COLUMN analytical_stem."stem_dbh[_cm]__@SALVIAS__.Plot_data@vegpath.org" IS '"Diameter at breast height of this stem (usually taken at 1.3 meters, but may vary)"';
|
|
2837 |
COMMENT ON COLUMN analytical_stem."taxonObservation[.id]__@VegBank__@vegpath.org" IS '"identifier assigned [by the datasource] to each unique observation of a taxon in a plot"';
|
|
2842 | 2838 |
|
2843 | 2839 |
|
2844 | 2840 |
-- |
2845 |
-- Name: COLUMN analytical_stem."stemHeight[_m]__@VegBank__.stemCount@vegpath.org"; Type: COMMENT; Schema: public.test_taxonomic_names; Owner: bien
|
|
2841 |
-- Name: COLUMN analytical_stem."taxonNameUsageConcept.authorCode__@VegX__@vegpath.org"; Type: COMMENT; Schema: public.test_taxonomic_names; Owner: bien
|
|
2846 | 2842 |
-- |
2847 | 2843 |
|
2848 |
COMMENT ON COLUMN analytical_stem."stemHeight[_m]__@VegBank__.stemCount@vegpath.org" IS '"The measured height of the stem in meters"';
|
|
2844 |
COMMENT ON COLUMN analytical_stem."taxonNameUsageConcept.authorCode__@VegX__@vegpath.org" IS '"Verbatum short code used by the author to signify the species at time of observation"';
|
|
2849 | 2845 |
|
2850 | 2846 |
|
2851 | 2847 |
-- |
2852 |
-- Name: COLUMN analytical_stem."[tag=]identificationLabel__@VegX__.individual@vegpath.org"; Type: COMMENT; Schema: public.test_taxonomic_names; Owner: bien
|
|
2848 |
-- Name: COLUMN analytical_stem."aggregateOrganismObservation.id__@VegX__@vegpath.org"; Type: COMMENT; Schema: public.test_taxonomic_names; Owner: bien
|
|
2853 | 2849 |
-- |
2854 | 2850 |
|
2855 |
COMMENT ON COLUMN analytical_stem."[tag=]identificationLabel__@VegX__.individual@vegpath.org" IS '"A label that is associated with an individual (e.g. a numerical tree tag)"';
|
|
2851 |
COMMENT ON COLUMN analytical_stem."aggregateOrganismObservation.id__@VegX__@vegpath.org" IS 'the ID for "An observation applying to all occurrences of an organism based on an aggregation factor. It contains an AggregateValue, which is an assessment of the overall occurrence of an organism in a Plot (e.g. number of stems, percentage cover, total biomass, basal area)."';
|
|
2856 | 2852 |
|
2857 | 2853 |
|
2858 | 2854 |
-- |
2859 |
-- Name: COLUMN analytical_stem."relativeX[_m]__@VegX__.individualOrganismObs@vegpath.org"; Type: COMMENT; Schema: public.test_taxonomic_names; Owner: bien
|
|
2855 |
-- Name: COLUMN analytical_stem."individualOrganismObservation.id__@VegX__@vegpath.org"; Type: COMMENT; Schema: public.test_taxonomic_names; Owner: bien
|
|
2860 | 2856 |
-- |
2861 | 2857 |
|
2862 |
COMMENT ON COLUMN analytical_stem."relativeX[_m]__@VegX__.individualOrganismObs@vegpath.org" IS '"The X-coordinate of the related item position in m. The user will enter the relative position of related item with respect to the plot origin (in meters) with the x-axis defined by the plot azimuth."';
|
|
2858 |
COMMENT ON COLUMN analytical_stem."individualOrganismObservation.id__@VegX__@vegpath.org" IS 'the ID for "An observation applying to one occurrence of an organism (or part of an organism). It is a container for measurements made on the organism (e.g. diameter, height, crown dimensions, biomass, growth form, number of stems)."';
|
|
2863 | 2859 |
|
2864 | 2860 |
|
2865 | 2861 |
-- |
2866 |
-- Name: COLUMN analytical_stem."relativeY[_m]__@VegX__.individualOrganismObs@vegpath.org"; Type: COMMENT; Schema: public.test_taxonomic_names; Owner: bien
|
|
2862 |
-- Name: COLUMN analytical_stem."individualID__@DwC__@vegpath.org"; Type: COMMENT; Schema: public.test_taxonomic_names; Owner: bien
|
|
2867 | 2863 |
-- |
2868 | 2864 |
|
2869 |
COMMENT ON COLUMN analytical_stem."relativeY[_m]__@VegX__.individualOrganismObs@vegpath.org" IS '"The Y-coordinate of the relatedSpatialItem position in m. The user will enter the relative position of relatedSpatialItems with respect to the plot origin (in meters) with the y-axis defined by the plot azimuth."';
|
|
2865 |
COMMENT ON COLUMN analytical_stem."individualID__@DwC__@vegpath.org" IS '"An identifier for an individual or named group of individual organisms represented in the Occurrence"';
|
|
2870 | 2866 |
|
2871 | 2867 |
|
2872 | 2868 |
-- |
2873 |
-- Name: COLUMN analytical_stem."taxonObservation[.id]__@VegBank__@vegpath.org"; Type: COMMENT; Schema: public.test_taxonomic_names; Owner: bien
|
|
2869 |
-- Name: COLUMN analytical_stem."individualCount__@DwC__@vegpath.org"; Type: COMMENT; Schema: public.test_taxonomic_names; Owner: bien
|
|
2874 | 2870 |
-- |
2875 | 2871 |
|
2876 |
COMMENT ON COLUMN analytical_stem."taxonObservation[.id]__@VegBank__@vegpath.org" IS '"identifier assigned [by the datasource] to each unique observation of a taxon in a plot"';
|
|
2872 |
COMMENT ON COLUMN analytical_stem."individualCount__@DwC__@vegpath.org" IS '"The number of individuals represented present at the time of the Occurrence"';
|
|
2877 | 2873 |
|
2878 | 2874 |
|
2879 | 2875 |
-- |
2880 |
-- Name: COLUMN analytical_stem."taxonNameUsageConcept.authorCode__@VegX__@vegpath.org"; Type: COMMENT; Schema: public.test_taxonomic_names; Owner: bien
|
|
2876 |
-- Name: COLUMN analytical_stem."stem_dbh[_cm]__@SALVIAS__.Plot_data@vegpath.org"; Type: COMMENT; Schema: public.test_taxonomic_names; Owner: bien
|
|
2881 | 2877 |
-- |
2882 | 2878 |
|
2883 |
COMMENT ON COLUMN analytical_stem."taxonNameUsageConcept.authorCode__@VegX__@vegpath.org" IS '"Verbatum short code used by the author to signify the species at time of observation"';
|
|
2879 |
COMMENT ON COLUMN analytical_stem."stem_dbh[_cm]__@SALVIAS__.Plot_data@vegpath.org" IS '"Diameter at breast height of this stem (usually taken at 1.3 meters, but may vary)"';
|
|
2884 | 2880 |
|
2885 | 2881 |
|
2886 | 2882 |
-- |
2887 |
-- Name: COLUMN analytical_stem."aggregateOrganismObservation.id__@VegX__@vegpath.org"; Type: COMMENT; Schema: public.test_taxonomic_names; Owner: bien
|
|
2883 |
-- Name: COLUMN analytical_stem."stemHeight[_m]__@VegBank__.stemCount@vegpath.org"; Type: COMMENT; Schema: public.test_taxonomic_names; Owner: bien
|
|
2888 | 2884 |
-- |
2889 | 2885 |
|
2890 |
COMMENT ON COLUMN analytical_stem."aggregateOrganismObservation.id__@VegX__@vegpath.org" IS 'the ID for "An observation applying to all occurrences of an organism based on an aggregation factor. It contains an AggregateValue, which is an assessment of the overall occurrence of an organism in a Plot (e.g. number of stems, percentage cover, total biomass, basal area)."';
|
|
2886 |
COMMENT ON COLUMN analytical_stem."stemHeight[_m]__@VegBank__.stemCount@vegpath.org" IS '"The measured height of the stem in meters"';
|
|
2891 | 2887 |
|
2892 | 2888 |
|
2893 | 2889 |
-- |
2894 |
-- Name: COLUMN analytical_stem."individualOrganismObservation.id__@VegX__@vegpath.org"; Type: COMMENT; Schema: public.test_taxonomic_names; Owner: bien
|
|
2890 |
-- Name: COLUMN analytical_stem."[tag=]identificationLabel__@VegX__.individual@vegpath.org"; Type: COMMENT; Schema: public.test_taxonomic_names; Owner: bien
|
|
2895 | 2891 |
-- |
2896 | 2892 |
|
2897 |
COMMENT ON COLUMN analytical_stem."individualOrganismObservation.id__@VegX__@vegpath.org" IS 'the ID for "An observation applying to one occurrence of an organism (or part of an organism). It is a container for measurements made on the organism (e.g. diameter, height, crown dimensions, biomass, growth form, number of stems)."';
|
|
2893 |
COMMENT ON COLUMN analytical_stem."[tag=]identificationLabel__@VegX__.individual@vegpath.org" IS '"A label that is associated with an individual (e.g. a numerical tree tag)"';
|
|
2898 | 2894 |
|
2899 | 2895 |
|
2900 | 2896 |
-- |
2901 |
-- Name: COLUMN analytical_stem."individualID__@DwC__@vegpath.org"; Type: COMMENT; Schema: public.test_taxonomic_names; Owner: bien
|
|
2897 |
-- Name: COLUMN analytical_stem."relativeX[_m]__@VegX__.individualOrganismObs@vegpath.org"; Type: COMMENT; Schema: public.test_taxonomic_names; Owner: bien
|
|
2902 | 2898 |
-- |
2903 | 2899 |
|
2904 |
COMMENT ON COLUMN analytical_stem."individualID__@DwC__@vegpath.org" IS '"An identifier for an individual or named group of individual organisms represented in the Occurrence"';
|
|
2900 |
COMMENT ON COLUMN analytical_stem."relativeX[_m]__@VegX__.individualOrganismObs@vegpath.org" IS '"The X-coordinate of the related item position in m. The user will enter the relative position of related item with respect to the plot origin (in meters) with the x-axis defined by the plot azimuth."';
|
|
2905 | 2901 |
|
2906 | 2902 |
|
2907 | 2903 |
-- |
2908 |
-- Name: COLUMN analytical_stem."individualCount__@DwC__@vegpath.org"; Type: COMMENT; Schema: public.test_taxonomic_names; Owner: bien
|
|
2904 |
-- Name: COLUMN analytical_stem."relativeY[_m]__@VegX__.individualOrganismObs@vegpath.org"; Type: COMMENT; Schema: public.test_taxonomic_names; Owner: bien
|
|
2909 | 2905 |
-- |
2910 | 2906 |
|
2911 |
COMMENT ON COLUMN analytical_stem."individualCount__@DwC__@vegpath.org" IS '"The number of individuals represented present at the time of the Occurrence"';
|
|
2907 |
COMMENT ON COLUMN analytical_stem."relativeY[_m]__@VegX__.individualOrganismObs@vegpath.org" IS '"The Y-coordinate of the relatedSpatialItem position in m. The user will enter the relative position of relatedSpatialItems with respect to the plot origin (in meters) with the y-axis defined by the plot azimuth."';
|
|
2912 | 2908 |
|
2913 | 2909 |
|
2914 | 2910 |
-- |
... | ... | |
5303 | 5299 |
|
5304 | 5300 |
|
5305 | 5301 |
-- |
5306 |
-- Name: analytical_stem_view; Type: VIEW; Schema: public.test_taxonomic_names; Owner: bien
|
|
5302 |
-- Name: viewFullOccurrence_individual_view; Type: VIEW; Schema: public.test_taxonomic_names; Owner: bien
|
|
5307 | 5303 |
-- |
5308 | 5304 |
|
5309 |
CREATE VIEW analytical_stem_view AS
|
|
5305 |
CREATE VIEW "viewFullOccurrence_individual_view" AS
|
|
5310 | 5306 |
SELECT "plot.**"."datasource__@Brad__.identifier_examples@vegpath.org", |
5311 | 5307 |
"plot.**"."country__@DwC__@vegpath.org", |
5312 | 5308 |
"plot.**"."stateProvince__@DwC__@vegpath.org", |
... | ... | |
5372 | 5368 |
END AS "cultivatedBasis_bien", |
5373 | 5369 |
aggregateoccurrence.notes AS "occurrenceRemarks__@DwC__@vegpath.org", |
5374 | 5370 |
_fraction_to_percent(aggregateoccurrence.cover_fraction) AS "coverPercent__@VegX__.attribute.ordinal@vegpath.org", |
5375 |
_m_to_cm(stemobservation.diameterbreastheight_m) AS "stem_dbh[_cm]__@SALVIAS__.Plot_data@vegpath.org", |
|
5376 |
stemobservation.height_m AS "stemHeight[_m]__@VegBank__.stemCount@vegpath.org", |
|
5377 |
stemobservation.tag AS "[tag=]identificationLabel__@VegX__.individual@vegpath.org", |
|
5378 |
stemobservation.xposition_m AS "relativeX[_m]__@VegX__.individualOrganismObs@vegpath.org", |
|
5379 |
stemobservation.yposition_m AS "relativeY[_m]__@VegX__.individualOrganismObs@vegpath.org", |
|
5380 | 5371 |
taxonoccurrence.sourceaccessioncode AS "taxonObservation[.id]__@VegBank__@vegpath.org", |
5381 | 5372 |
taxonoccurrence.authortaxoncode AS "taxonNameUsageConcept.authorCode__@VegX__@vegpath.org", |
5382 | 5373 |
aggregateoccurrence.sourceaccessioncode AS "aggregateOrganismObservation.id__@VegX__@vegpath.org", |
5383 | 5374 |
plantobservation.sourceaccessioncode AS "individualOrganismObservation.id__@VegX__@vegpath.org", |
5384 | 5375 |
plantobservation.authorplantcode AS "individualID__@DwC__@vegpath.org", |
5385 | 5376 |
aggregateoccurrence.count AS "individualCount__@DwC__@vegpath.org", |
5386 |
stemobservation.authorstemcode AS "stemCode__@VegBank__.stemLocation@vegpath.org"
|
|
5387 |
FROM (((((((((((((("plot.**"
|
|
5377 |
plantobservation.plantobservation_id AS "plantobservation.""_id__@VegBIEN__.public@vegpath.org"
|
|
5378 |
FROM ((((((((((((("plot.**" |
|
5388 | 5379 |
LEFT JOIN taxonoccurrence ON ((taxonoccurrence.locationevent_id = "plot.**"."locationevent.locationevent_id__@VegBIEN__.public@vegpath.org"))) |
5389 | 5380 |
LEFT JOIN party collector ON ((collector.party_id = taxonoccurrence.collector_id))) |
5390 | 5381 |
LEFT JOIN aggregateoccurrence USING (taxonoccurrence_id)) |
5391 | 5382 |
LEFT JOIN plantobservation USING (aggregateoccurrence_id)) |
5392 |
LEFT JOIN stemobservation USING (plantobservation_id)) |
|
5393 | 5383 |
LEFT JOIN specimenreplicate USING (plantobservation_id)) |
5394 | 5384 |
LEFT JOIN sourcelist ON ((sourcelist.sourcelist_id = specimenreplicate.duplicate_institutions_sourcelist_id))) |
5395 | 5385 |
LEFT JOIN taxondetermination ON (((taxondetermination.taxonoccurrence_id = taxonoccurrence.taxonoccurrence_id) AND taxondetermination.iscurrent))) |
... | ... | |
5401 | 5391 |
LEFT JOIN cultivated_family_locations ON (((cultivated_family_locations.family = taxon_scrub.scrubbed_family) AND (cultivated_family_locations.country = "plot.**"."country__@DwC__@vegpath.org")))); |
5402 | 5392 |
|
5403 | 5393 |
|
5394 |
ALTER TABLE "public.test_taxonomic_names"."viewFullOccurrence_individual_view" OWNER TO bien; |
|
5395 |
|
|
5396 |
-- |
|
5397 |
-- Name: COLUMN "viewFullOccurrence_individual_view"."datasource__@Brad__.identifier_examples@vegpath.org"; Type: COMMENT; Schema: public.test_taxonomic_names; Owner: bien |
|
5398 |
-- |
|
5399 |
|
|
5400 |
COMMENT ON COLUMN "viewFullOccurrence_individual_view"."datasource__@Brad__.identifier_examples@vegpath.org" IS '"the person [or] institution that provided the data [to this database] (the *proximate* data provider)"'; |
|
5401 |
|
|
5402 |
|
|
5403 |
-- |
|
5404 |
-- Name: COLUMN "viewFullOccurrence_individual_view"."country__@DwC__@vegpath.org"; Type: COMMENT; Schema: public.test_taxonomic_names; Owner: bien |
|
5405 |
-- |
|
5406 |
|
|
5407 |
COMMENT ON COLUMN "viewFullOccurrence_individual_view"."country__@DwC__@vegpath.org" IS 'http://geoscrub.geoscrub_output.acceptedCountry__@VegBIEN__@vegpath.org; |
|
5408 |
"The name of the country or major administrative unit in which the Location occurs"'; |
|
5409 |
|
|
5410 |
|
|
5411 |
-- |
|
5412 |
-- Name: COLUMN "viewFullOccurrence_individual_view"."stateProvince__@DwC__@vegpath.org"; Type: COMMENT; Schema: public.test_taxonomic_names; Owner: bien |
|
5413 |
-- |
|
5414 |
|
|
5415 |
COMMENT ON COLUMN "viewFullOccurrence_individual_view"."stateProvince__@DwC__@vegpath.org" IS '"The name of the next smaller administrative region than country (state, province, canton, department, region, etc.) in which the Location occurs"'; |
|
5416 |
|
|
5417 |
|
|
5418 |
-- |
|
5419 |
-- Name: COLUMN "viewFullOccurrence_individual_view"."county__@DwC__@vegpath.org"; Type: COMMENT; Schema: public.test_taxonomic_names; Owner: bien |
|
5420 |
-- |
|
5421 |
|
|
5422 |
COMMENT ON COLUMN "viewFullOccurrence_individual_view"."county__@DwC__@vegpath.org" IS '"The full, unabbreviated name of the next smaller administrative region than stateProvince (county, shire, department, etc.) in which the Location occurs"'; |
|
5423 |
|
|
5424 |
|
|
5425 |
-- |
|
5426 |
-- Name: COLUMN "viewFullOccurrence_individual_view"."locality__@DwC__@vegpath.org"; Type: COMMENT; Schema: public.test_taxonomic_names; Owner: bien |
|
5427 |
-- |
|
5428 |
|
|
5429 |
COMMENT ON COLUMN "viewFullOccurrence_individual_view"."locality__@DwC__@vegpath.org" IS '"The specific description of the place"'; |
|
5430 |
|
|
5431 |
|
|
5432 |
-- |
|
5433 |
-- Name: COLUMN "viewFullOccurrence_individual_view"."decimalLatitude__@DwC__@vegpath.org"; Type: COMMENT; Schema: public.test_taxonomic_names; Owner: bien |
|
5434 |
-- |
|
5435 |
|
|
5436 |
COMMENT ON COLUMN "viewFullOccurrence_individual_view"."decimalLatitude__@DwC__@vegpath.org" IS '"The geographic latitude (in decimal degrees, using the spatial reference system given in geodeticDatum) of the geographic center of a Location"'; |
|
5437 |
|
|
5438 |
|
|
5439 |
-- |
|
5440 |
-- Name: COLUMN "viewFullOccurrence_individual_view"."decimalLongitude__@DwC__@vegpath.org"; Type: COMMENT; Schema: public.test_taxonomic_names; Owner: bien |
|
5441 |
-- |
|
5442 |
|
|
5443 |
COMMENT ON COLUMN "viewFullOccurrence_individual_view"."decimalLongitude__@DwC__@vegpath.org" IS '"The geographic longitude (in decimal degrees, using the spatial reference system given in geodeticDatum) of the geographic center of a Location"'; |
|
5444 |
|
|
5445 |
|
|
5446 |
-- |
|
5447 |
-- Name: COLUMN "viewFullOccurrence_individual_view"."coordinateUncertaintyInMeters__@DwC__@vegpath.org"; Type: COMMENT; Schema: public.test_taxonomic_names; Owner: bien |
|
5448 |
-- |
|
5449 |
|
|
5450 |
COMMENT ON COLUMN "viewFullOccurrence_individual_view"."coordinateUncertaintyInMeters__@DwC__@vegpath.org" IS 'for a point observation, this is the fuzziness of the coordinates. for a plot (or other shape), this is the radius of the circle that circumscribes the entire plot, or the fuzziness, whichever is greater. note that the DwC definition is confusingly worded: it uses the ambiguous term Location, which sometimes refers to the asserted named place, but which they intended to refer to the plot or point.'; |
|
5451 |
|
|
5452 |
|
|
5453 |
-- |
|
5454 |
-- Name: COLUMN "viewFullOccurrence_individual_view"."georeferenceSources__@DwC__@vegpath.org"; Type: COMMENT; Schema: public.test_taxonomic_names; Owner: bien |
|
5455 |
-- |
|
5456 |
|
|
5457 |
COMMENT ON COLUMN "viewFullOccurrence_individual_view"."georeferenceSources__@DwC__@vegpath.org" IS '"A list (concatenated and separated) of maps, gazetteers, or other resources used to georeference the Location, described specifically enough to allow anyone in the future to use the same resources"'; |
|
5458 |
|
|
5459 |
|
|
5460 |
-- |
|
5461 |
-- Name: COLUMN "viewFullOccurrence_individual_view"."georeferenceProtocol__@DwC__@vegpath.org"; Type: COMMENT; Schema: public.test_taxonomic_names; Owner: bien |
|
5462 |
-- |
|
5463 |
|
|
5464 |
COMMENT ON COLUMN "viewFullOccurrence_individual_view"."georeferenceProtocol__@DwC__@vegpath.org" IS '"A description or reference to the methods used to determine the spatial footprint, coordinates, and uncertainties"'; |
|
5465 |
|
|
5466 |
|
|
5467 |
-- |
|
5468 |
-- Name: COLUMN "viewFullOccurrence_individual_view".geovalid_bien; Type: COMMENT; Schema: public.test_taxonomic_names; Owner: bien |
|
5469 |
-- |
|
5470 |
|
|
5471 |
COMMENT ON COLUMN "viewFullOccurrence_individual_view".geovalid_bien IS 'whether the coordinates are within the boundary of the asserted named places'; |
|
5472 |
|
|
5473 |
|
|
5474 |
-- |
|
5475 |
-- Name: COLUMN "viewFullOccurrence_individual_view"."isNewWorld_bien"; Type: COMMENT; Schema: public.test_taxonomic_names; Owner: bien |
|
5476 |
-- |
|
5477 |
|
|
5478 |
COMMENT ON COLUMN "viewFullOccurrence_individual_view"."isNewWorld_bien" IS 'whether the country is in the Americas'; |
|
5479 |
|
|
5480 |
|
|
5481 |
-- |
|
5482 |
-- Name: COLUMN "viewFullOccurrence_individual_view"."projectID__@VegX__.plotObservation@vegpath.org"; Type: COMMENT; Schema: public.test_taxonomic_names; Owner: bien |
|
5483 |
-- |
|
5484 |
|
|
5485 |
COMMENT ON COLUMN "viewFullOccurrence_individual_view"."projectID__@VegX__.plotObservation@vegpath.org" IS 'http://project.sourceaccessioncode__@VegBIEN__.public@vegpath.org; |
|
5486 |
"A reference to a specific ''project''"'; |
|
5487 |
|
|
5488 |
|
|
5489 |
-- |
|
5490 |
-- Name: COLUMN "viewFullOccurrence_individual_view"."projectContributor[s]__@VegBank__@vegpath.org"; Type: COMMENT; Schema: public.test_taxonomic_names; Owner: bien |
|
5491 |
-- |
|
5492 |
|
|
5493 |
COMMENT ON COLUMN "viewFullOccurrence_individual_view"."projectContributor[s]__@VegBank__@vegpath.org" IS '"intersection entit[ies] used to ''link'' a party with a specific project wherein vegetation plots are described"'; |
|
5494 |
|
|
5495 |
|
|
5496 |
-- |
|
5497 |
-- Name: COLUMN "viewFullOccurrence_individual_view"."locationID__@DwC__@vegpath.org"; Type: COMMENT; Schema: public.test_taxonomic_names; Owner: bien |
|
5498 |
-- |
|
5499 |
|
|
5500 |
COMMENT ON COLUMN "viewFullOccurrence_individual_view"."locationID__@DwC__@vegpath.org" IS '"An identifier for the set of location information (data associated with dcterms:Location)"'; |
|
5501 |
|
|
5502 |
|
|
5503 |
-- |
|
5504 |
-- Name: COLUMN "viewFullOccurrence_individual_view"."plotName__@VegX__.plot@vegpath.org"; Type: COMMENT; Schema: public.test_taxonomic_names; Owner: bien |
|
5505 |
-- |
|
5506 |
|
|
5507 |
COMMENT ON COLUMN "viewFullOccurrence_individual_view"."plotName__@VegX__.plot@vegpath.org" IS '"Name or label for a plot"'; |
|
5508 |
|
|
5509 |
|
|
5510 |
-- |
|
5511 |
-- Name: COLUMN "viewFullOccurrence_individual_view"."subplot__@SALVIAS__.Plot_data@vegpath.org"; Type: COMMENT; Schema: public.test_taxonomic_names; Owner: bien |
|
5512 |
-- |
|
5513 |
|
|
5514 |
COMMENT ON COLUMN "viewFullOccurrence_individual_view"."subplot__@SALVIAS__.Plot_data@vegpath.org" IS 'http://location.authorlocationcode__@VegBIEN__.public@vegpath.org; |
|
5515 |
"Code for subplot, line, or any other subsample or subdivision of plot"'; |
|
5516 |
|
|
5517 |
|
|
5518 |
-- |
|
5519 |
-- Name: COLUMN "viewFullOccurrence_individual_view".location__cultivated__bien; Type: COMMENT; Schema: public.test_taxonomic_names; Owner: bien |
|
5520 |
-- |
|
5521 |
|
|
5522 |
COMMENT ON COLUMN "viewFullOccurrence_individual_view".location__cultivated__bien IS 'whether the occurrence''s *location* was flagged as cultivated. note that this refers just to the cultivated status of the *location*; the occurrence may be cultivated even if the location isn''t.'; |
|
5523 |
|
|
5524 |
|
|
5525 |
-- |
|
5526 |
-- Name: COLUMN "viewFullOccurrence_individual_view"."locationevent.locationevent_id__@VegBIEN__.public@vegpath.org"; Type: COMMENT; Schema: public.test_taxonomic_names; Owner: bien |
|
5527 |
-- |
|
5528 |
|
|
5529 |
COMMENT ON COLUMN "viewFullOccurrence_individual_view"."locationevent.locationevent_id__@VegBIEN__.public@vegpath.org" IS 'http://locationevent.locationevent_id__@VegBIEN__.public@vegpath.org; |
|
5530 |
autogenerated ID for locationevent'; |
|
5531 |
|
|
5532 |
|
|
5533 |
-- |
|
5534 |
-- Name: COLUMN "viewFullOccurrence_individual_view"."eventDate__@DwC__@vegpath.org"; Type: COMMENT; Schema: public.test_taxonomic_names; Owner: bien |
|
5535 |
-- |
|
5536 |
|
|
5537 |
COMMENT ON COLUMN "viewFullOccurrence_individual_view"."eventDate__@DwC__@vegpath.org" IS '"The date-time or interval during which an Event occurred. For occurrences, this is the date-time when the event was recorded."'; |
|
5538 |
|
|
5539 |
|
|
5540 |
-- |
|
5541 |
-- Name: COLUMN "viewFullOccurrence_individual_view"."(-minimum-)ElevationInMeters__@DwC__@vegpath.org"; Type: COMMENT; Schema: public.test_taxonomic_names; Owner: bien |
|
5542 |
-- |
|
5543 |
|
|
5544 |
COMMENT ON COLUMN "viewFullOccurrence_individual_view"."(-minimum-)ElevationInMeters__@DwC__@vegpath.org" IS 'the "elevation (altitude, usually above sea level), in meters"'; |
|
5545 |
|
|
5546 |
|
|
5547 |
-- |
|
5548 |
-- Name: COLUMN "viewFullOccurrence_individual_view"."slopeAspect[_deg]__@VegX__.plot@vegpath.org"; Type: COMMENT; Schema: public.test_taxonomic_names; Owner: bien |
|
5549 |
-- |
|
5550 |
|
|
5551 |
COMMENT ON COLUMN "viewFullOccurrence_individual_view"."slopeAspect[_deg]__@VegX__.plot@vegpath.org" IS '"Representative azimuth of slope gradient (0-360 degrees) or as a cardinal direction (e.g. N, S, NE)"'; |
|
5552 |
|
|
5553 |
|
|
5554 |
-- |
|
5555 |
-- Name: COLUMN "viewFullOccurrence_individual_view"."slopeGradient[_deg]__@VegX__.plot@vegpath.org"; Type: COMMENT; Schema: public.test_taxonomic_names; Owner: bien |
|
5556 |
-- |
|
5557 |
|
|
5558 |
COMMENT ON COLUMN "viewFullOccurrence_individual_view"."slopeGradient[_deg]__@VegX__.plot@vegpath.org" IS '"Representative inclination of slope in degrees"'; |
|
5559 |
|
|
5560 |
|
|
5561 |
-- |
|
5562 |
-- Name: COLUMN "viewFullOccurrence_individual_view"."plot.area[_ha]__@VegX__@vegpath.org"; Type: COMMENT; Schema: public.test_taxonomic_names; Owner: bien |
|
5563 |
-- |
|
5564 |
|
|
5565 |
COMMENT ON COLUMN "viewFullOccurrence_individual_view"."plot.area[_ha]__@VegX__@vegpath.org" IS '"Total area of the plot"'; |
|
5566 |
|
|
5567 |
|
|
5568 |
-- |
|
5569 |
-- Name: COLUMN "viewFullOccurrence_individual_view"."samplingProtocol__@DwC__@vegpath.org"; Type: COMMENT; Schema: public.test_taxonomic_names; Owner: bien |
|
5570 |
-- |
|
5571 |
|
|
5572 |
COMMENT ON COLUMN "viewFullOccurrence_individual_view"."samplingProtocol__@DwC__@vegpath.org" IS '"The name of, reference to, or description of the method or protocol used during an Event"'; |
|
5573 |
|
|
5574 |
|
|
5575 |
-- |
|
5576 |
-- Name: COLUMN "viewFullOccurrence_individual_view"."temperature[_C]__@VegX__.plotObs.obsCond@vegpath.org"; Type: COMMENT; Schema: public.test_taxonomic_names; Owner: bien |
|
5577 |
-- |
|
5578 |
|
|
5579 |
COMMENT ON COLUMN "viewFullOccurrence_individual_view"."temperature[_C]__@VegX__.plotObs.obsCond@vegpath.org" IS '"Temperature during observation [...] [in] Celsius"'; |
|
5580 |
|
|
5581 |
|
|
5582 |
-- |
|
5583 |
-- Name: COLUMN "viewFullOccurrence_individual_view"."precip_mm__@SALVIAS__.Plot_metadata@vegpath.org"; Type: COMMENT; Schema: public.test_taxonomic_names; Owner: bien |
|
5584 |
-- |
|
5585 |
|
|
5586 |
COMMENT ON COLUMN "viewFullOccurrence_individual_view"."precip_mm__@SALVIAS__.Plot_metadata@vegpath.org" IS '"Total annual precipitation, in mm"'; |
|
5587 |
|
|
5588 |
|
|
5589 |
-- |
|
5590 |
-- Name: COLUMN "viewFullOccurrence_individual_view"."stratumName__@VegX__.stratum@vegpath.org"; Type: COMMENT; Schema: public.test_taxonomic_names; Owner: bien |
|
5591 |
-- |
|
5592 |
|
|
5593 |
COMMENT ON COLUMN "viewFullOccurrence_individual_view"."stratumName__@VegX__.stratum@vegpath.org" IS '"Name associated with this stratum"'; |
|
5594 |
|
|
5595 |
|
|
5596 |
-- |
|
5597 |
-- Name: COLUMN "viewFullOccurrence_individual_view"."communityConcept.name__@VegX__.communityDet@vegpath.org"; Type: COMMENT; Schema: public.test_taxonomic_names; Owner: bien |
|
5598 |
-- |
|
5599 |
|
|
5600 |
COMMENT ON COLUMN "viewFullOccurrence_individual_view"."communityConcept.name__@VegX__.communityDet@vegpath.org" IS '"A textual label for a community type. A community type is an abstract grouping of organisms that tend to co-occur on the landscape due to shared ecological requirements or preferences."'; |
|
5601 |
|
|
5602 |
|
|
5603 |
-- |
|
5604 |
-- Name: COLUMN "viewFullOccurrence_individual_view"."observationContributor[s]__@VegBank__@vegpath.org"; Type: COMMENT; Schema: public.test_taxonomic_names; Owner: bien |
|
5605 |
-- |
|
5606 |
|
|
5607 |
COMMENT ON COLUMN "viewFullOccurrence_individual_view"."observationContributor[s]__@VegBank__@vegpath.org" IS '"intersection[s] that link[] a party with a specific plot observation event"'; |
|
5608 |
|
|
5609 |
|
|
5610 |
-- |
|
5611 |
-- Name: COLUMN "viewFullOccurrence_individual_view"."[custodial_]institutionCode[s]__@DwC__@vegpath.org"; Type: COMMENT; Schema: public.test_taxonomic_names; Owner: bien |
|
5612 |
-- |
|
5613 |
|
|
5614 |
COMMENT ON COLUMN "viewFullOccurrence_individual_view"."[custodial_]institutionCode[s]__@DwC__@vegpath.org" IS '"The name[s] (or acronym[s]) in use by the institution[s] having custody of the object(s) or information referred to in the record"'; |
|
5615 |
|
|
5616 |
|
|
5617 |
-- |
|
5618 |
-- Name: COLUMN "viewFullOccurrence_individual_view"."collectionCode__@DwC__@vegpath.org"; Type: COMMENT; Schema: public.test_taxonomic_names; Owner: bien |
|
5619 |
-- |
|
5620 |
|
|
5621 |
COMMENT ON COLUMN "viewFullOccurrence_individual_view"."collectionCode__@DwC__@vegpath.org" IS '"The name, acronym, coden, or initialism identifying the collection or data set from which the record was derived"'; |
|
5622 |
|
|
5623 |
|
|
5624 |
-- |
|
5625 |
-- Name: COLUMN "viewFullOccurrence_individual_view"."catalogNumber__@DwC__@vegpath.org"; Type: COMMENT; Schema: public.test_taxonomic_names; Owner: bien |
|
5626 |
-- |
|
5627 |
|
|
5628 |
COMMENT ON COLUMN "viewFullOccurrence_individual_view"."catalogNumber__@DwC__@vegpath.org" IS '"An identifier (preferably unique) for the record within the data set or collection"'; |
|
5629 |
|
|
5630 |
|
|
5631 |
-- |
|
5632 |
-- Name: COLUMN "viewFullOccurrence_individual_view"."occurrenceID__@DwC__@vegpath.org"; Type: COMMENT; Schema: public.test_taxonomic_names; Owner: bien |
|
5633 |
-- |
|
5634 |
|
|
5635 |
COMMENT ON COLUMN "viewFullOccurrence_individual_view"."occurrenceID__@DwC__@vegpath.org" IS '"An identifier for the Occurrence (as opposed to a particular digital record of the occurrence). In the absence of a persistent global unique identifier, construct one from a combination of identifiers in the record that will most closely make the occurrenceID globally unique."'; |
|
5636 |
|
|
5637 |
|
|
5638 |
-- |
|
5639 |
-- Name: COLUMN "viewFullOccurrence_individual_view"."recordedBy__@DwC__@vegpath.org"; Type: COMMENT; Schema: public.test_taxonomic_names; Owner: bien |
|
5640 |
-- |
|
5641 |
|
|
5642 |
COMMENT ON COLUMN "viewFullOccurrence_individual_view"."recordedBy__@DwC__@vegpath.org" IS '"A list (concatenated and separated) of names of people, groups, or organizations responsible for recording the original Occurrence. The primary collector or observer, especially one who applies a personal identifier (recordNumber), should be listed first."'; |
|
5643 |
|
|
5644 |
|
|
5645 |
-- |
|
5646 |
-- Name: COLUMN "viewFullOccurrence_individual_view"."recordNumber__@DwC__@vegpath.org"; Type: COMMENT; Schema: public.test_taxonomic_names; Owner: bien |
|
5647 |
-- |
|
5648 |
|
|
5649 |
COMMENT ON COLUMN "viewFullOccurrence_individual_view"."recordNumber__@DwC__@vegpath.org" IS '"An identifier given to the Occurrence at the time it was recorded. Often serves as a link between field notes and an Occurrence record, such as a specimen collector''s number."'; |
|
5650 |
|
|
5651 |
|
|
5652 |
-- |
|
5653 |
-- Name: COLUMN "viewFullOccurrence_individual_view"."(-Earliest-)DateCollected__-2007-04-17__@DwC__.hist@vegpath.org"; Type: COMMENT; Schema: public.test_taxonomic_names; Owner: bien |
|
5654 |
-- |
|
5655 |
|
|
5656 |
COMMENT ON COLUMN "viewFullOccurrence_individual_view"."(-Earliest-)DateCollected__-2007-04-17__@DwC__.hist@vegpath.org" IS 'the "date-time (Common Era calendar) in a date-time period during which an organism or group of organisms was collected or observed"'; |
|
5657 |
|
|
5658 |
|
|
5659 |
-- |
|
5660 |
-- Name: COLUMN "viewFullOccurrence_individual_view"."[verbatim_]family__@DwC__@vegpath.org"; Type: COMMENT; Schema: public.test_taxonomic_names; Owner: bien |
|
5661 |
-- |
|
5662 |
|
|
5663 |
COMMENT ON COLUMN "viewFullOccurrence_individual_view"."[verbatim_]family__@DwC__@vegpath.org" IS '"The full scientific name of the family in which the taxon is classified [*before* any TNRS scrubbing]"'; |
|
5664 |
|
|
5665 |
|
|
5666 |
-- |
|
5667 |
-- Name: COLUMN "viewFullOccurrence_individual_view"."[verbatim_]scientificName__@DwC__@vegpath.org"; Type: COMMENT; Schema: public.test_taxonomic_names; Owner: bien |
|
5668 |
-- |
|
5669 |
|
|
5670 |
COMMENT ON COLUMN "viewFullOccurrence_individual_view"."[verbatim_]scientificName__@DwC__@vegpath.org" IS '"The full scientific name [*before* any TNRS scrubbing], with authorship and date information if known. When forming part of an Identification, this should be the name in lowest level taxonomic rank that can be determined."'; |
|
5671 |
|
|
5672 |
|
|
5673 |
-- |
|
5674 |
-- Name: COLUMN "viewFullOccurrence_individual_view"."identifiedBy__@DwC__@vegpath.org"; Type: COMMENT; Schema: public.test_taxonomic_names; Owner: bien |
|
5675 |
-- |
|
5676 |
|
|
5677 |
COMMENT ON COLUMN "viewFullOccurrence_individual_view"."identifiedBy__@DwC__@vegpath.org" IS '"A list (concatenated and separated) of names of people, groups, or organizations who assigned the Taxon to the subject"'; |
|
5678 |
|
|
5679 |
|
|
5680 |
-- |
|
5681 |
-- Name: COLUMN "viewFullOccurrence_individual_view"."dateIdentified__@DwC__@vegpath.org"; Type: COMMENT; Schema: public.test_taxonomic_names; Owner: bien |
|
5682 |
-- |
|
5683 |
|
|
5684 |
COMMENT ON COLUMN "viewFullOccurrence_individual_view"."dateIdentified__@DwC__@vegpath.org" IS '"The date on which the subject was identified as representing the Taxon"'; |
|
5685 |
|
|
5686 |
|
|
5687 |
-- |
|
5688 |
-- Name: COLUMN "viewFullOccurrence_individual_view"."identificationRemarks__@DwC__@vegpath.org"; Type: COMMENT; Schema: public.test_taxonomic_names; Owner: bien |
|
5689 |
-- |
|
5690 |
|
|
5691 |
COMMENT ON COLUMN "viewFullOccurrence_individual_view"."identificationRemarks__@DwC__@vegpath.org" IS '"Comments or notes about the Identification"'; |
|
5692 |
|
|
5693 |
|
|
5694 |
-- |
|
5695 |
-- Name: COLUMN "viewFullOccurrence_individual_view"."Family_matched__@TNRS__@vegpath.org"; Type: COMMENT; Schema: public.test_taxonomic_names; Owner: bien |
|
5696 |
-- |
|
5697 |
|
|
5698 |
COMMENT ON COLUMN "viewFullOccurrence_individual_view"."Family_matched__@TNRS__@vegpath.org" IS 'http://TNRS.taxon_scrub.matchedFamily__@VegBIEN__.public@vegpath.org; |
|
5699 |
"The closest matching family in the TNRS database to the family submitted"'; |
|
5700 |
|
|
5701 |
|
|
5702 |
-- |
|
5703 |
-- Name: COLUMN "viewFullOccurrence_individual_view"."Name_matched__@TNRS__@vegpath.org"; Type: COMMENT; Schema: public.test_taxonomic_names; Owner: bien |
|
5704 |
-- |
|
5705 |
|
|
5706 |
COMMENT ON COLUMN "viewFullOccurrence_individual_view"."Name_matched__@TNRS__@vegpath.org" IS '"Scientific name with the highest match score. May be an exact match or a fuzzy match."'; |
|
5707 |
|
|
5708 |
|
|
5709 |
-- |
|
5710 |
-- Name: COLUMN "viewFullOccurrence_individual_view"."Name_matched_author__@TNRS__@vegpath.org"; Type: COMMENT; Schema: public.test_taxonomic_names; Owner: bien |
|
5711 |
-- |
|
5712 |
|
|
5713 |
COMMENT ON COLUMN "viewFullOccurrence_individual_view"."Name_matched_author__@TNRS__@vegpath.org" IS '"Standard authority for the matched name"'; |
|
5714 |
|
|
5715 |
|
|
5716 |
-- |
|
5717 |
-- Name: COLUMN "viewFullOccurrence_individual_view"."[higher_plant_group~]higherClassification__@DwC__@vegpath.org"; Type: COMMENT; Schema: public.test_taxonomic_names; Owner: bien |
|
5718 |
-- |
|
5719 |
|
|
5720 |
COMMENT ON COLUMN "viewFullOccurrence_individual_view"."[higher_plant_group~]higherClassification__@DwC__@vegpath.org" IS 'closed list derived from higher taxa'; |
|
5721 |
|
|
5722 |
|
|
5723 |
-- |
|
5724 |
-- Name: COLUMN "viewFullOccurrence_individual_view"."taxonomicStatus__@DwC__@vegpath.org"; Type: COMMENT; Schema: public.test_taxonomic_names; Owner: bien |
|
5725 |
-- |
|
5726 |
|
|
5727 |
COMMENT ON COLUMN "viewFullOccurrence_individual_view"."taxonomicStatus__@DwC__@vegpath.org" IS '"The status of the use of the scientificName as a label for a taxon. Requires taxonomic opinion to define the scope of a taxon. [...] Examples: "invalid", "misapplied", "homotypic synonym", "accepted"."'; |
|
5728 |
|
|
5729 |
|
|
5730 |
-- |
|
5731 |
-- Name: COLUMN "viewFullOccurrence_individual_view".scrubbed_family; Type: COMMENT; Schema: public.test_taxonomic_names; Owner: bien |
|
5732 |
-- |
|
5733 |
|
|
5734 |
COMMENT ON COLUMN "viewFullOccurrence_individual_view".scrubbed_family IS 'the family of the TNRS accepted or matched name'; |
|
5735 |
|
|
5736 |
|
|
5737 |
-- |
|
5738 |
-- Name: COLUMN "viewFullOccurrence_individual_view".scrubbed_genus; Type: COMMENT; Schema: public.test_taxonomic_names; Owner: bien |
|
5739 |
-- |
|
5740 |
|
|
5741 |
COMMENT ON COLUMN "viewFullOccurrence_individual_view".scrubbed_genus IS 'the genus of the TNRS accepted or matched name'; |
|
5742 |
|
|
5743 |
|
|
5744 |
-- |
|
5745 |
-- Name: COLUMN "viewFullOccurrence_individual_view".scrubbed_specific_epithet; Type: COMMENT; Schema: public.test_taxonomic_names; Owner: bien |
|
5746 |
-- |
|
5747 |
|
|
5748 |
COMMENT ON COLUMN "viewFullOccurrence_individual_view".scrubbed_specific_epithet IS 'the specific epithet of the TNRS accepted or matched name'; |
|
5749 |
|
|
5750 |
|
|
5751 |
-- |
|
5752 |
-- Name: COLUMN "viewFullOccurrence_individual_view".scrubbed_species_binomial; Type: COMMENT; Schema: public.test_taxonomic_names; Owner: bien |
|
5753 |
-- |
|
5754 |
|
|
5755 |
COMMENT ON COLUMN "viewFullOccurrence_individual_view".scrubbed_species_binomial IS 'the species binomial of the TNRS accepted or matched name'; |
|
5756 |
|
|
5757 |
|
|
5758 |
-- |
|
5759 |
-- Name: COLUMN "viewFullOccurrence_individual_view".scrubbed_taxon_name_no_author; Type: COMMENT; Schema: public.test_taxonomic_names; Owner: bien |
|
5760 |
-- |
|
5761 |
|
|
5762 |
COMMENT ON COLUMN "viewFullOccurrence_individual_view".scrubbed_taxon_name_no_author IS 'the taxon name without author of the TNRS accepted or matched name'; |
|
5763 |
|
|
5764 |
|
|
5765 |
-- |
|
5766 |
-- Name: COLUMN "viewFullOccurrence_individual_view".scrubbed_author; Type: COMMENT; Schema: public.test_taxonomic_names; Owner: bien |
|
5767 |
-- |
|
5768 |
|
|
5769 |
COMMENT ON COLUMN "viewFullOccurrence_individual_view".scrubbed_author IS 'the author of the TNRS accepted or matched name'; |
|
5770 |
|
|
5771 |
|
|
5772 |
-- |
|
5773 |
-- Name: COLUMN "viewFullOccurrence_individual_view".scrubbed_taxon_name_with_author; Type: COMMENT; Schema: public.test_taxonomic_names; Owner: bien |
|
5774 |
-- |
|
5775 |
|
|
5776 |
COMMENT ON COLUMN "viewFullOccurrence_individual_view".scrubbed_taxon_name_with_author IS 'the taxon name with author of the TNRS accepted or matched name'; |
|
5777 |
|
|
5778 |
|
|
5779 |
-- |
|
5780 |
-- Name: COLUMN "viewFullOccurrence_individual_view"."speciesBinomialWithMorphospecies__@VegCore__@vegpath.org"; Type: COMMENT; Schema: public.test_taxonomic_names; Owner: bien |
|
5781 |
-- |
|
5782 |
|
|
5783 |
COMMENT ON COLUMN "viewFullOccurrence_individual_view"."speciesBinomialWithMorphospecies__@VegCore__@vegpath.org" IS 'http://TNRS.taxon_scrub.scrubbed_morphospecies_binomial__@VegBIEN__.public@vegpath.org; |
|
5784 |
"combine the `taxon` plus `morphospecies` to produce a unique string, `taxonMorphospecies`"; |
|
5785 |
a morphospecies is a custom species name assigned in the field by the collector (which does not validate to anything in TNRS)'; |
|
5786 |
|
|
5787 |
|
|
5788 |
-- |
|
5789 |
-- Name: COLUMN "viewFullOccurrence_individual_view"."[growth_form=]habit__@SALVIAS__.Plot_data@vegpath.org"; Type: COMMENT; Schema: public.test_taxonomic_names; Owner: bien |
|
5790 |
-- |
|
5791 |
|
|
5792 |
COMMENT ON COLUMN "viewFullOccurrence_individual_view"."[growth_form=]habit__@SALVIAS__.Plot_data@vegpath.org" IS '"Growth form"; "Closed pick list"'; |
|
5793 |
|
|
5794 |
|
|
5795 |
-- |
|
5796 |
-- Name: COLUMN "viewFullOccurrence_individual_view"."reproductiveCondition__@DwC__@vegpath.org"; Type: COMMENT; Schema: public.test_taxonomic_names; Owner: bien |
|
5797 |
-- |
|
5798 |
|
|
5799 |
COMMENT ON COLUMN "viewFullOccurrence_individual_view"."reproductiveCondition__@DwC__@vegpath.org" IS '"The reproductive condition of the biological individual(s) represented in the Occurrence. Recommended best practice is to use a controlled vocabulary."'; |
|
5800 |
|
|
5801 |
|
|
5802 |
-- |
|
5803 |
-- Name: COLUMN "viewFullOccurrence_individual_view".cultivated_bien; Type: COMMENT; Schema: public.test_taxonomic_names; Owner: bien |
|
5804 |
-- |
|
5805 |
|
|
5806 |
COMMENT ON COLUMN "viewFullOccurrence_individual_view".cultivated_bien IS 'whether the occurrence was flagged as cultivated'; |
|
5807 |
|
|
5808 |
|
|
5809 |
-- |
|
5810 |
-- Name: COLUMN "viewFullOccurrence_individual_view"."cultivatedBasis_bien"; Type: COMMENT; Schema: public.test_taxonomic_names; Owner: bien |
|
5811 |
-- |
|
5812 |
|
|
5813 |
COMMENT ON COLUMN "viewFullOccurrence_individual_view"."cultivatedBasis_bien" IS 'why the occurrence was flagged as cultivated'; |
|
5814 |
|
|
5815 |
|
|
5816 |
-- |
|
5817 |
-- Name: COLUMN "viewFullOccurrence_individual_view"."occurrenceRemarks__@DwC__@vegpath.org"; Type: COMMENT; Schema: public.test_taxonomic_names; Owner: bien |
|
5818 |
-- |
|
5819 |
|
|
5820 |
COMMENT ON COLUMN "viewFullOccurrence_individual_view"."occurrenceRemarks__@DwC__@vegpath.org" IS '"Comments or notes about the Occurrence"'; |
|
5821 |
|
|
5822 |
|
|
5823 |
-- |
|
5824 |
-- Name: COLUMN "viewFullOccurrence_individual_view"."coverPercent__@VegX__.attribute.ordinal@vegpath.org"; Type: COMMENT; Schema: public.test_taxonomic_names; Owner: bien |
|
5825 |
-- |
|
5826 |
|
|
5827 |
COMMENT ON COLUMN "viewFullOccurrence_individual_view"."coverPercent__@VegX__.attribute.ordinal@vegpath.org" IS '"Average cover of the index in percent"'; |
|
5828 |
|
|
5829 |
|
|
5830 |
-- |
|
5831 |
-- Name: COLUMN "viewFullOccurrence_individual_view"."taxonObservation[.id]__@VegBank__@vegpath.org"; Type: COMMENT; Schema: public.test_taxonomic_names; Owner: bien |
|
5832 |
-- |
|
5833 |
|
|
5834 |
COMMENT ON COLUMN "viewFullOccurrence_individual_view"."taxonObservation[.id]__@VegBank__@vegpath.org" IS '"identifier assigned [by the datasource] to each unique observation of a taxon in a plot"'; |
|
5835 |
|
|
5836 |
|
|
5837 |
-- |
|
5838 |
-- Name: COLUMN "viewFullOccurrence_individual_view"."taxonNameUsageConcept.authorCode__@VegX__@vegpath.org"; Type: COMMENT; Schema: public.test_taxonomic_names; Owner: bien |
|
5839 |
-- |
|
5840 |
|
|
5841 |
COMMENT ON COLUMN "viewFullOccurrence_individual_view"."taxonNameUsageConcept.authorCode__@VegX__@vegpath.org" IS '"Verbatum short code used by the author to signify the species at time of observation"'; |
|
5842 |
|
|
5843 |
|
|
5844 |
-- |
|
5845 |
-- Name: COLUMN "viewFullOccurrence_individual_view"."aggregateOrganismObservation.id__@VegX__@vegpath.org"; Type: COMMENT; Schema: public.test_taxonomic_names; Owner: bien |
|
5846 |
-- |
|
5847 |
|
|
5848 |
COMMENT ON COLUMN "viewFullOccurrence_individual_view"."aggregateOrganismObservation.id__@VegX__@vegpath.org" IS 'the ID for "An observation applying to all occurrences of an organism based on an aggregation factor. It contains an AggregateValue, which is an assessment of the overall occurrence of an organism in a Plot (e.g. number of stems, percentage cover, total biomass, basal area)."'; |
|
5849 |
|
|
5850 |
|
|
5851 |
-- |
|
5852 |
-- Name: COLUMN "viewFullOccurrence_individual_view"."individualOrganismObservation.id__@VegX__@vegpath.org"; Type: COMMENT; Schema: public.test_taxonomic_names; Owner: bien |
|
5853 |
-- |
|
5854 |
|
|
5855 |
COMMENT ON COLUMN "viewFullOccurrence_individual_view"."individualOrganismObservation.id__@VegX__@vegpath.org" IS 'the ID for "An observation applying to one occurrence of an organism (or part of an organism). It is a container for measurements made on the organism (e.g. diameter, height, crown dimensions, biomass, growth form, number of stems)."'; |
|
5856 |
|
|
5857 |
|
|
5858 |
-- |
|
5859 |
-- Name: COLUMN "viewFullOccurrence_individual_view"."individualID__@DwC__@vegpath.org"; Type: COMMENT; Schema: public.test_taxonomic_names; Owner: bien |
|
5860 |
-- |
|
5861 |
|
|
5862 |
COMMENT ON COLUMN "viewFullOccurrence_individual_view"."individualID__@DwC__@vegpath.org" IS '"An identifier for an individual or named group of individual organisms represented in the Occurrence"'; |
|
5863 |
|
|
5864 |
|
|
5865 |
-- |
|
5866 |
-- Name: COLUMN "viewFullOccurrence_individual_view"."individualCount__@DwC__@vegpath.org"; Type: COMMENT; Schema: public.test_taxonomic_names; Owner: bien |
|
5867 |
-- |
|
5868 |
|
|
5869 |
COMMENT ON COLUMN "viewFullOccurrence_individual_view"."individualCount__@DwC__@vegpath.org" IS '"The number of individuals represented present at the time of the Occurrence"'; |
|
5870 |
|
|
5871 |
|
|
5872 |
-- |
|
5873 |
-- Name: COLUMN "viewFullOccurrence_individual_view"."plantobservation.""_id__@VegBIEN__.public@vegpath.org"; Type: COMMENT; Schema: public.test_taxonomic_names; Owner: bien |
|
5874 |
-- |
|
5875 |
|
|
5876 |
COMMENT ON COLUMN "viewFullOccurrence_individual_view"."plantobservation.""_id__@VegBIEN__.public@vegpath.org" IS 'http://plantobservation.plantobservation_id__@VegBIEN__.public@vegpath.org; |
|
5877 |
autogenerated ID for plantobservation'; |
|
5878 |
|
|
5879 |
|
|
5880 |
-- |
|
5881 |
-- Name: analytical_stem_view; Type: VIEW; Schema: public.test_taxonomic_names; Owner: bien |
|
5882 |
-- |
|
5883 |
|
|
5884 |
CREATE VIEW analytical_stem_view AS |
|
5885 |
SELECT "viewFullOccurrence_individual_view"."datasource__@Brad__.identifier_examples@vegpath.org", |
|
5886 |
"viewFullOccurrence_individual_view"."country__@DwC__@vegpath.org", |
|
5887 |
"viewFullOccurrence_individual_view"."stateProvince__@DwC__@vegpath.org", |
|
5888 |
"viewFullOccurrence_individual_view"."county__@DwC__@vegpath.org", |
|
5889 |
"viewFullOccurrence_individual_view"."locality__@DwC__@vegpath.org", |
|
5890 |
"viewFullOccurrence_individual_view"."decimalLatitude__@DwC__@vegpath.org", |
|
5891 |
"viewFullOccurrence_individual_view"."decimalLongitude__@DwC__@vegpath.org", |
|
5892 |
"viewFullOccurrence_individual_view"."coordinateUncertaintyInMeters__@DwC__@vegpath.org", |
|
5893 |
"viewFullOccurrence_individual_view"."georeferenceSources__@DwC__@vegpath.org", |
|
5894 |
"viewFullOccurrence_individual_view"."georeferenceProtocol__@DwC__@vegpath.org", |
|
5895 |
"viewFullOccurrence_individual_view".geovalid_bien, |
|
5896 |
"viewFullOccurrence_individual_view"."isNewWorld_bien", |
|
5897 |
"viewFullOccurrence_individual_view"."projectID__@VegX__.plotObservation@vegpath.org", |
|
5898 |
"viewFullOccurrence_individual_view"."projectContributor[s]__@VegBank__@vegpath.org", |
|
5899 |
"viewFullOccurrence_individual_view"."locationID__@DwC__@vegpath.org", |
|
5900 |
"viewFullOccurrence_individual_view"."plotName__@VegX__.plot@vegpath.org", |
|
5901 |
"viewFullOccurrence_individual_view"."subplot__@SALVIAS__.Plot_data@vegpath.org", |
|
5902 |
"viewFullOccurrence_individual_view".location__cultivated__bien, |
|
5903 |
"viewFullOccurrence_individual_view"."locationevent.locationevent_id__@VegBIEN__.public@vegpath.org", |
|
5904 |
"viewFullOccurrence_individual_view"."eventDate__@DwC__@vegpath.org", |
|
5905 |
"viewFullOccurrence_individual_view"."(-minimum-)ElevationInMeters__@DwC__@vegpath.org", |
|
5906 |
"viewFullOccurrence_individual_view"."slopeAspect[_deg]__@VegX__.plot@vegpath.org", |
|
5907 |
"viewFullOccurrence_individual_view"."slopeGradient[_deg]__@VegX__.plot@vegpath.org", |
|
5908 |
"viewFullOccurrence_individual_view"."plot.area[_ha]__@VegX__@vegpath.org", |
|
5909 |
"viewFullOccurrence_individual_view"."samplingProtocol__@DwC__@vegpath.org", |
|
5910 |
"viewFullOccurrence_individual_view"."temperature[_C]__@VegX__.plotObs.obsCond@vegpath.org", |
|
5911 |
"viewFullOccurrence_individual_view"."precip_mm__@SALVIAS__.Plot_metadata@vegpath.org", |
|
5912 |
"viewFullOccurrence_individual_view"."stratumName__@VegX__.stratum@vegpath.org", |
|
5913 |
"viewFullOccurrence_individual_view"."communityConcept.name__@VegX__.communityDet@vegpath.org", |
|
5914 |
"viewFullOccurrence_individual_view"."observationContributor[s]__@VegBank__@vegpath.org", |
|
5915 |
"viewFullOccurrence_individual_view"."[custodial_]institutionCode[s]__@DwC__@vegpath.org", |
|
5916 |
"viewFullOccurrence_individual_view"."collectionCode__@DwC__@vegpath.org", |
|
5917 |
"viewFullOccurrence_individual_view"."catalogNumber__@DwC__@vegpath.org", |
|
5918 |
"viewFullOccurrence_individual_view"."occurrenceID__@DwC__@vegpath.org", |
|
5919 |
"viewFullOccurrence_individual_view"."recordedBy__@DwC__@vegpath.org", |
|
5920 |
"viewFullOccurrence_individual_view"."recordNumber__@DwC__@vegpath.org", |
|
5921 |
"viewFullOccurrence_individual_view"."(-Earliest-)DateCollected__-2007-04-17__@DwC__.hist@vegpath.org", |
|
5922 |
"viewFullOccurrence_individual_view"."[verbatim_]family__@DwC__@vegpath.org", |
|
5923 |
"viewFullOccurrence_individual_view"."[verbatim_]scientificName__@DwC__@vegpath.org", |
|
5924 |
"viewFullOccurrence_individual_view"."identifiedBy__@DwC__@vegpath.org", |
|
5925 |
"viewFullOccurrence_individual_view"."dateIdentified__@DwC__@vegpath.org", |
|
5926 |
"viewFullOccurrence_individual_view"."identificationRemarks__@DwC__@vegpath.org", |
|
5927 |
"viewFullOccurrence_individual_view"."Family_matched__@TNRS__@vegpath.org", |
|
5928 |
"viewFullOccurrence_individual_view"."Name_matched__@TNRS__@vegpath.org", |
|
5929 |
"viewFullOccurrence_individual_view"."Name_matched_author__@TNRS__@vegpath.org", |
|
5930 |
"viewFullOccurrence_individual_view"."[higher_plant_group~]higherClassification__@DwC__@vegpath.org", |
|
5931 |
"viewFullOccurrence_individual_view"."taxonomicStatus__@DwC__@vegpath.org", |
|
5932 |
"viewFullOccurrence_individual_view".scrubbed_family, |
|
5933 |
"viewFullOccurrence_individual_view".scrubbed_genus, |
|
5934 |
"viewFullOccurrence_individual_view".scrubbed_specific_epithet, |
|
5935 |
"viewFullOccurrence_individual_view".scrubbed_species_binomial, |
|
5936 |
"viewFullOccurrence_individual_view".scrubbed_taxon_name_no_author, |
|
5937 |
"viewFullOccurrence_individual_view".scrubbed_author, |
|
5938 |
"viewFullOccurrence_individual_view".scrubbed_taxon_name_with_author, |
|
5939 |
"viewFullOccurrence_individual_view"."speciesBinomialWithMorphospecies__@VegCore__@vegpath.org", |
|
5940 |
"viewFullOccurrence_individual_view"."[growth_form=]habit__@SALVIAS__.Plot_data@vegpath.org", |
|
5941 |
"viewFullOccurrence_individual_view"."reproductiveCondition__@DwC__@vegpath.org", |
|
5942 |
"viewFullOccurrence_individual_view".cultivated_bien, |
|
5943 |
"viewFullOccurrence_individual_view"."cultivatedBasis_bien", |
|
5944 |
"viewFullOccurrence_individual_view"."occurrenceRemarks__@DwC__@vegpath.org", |
|
5945 |
"viewFullOccurrence_individual_view"."coverPercent__@VegX__.attribute.ordinal@vegpath.org", |
|
5946 |
"viewFullOccurrence_individual_view"."taxonObservation[.id]__@VegBank__@vegpath.org", |
|
5947 |
"viewFullOccurrence_individual_view"."taxonNameUsageConcept.authorCode__@VegX__@vegpath.org", |
|
5948 |
"viewFullOccurrence_individual_view"."aggregateOrganismObservation.id__@VegX__@vegpath.org", |
|
5949 |
"viewFullOccurrence_individual_view"."individualOrganismObservation.id__@VegX__@vegpath.org", |
|
5950 |
"viewFullOccurrence_individual_view"."individualID__@DwC__@vegpath.org", |
|
5951 |
"viewFullOccurrence_individual_view"."individualCount__@DwC__@vegpath.org", |
|
5952 |
"viewFullOccurrence_individual_view"."plantobservation.""_id__@VegBIEN__.public@vegpath.org", |
|
5953 |
_m_to_cm(stemobservation.diameterbreastheight_m) AS "stem_dbh[_cm]__@SALVIAS__.Plot_data@vegpath.org", |
|
5954 |
stemobservation.height_m AS "stemHeight[_m]__@VegBank__.stemCount@vegpath.org", |
|
5955 |
stemobservation.tag AS "[tag=]identificationLabel__@VegX__.individual@vegpath.org", |
|
5956 |
stemobservation.xposition_m AS "relativeX[_m]__@VegX__.individualOrganismObs@vegpath.org", |
|
5957 |
stemobservation.yposition_m AS "relativeY[_m]__@VegX__.individualOrganismObs@vegpath.org", |
|
5958 |
stemobservation.authorstemcode AS "stemCode__@VegBank__.stemLocation@vegpath.org" |
|
5959 |
FROM ("viewFullOccurrence_individual_view" |
|
5960 |
LEFT JOIN stemobservation ON ((stemobservation.plantobservation_id = "viewFullOccurrence_individual_view"."plantobservation.""_id__@VegBIEN__.public@vegpath.org"))); |
|
5961 |
|
|
5962 |
|
|
5404 | 5963 |
ALTER TABLE "public.test_taxonomic_names".analytical_stem_view OWNER TO bien; |
5405 | 5964 |
|
5406 | 5965 |
-- |
... | ... | |
5849 | 6408 |
|
5850 | 6409 |
|
5851 | 6410 |
-- |
5852 |
-- Name: COLUMN analytical_stem_view."stem_dbh[_cm]__@SALVIAS__.Plot_data@vegpath.org"; Type: COMMENT; Schema: public.test_taxonomic_names; Owner: bien
|
|
6411 |
-- Name: COLUMN analytical_stem_view."taxonObservation[.id]__@VegBank__@vegpath.org"; Type: COMMENT; Schema: public.test_taxonomic_names; Owner: bien
|
|
5853 | 6412 |
-- |
5854 | 6413 |
|
5855 |
COMMENT ON COLUMN analytical_stem_view."stem_dbh[_cm]__@SALVIAS__.Plot_data@vegpath.org" IS '"Diameter at breast height of this stem (usually taken at 1.3 meters, but may vary)"';
|
|
6414 |
COMMENT ON COLUMN analytical_stem_view."taxonObservation[.id]__@VegBank__@vegpath.org" IS '"identifier assigned [by the datasource] to each unique observation of a taxon in a plot"';
|
|
5856 | 6415 |
|
5857 | 6416 |
|
5858 | 6417 |
-- |
5859 |
-- Name: COLUMN analytical_stem_view."stemHeight[_m]__@VegBank__.stemCount@vegpath.org"; Type: COMMENT; Schema: public.test_taxonomic_names; Owner: bien
|
|
6418 |
-- Name: COLUMN analytical_stem_view."taxonNameUsageConcept.authorCode__@VegX__@vegpath.org"; Type: COMMENT; Schema: public.test_taxonomic_names; Owner: bien
|
|
5860 | 6419 |
-- |
5861 | 6420 |
|
5862 |
COMMENT ON COLUMN analytical_stem_view."stemHeight[_m]__@VegBank__.stemCount@vegpath.org" IS '"The measured height of the stem in meters"';
|
|
6421 |
COMMENT ON COLUMN analytical_stem_view."taxonNameUsageConcept.authorCode__@VegX__@vegpath.org" IS '"Verbatum short code used by the author to signify the species at time of observation"';
|
|
5863 | 6422 |
|
5864 | 6423 |
|
5865 | 6424 |
-- |
5866 |
-- Name: COLUMN analytical_stem_view."[tag=]identificationLabel__@VegX__.individual@vegpath.org"; Type: COMMENT; Schema: public.test_taxonomic_names; Owner: bien
|
|
6425 |
-- Name: COLUMN analytical_stem_view."aggregateOrganismObservation.id__@VegX__@vegpath.org"; Type: COMMENT; Schema: public.test_taxonomic_names; Owner: bien
|
|
5867 | 6426 |
-- |
5868 | 6427 |
|
5869 |
COMMENT ON COLUMN analytical_stem_view."[tag=]identificationLabel__@VegX__.individual@vegpath.org" IS '"A label that is associated with an individual (e.g. a numerical tree tag)"';
|
|
6428 |
COMMENT ON COLUMN analytical_stem_view."aggregateOrganismObservation.id__@VegX__@vegpath.org" IS 'the ID for "An observation applying to all occurrences of an organism based on an aggregation factor. It contains an AggregateValue, which is an assessment of the overall occurrence of an organism in a Plot (e.g. number of stems, percentage cover, total biomass, basal area)."';
|
|
5870 | 6429 |
|
5871 | 6430 |
|
5872 | 6431 |
-- |
5873 |
-- Name: COLUMN analytical_stem_view."relativeX[_m]__@VegX__.individualOrganismObs@vegpath.org"; Type: COMMENT; Schema: public.test_taxonomic_names; Owner: bien
|
|
6432 |
-- Name: COLUMN analytical_stem_view."individualOrganismObservation.id__@VegX__@vegpath.org"; Type: COMMENT; Schema: public.test_taxonomic_names; Owner: bien
|
|
5874 | 6433 |
-- |
5875 | 6434 |
|
5876 |
COMMENT ON COLUMN analytical_stem_view."relativeX[_m]__@VegX__.individualOrganismObs@vegpath.org" IS '"The X-coordinate of the related item position in m. The user will enter the relative position of related item with respect to the plot origin (in meters) with the x-axis defined by the plot azimuth."';
|
|
6435 |
COMMENT ON COLUMN analytical_stem_view."individualOrganismObservation.id__@VegX__@vegpath.org" IS 'the ID for "An observation applying to one occurrence of an organism (or part of an organism). It is a container for measurements made on the organism (e.g. diameter, height, crown dimensions, biomass, growth form, number of stems)."';
|
|
5877 | 6436 |
|
5878 | 6437 |
|
5879 | 6438 |
-- |
5880 |
-- Name: COLUMN analytical_stem_view."relativeY[_m]__@VegX__.individualOrganismObs@vegpath.org"; Type: COMMENT; Schema: public.test_taxonomic_names; Owner: bien
|
|
6439 |
-- Name: COLUMN analytical_stem_view."individualID__@DwC__@vegpath.org"; Type: COMMENT; Schema: public.test_taxonomic_names; Owner: bien
|
|
5881 | 6440 |
-- |
5882 | 6441 |
|
5883 |
COMMENT ON COLUMN analytical_stem_view."relativeY[_m]__@VegX__.individualOrganismObs@vegpath.org" IS '"The Y-coordinate of the relatedSpatialItem position in m. The user will enter the relative position of relatedSpatialItems with respect to the plot origin (in meters) with the y-axis defined by the plot azimuth."';
|
|
6442 |
COMMENT ON COLUMN analytical_stem_view."individualID__@DwC__@vegpath.org" IS '"An identifier for an individual or named group of individual organisms represented in the Occurrence"';
|
|
5884 | 6443 |
|
5885 | 6444 |
|
5886 | 6445 |
-- |
5887 |
-- Name: COLUMN analytical_stem_view."taxonObservation[.id]__@VegBank__@vegpath.org"; Type: COMMENT; Schema: public.test_taxonomic_names; Owner: bien
|
|
6446 |
-- Name: COLUMN analytical_stem_view."individualCount__@DwC__@vegpath.org"; Type: COMMENT; Schema: public.test_taxonomic_names; Owner: bien
|
|
5888 | 6447 |
-- |
5889 | 6448 |
|
5890 |
COMMENT ON COLUMN analytical_stem_view."taxonObservation[.id]__@VegBank__@vegpath.org" IS '"identifier assigned [by the datasource] to each unique observation of a taxon in a plot"';
|
|
6449 |
COMMENT ON COLUMN analytical_stem_view."individualCount__@DwC__@vegpath.org" IS '"The number of individuals represented present at the time of the Occurrence"';
|
|
5891 | 6450 |
|
5892 | 6451 |
|
5893 | 6452 |
-- |
5894 |
-- Name: COLUMN analytical_stem_view."taxonNameUsageConcept.authorCode__@VegX__@vegpath.org"; Type: COMMENT; Schema: public.test_taxonomic_names; Owner: bien
|
|
6453 |
-- Name: COLUMN analytical_stem_view."stem_dbh[_cm]__@SALVIAS__.Plot_data@vegpath.org"; Type: COMMENT; Schema: public.test_taxonomic_names; Owner: bien
|
|
5895 | 6454 |
-- |
5896 | 6455 |
|
5897 |
COMMENT ON COLUMN analytical_stem_view."taxonNameUsageConcept.authorCode__@VegX__@vegpath.org" IS '"Verbatum short code used by the author to signify the species at time of observation"';
|
|
6456 |
COMMENT ON COLUMN analytical_stem_view."stem_dbh[_cm]__@SALVIAS__.Plot_data@vegpath.org" IS '"Diameter at breast height of this stem (usually taken at 1.3 meters, but may vary)"';
|
|
5898 | 6457 |
|
5899 | 6458 |
|
5900 | 6459 |
-- |
5901 |
-- Name: COLUMN analytical_stem_view."aggregateOrganismObservation.id__@VegX__@vegpath.org"; Type: COMMENT; Schema: public.test_taxonomic_names; Owner: bien
|
|
6460 |
-- Name: COLUMN analytical_stem_view."stemHeight[_m]__@VegBank__.stemCount@vegpath.org"; Type: COMMENT; Schema: public.test_taxonomic_names; Owner: bien
|
|
5902 | 6461 |
-- |
5903 | 6462 |
|
5904 |
COMMENT ON COLUMN analytical_stem_view."aggregateOrganismObservation.id__@VegX__@vegpath.org" IS 'the ID for "An observation applying to all occurrences of an organism based on an aggregation factor. It contains an AggregateValue, which is an assessment of the overall occurrence of an organism in a Plot (e.g. number of stems, percentage cover, total biomass, basal area)."';
|
|
6463 |
COMMENT ON COLUMN analytical_stem_view."stemHeight[_m]__@VegBank__.stemCount@vegpath.org" IS '"The measured height of the stem in meters"';
|
|
5905 | 6464 |
|
5906 | 6465 |
|
5907 | 6466 |
-- |
5908 |
-- Name: COLUMN analytical_stem_view."individualOrganismObservation.id__@VegX__@vegpath.org"; Type: COMMENT; Schema: public.test_taxonomic_names; Owner: bien
|
|
6467 |
-- Name: COLUMN analytical_stem_view."[tag=]identificationLabel__@VegX__.individual@vegpath.org"; Type: COMMENT; Schema: public.test_taxonomic_names; Owner: bien
|
|
5909 | 6468 |
-- |
5910 | 6469 |
|
5911 |
COMMENT ON COLUMN analytical_stem_view."individualOrganismObservation.id__@VegX__@vegpath.org" IS 'the ID for "An observation applying to one occurrence of an organism (or part of an organism). It is a container for measurements made on the organism (e.g. diameter, height, crown dimensions, biomass, growth form, number of stems)."';
|
|
6470 |
COMMENT ON COLUMN analytical_stem_view."[tag=]identificationLabel__@VegX__.individual@vegpath.org" IS '"A label that is associated with an individual (e.g. a numerical tree tag)"';
|
|
5912 | 6471 |
|
5913 | 6472 |
|
5914 | 6473 |
-- |
5915 |
-- Name: COLUMN analytical_stem_view."individualID__@DwC__@vegpath.org"; Type: COMMENT; Schema: public.test_taxonomic_names; Owner: bien
|
|
6474 |
-- Name: COLUMN analytical_stem_view."relativeX[_m]__@VegX__.individualOrganismObs@vegpath.org"; Type: COMMENT; Schema: public.test_taxonomic_names; Owner: bien
|
|
5916 | 6475 |
-- |
5917 | 6476 |
|
5918 |
COMMENT ON COLUMN analytical_stem_view."individualID__@DwC__@vegpath.org" IS '"An identifier for an individual or named group of individual organisms represented in the Occurrence"';
|
|
6477 |
COMMENT ON COLUMN analytical_stem_view."relativeX[_m]__@VegX__.individualOrganismObs@vegpath.org" IS '"The X-coordinate of the related item position in m. The user will enter the relative position of related item with respect to the plot origin (in meters) with the x-axis defined by the plot azimuth."';
|
|
5919 | 6478 |
|
5920 | 6479 |
|
5921 | 6480 |
-- |
5922 |
-- Name: COLUMN analytical_stem_view."individualCount__@DwC__@vegpath.org"; Type: COMMENT; Schema: public.test_taxonomic_names; Owner: bien
|
|
6481 |
-- Name: COLUMN analytical_stem_view."relativeY[_m]__@VegX__.individualOrganismObs@vegpath.org"; Type: COMMENT; Schema: public.test_taxonomic_names; Owner: bien
|
|
5923 | 6482 |
-- |
5924 | 6483 |
|
5925 |
COMMENT ON COLUMN analytical_stem_view."individualCount__@DwC__@vegpath.org" IS '"The number of individuals represented present at the time of the Occurrence"';
|
|
6484 |
COMMENT ON COLUMN analytical_stem_view."relativeY[_m]__@VegX__.individualOrganismObs@vegpath.org" IS '"The Y-coordinate of the relatedSpatialItem position in m. The user will enter the relative position of relatedSpatialItems with respect to the plot origin (in meters) with the y-axis defined by the plot azimuth."';
|
|
5926 | 6485 |
|
5927 | 6486 |
|
5928 | 6487 |
-- |
... | ... | |
7795 | 8354 |
ALTER TABLE "public.test_taxonomic_names".taxon_trait OWNER TO bien; |
7796 | 8355 |
|
7797 | 8356 |
-- |
7798 |
-- Name: TABLE taxon_trait; Type: COMMENT; Schema: public.test_taxonomic_names; Owner: bien |
Also available in: Unified diff
fix: inputs/.TNRS/schema.sql: taxon_match: added derived column "Accepted_species[_binomial]__@TNRS__@vegpath.org", which removes trailing whitespace