Revision 14310
Added by Aaron Marcuse-Kubitza over 10 years ago
trunk/inputs/test_taxonomic_names/_scrub/TNRS.sql | ||
---|---|---|
209 | 209 |
LANGUAGE plpgsql |
210 | 210 |
AS $$ |
211 | 211 |
BEGIN |
212 |
new."__accepted_{genus,specific_epithet}" = (SELECT |
|
213 |
regexp_split_to_array("*Accepted_name_species", ' '::text) |
|
214 |
FROM (SELECT new.*) new); |
|
212 |
-- clear derived cols so old values won't be used in calculations |
|
213 |
new."[matched_]species[_binomial]~(-Accepted_-)__@TNRS__@vegpath.org" = NULL; |
|
214 |
new."[matched_]scientificName[_with_author]__@DwC__@vegpath.org" = NULL; |
|
215 |
new.matched_has_accepted = NULL; |
|
216 |
new."__accepted_{genus,specific_epithet}" = NULL; |
|
217 |
new."[accepted_]genus__@DwC__@vegpath.org" = NULL; |
|
218 |
new."[accepted_]specificEpithet__@DwC__@vegpath.org" = NULL; |
|
219 |
new.__accepted_infraspecific_label = NULL; |
|
220 |
new."__accepted_infraspecific_{rank,epithet}" = NULL; |
|
221 |
new."[accepted_]Infraspecific_rank[_abbr]__@TNRS__@vegpath.org" = NULL; |
|
222 |
new."[accepted_]infraspecificEpithet__@DwC__@vegpath.org" = NULL; |
|
223 |
new."[accepted_]scientificName[_with_author]__@DwC__@vegpath.org" = NULL; |
|
224 |
new."[scrubbed_]taxonRank__@DwC__@vegpath.org" = NULL; |
|
225 |
new."[scrubbed_]family~(-Accepted_-)__@TNRS__@vegpath.org" = NULL; |
|
226 |
new."[scrubbed_]genus__@DwC__@vegpath.org" = NULL; |
|
227 |
new."[scrubbed_]specificEpithet__@DwC__@vegpath.org" = NULL; |
|
228 |
new."[scrubbed_]species[_binom]~(-Accepted_-)__@TNRS__@vegpath.org" = NULL; |
|
229 |
new."[scrubbed_]Infraspecific_rank[_abbr]__@TNRS__@vegpath.org" = NULL; |
|
230 |
new."[scrubbed_]infraspecificEpithet__@DwC__@vegpath.org" = NULL; |
|
231 |
new."[scrubbed_]name[_no_author]~(-Accepted_-)__@TNRS__@vegpath.org" = NULL; |
|
232 |
new."[scrubbed_]author~(-Accepted_-)__@TNRS__@vegpath.org" = NULL; |
|
233 |
new."[scrubbed_]scientificName[_with_author]__@DwC__@vegpath.org" = NULL; |
|
234 |
new."[parsed_]morphospecies[_suffix]__@Brad__.morphosp@vegpath.org" = NULL; |
|
235 |
new."[accepted_]morphospecies[_binomial]__@Brad__.TNRS@vegpath.org" = NULL; |
|
215 | 236 |
|
216 |
new."[accepted_]genus__@DwC__@vegpath.org" = (SELECT |
|
217 |
"__accepted_{genus,specific_epithet}"[1] |
|
218 |
FROM (SELECT new.*) new); |
|
237 |
-- populate derived cols |
|
238 |
new."[matched_]species[_binomial]~(-Accepted_-)__@TNRS__@vegpath.org" = (SELECT ("*Genus_matched" || ' '::text) || "*Specific_epithet_matched" FROM (SELECT new.*) new); |
|
239 |
new."[matched_]scientificName[_with_author]__@DwC__@vegpath.org" = (SELECT "*Name_matched" || COALESCE((' '::text || "*Name_matched_author"), ''::text) FROM (SELECT new.*) new); |
|
240 |
new.matched_has_accepted = (SELECT "*Accepted_name" IS NOT NULL FROM (SELECT new.*) new); |
|
241 |
new."__accepted_{genus,specific_epithet}" = (SELECT regexp_split_to_array("*Accepted_name_species", ' '::text) FROM (SELECT new.*) new); |
|
242 |
new."[accepted_]genus__@DwC__@vegpath.org" = (SELECT "__accepted_{genus,specific_epithet}"[1] FROM (SELECT new.*) new); |
|
243 |
new."[accepted_]specificEpithet__@DwC__@vegpath.org" = (SELECT "__accepted_{genus,specific_epithet}"[2] FROM (SELECT new.*) new); |
|
244 |
new.__accepted_infraspecific_label = (SELECT ltrim(NULLIF(util.remove_prefix("*Accepted_name_species", "*Accepted_name", require := true), ''::text), ' '::text) FROM (SELECT new.*) new); |
|
245 |
new."__accepted_infraspecific_{rank,epithet}" = (SELECT regexp_split_to_array(__accepted_infraspecific_label, ' '::text) FROM (SELECT new.*) new); |
|
246 |
new."[accepted_]Infraspecific_rank[_abbr]__@TNRS__@vegpath.org" = (SELECT "__accepted_infraspecific_{rank,epithet}"[1] FROM (SELECT new.*) new); |
|
247 |
new."[accepted_]infraspecificEpithet__@DwC__@vegpath.org" = (SELECT "__accepted_infraspecific_{rank,epithet}"[2] FROM (SELECT new.*) new); |
|
248 |
new."[accepted_]scientificName[_with_author]__@DwC__@vegpath.org" = (SELECT "*Accepted_name" || COALESCE((' '::text || "*Accepted_name_author"), ''::text) FROM (SELECT new.*) new); |
|
249 |
new."[scrubbed_]taxonRank__@DwC__@vegpath.org" = (SELECT CASE |
|
250 |
WHEN matched_has_accepted THEN "*Accepted_name_rank" |
|
251 |
ELSE "*Name_matched_rank" |
|
252 |
END FROM (SELECT new.*) new); |
|
253 |
new."[scrubbed_]family~(-Accepted_-)__@TNRS__@vegpath.org" = (SELECT CASE |
|
254 |
WHEN matched_has_accepted THEN "*Accepted_name_family" |
|
255 |
ELSE "*Name_matched_accepted_family" |
|
256 |
END FROM (SELECT new.*) new); |
|
257 |
new."[scrubbed_]genus__@DwC__@vegpath.org" = (SELECT CASE |
|
258 |
WHEN matched_has_accepted THEN "[accepted_]genus__@DwC__@vegpath.org" |
|
259 |
ELSE "*Genus_matched" |
|
260 |
END FROM (SELECT new.*) new); |
|
261 |
new."[scrubbed_]specificEpithet__@DwC__@vegpath.org" = (SELECT CASE |
|
262 |
WHEN matched_has_accepted THEN "[accepted_]specificEpithet__@DwC__@vegpath.org" |
|
263 |
ELSE "*Specific_epithet_matched" |
|
264 |
END FROM (SELECT new.*) new); |
|
265 |
new."[scrubbed_]species[_binom]~(-Accepted_-)__@TNRS__@vegpath.org" = (SELECT CASE |
|
266 |
WHEN matched_has_accepted THEN "*Accepted_name_species" |
|
267 |
ELSE "[matched_]species[_binomial]~(-Accepted_-)__@TNRS__@vegpath.org" |
|
268 |
END FROM (SELECT new.*) new); |
|
269 |
new."[scrubbed_]Infraspecific_rank[_abbr]__@TNRS__@vegpath.org" = (SELECT CASE |
|
270 |
WHEN matched_has_accepted THEN "[accepted_]Infraspecific_rank[_abbr]__@TNRS__@vegpath.org" |
|
271 |
ELSE "*Infraspecific_rank" |
|
272 |
END FROM (SELECT new.*) new); |
|
273 |
new."[scrubbed_]infraspecificEpithet__@DwC__@vegpath.org" = (SELECT CASE |
|
274 |
WHEN matched_has_accepted THEN "[accepted_]specificEpithet__@DwC__@vegpath.org" |
|
275 |
ELSE "*Infraspecific_epithet_matched" |
|
276 |
END FROM (SELECT new.*) new); |
|
277 |
new."[scrubbed_]name[_no_author]~(-Accepted_-)__@TNRS__@vegpath.org" = (SELECT CASE |
|
278 |
WHEN matched_has_accepted THEN "*Accepted_name" |
|
279 |
ELSE "*Name_matched" |
|
280 |
END FROM (SELECT new.*) new); |
|
281 |
new."[scrubbed_]author~(-Accepted_-)__@TNRS__@vegpath.org" = (SELECT CASE |
|
282 |
WHEN matched_has_accepted THEN "*Accepted_name_author" |
|
283 |
ELSE "*Name_matched_author" |
|
284 |
END FROM (SELECT new.*) new); |
|
285 |
new."[scrubbed_]scientificName[_with_author]__@DwC__@vegpath.org" = (SELECT CASE |
|
286 |
WHEN matched_has_accepted THEN "[accepted_]scientificName[_with_author]__@DwC__@vegpath.org" |
|
287 |
ELSE "[matched_]scientificName[_with_author]__@DwC__@vegpath.org" |
|
288 |
END FROM (SELECT new.*) new); |
|
289 |
new."[parsed_]morphospecies[_suffix]__@Brad__.morphosp@vegpath.org" = (SELECT "*Unmatched_terms" FROM (SELECT new.*) new); |
|
290 |
new."[accepted_]morphospecies[_binomial]__@Brad__.TNRS@vegpath.org" = (SELECT CASE |
|
291 |
WHEN ("*Accepted_name_rank" = 'family'::text) THEN concat_ws(' '::text, "*Accepted_name_family", "[parsed_]morphospecies[_suffix]__@Brad__.morphosp@vegpath.org") |
|
292 |
WHEN ("*Accepted_name_rank" = 'genus'::text) THEN concat_ws(' '::text, "*Accepted_name", "[parsed_]morphospecies[_suffix]__@Brad__.morphosp@vegpath.org") |
|
293 |
ELSE "*Accepted_name_species" |
|
294 |
END FROM (SELECT new.*) new); |
|
219 | 295 |
|
220 |
new."[accepted_]specificEpithet__@DwC__@vegpath.org" = (SELECT |
|
221 |
"__accepted_{genus,specific_epithet}"[2] |
|
222 |
FROM (SELECT new.*) new); |
|
223 |
|
|
224 |
new.__accepted_infraspecific_label = (SELECT |
|
225 |
ltrim(NULLIF(util.remove_prefix("*Accepted_name_species", "*Accepted_name", require := true), ''::text), ' '::text) |
|
226 |
FROM (SELECT new.*) new); |
|
227 |
|
|
228 |
new."__accepted_infraspecific_{rank,epithet}" = (SELECT |
|
229 |
regexp_split_to_array(__accepted_infraspecific_label, ' '::text) |
|
230 |
FROM (SELECT new.*) new); |
|
231 |
|
|
232 |
new."[accepted_]Infraspecific_rank[_abbr]__@TNRS__@vegpath.org" = (SELECT |
|
233 |
"__accepted_infraspecific_{rank,epithet}"[1] |
|
234 |
FROM (SELECT new.*) new); |
|
235 |
|
|
236 |
new."[accepted_]infraspecificEpithet__@DwC__@vegpath.org" = (SELECT |
|
237 |
"__accepted_infraspecific_{rank,epithet}"[2] |
|
238 |
FROM (SELECT new.*) new); |
|
239 |
|
|
240 |
new."[matched_]scientificName[_with_author]__@DwC__@vegpath.org" = (SELECT |
|
241 |
"*Name_matched" || COALESCE((' '::text || "*Name_matched_author"), ''::text) |
|
242 |
FROM (SELECT new.*) new); |
|
243 |
|
|
244 |
new."[accepted_]scientificName[_with_author]__@DwC__@vegpath.org" = (SELECT |
|
245 |
"*Accepted_name" || COALESCE((' '::text || "*Accepted_name_author"), ''::text) |
|
246 |
FROM (SELECT new.*) new); |
|
247 |
|
|
248 |
new.matched_has_accepted = (SELECT |
|
249 |
"*Accepted_name" IS NOT NULL |
|
250 |
FROM (SELECT new.*) new); |
|
251 |
|
|
252 |
new."[matched_]species[_binomial]~(-Accepted_-)__@TNRS__@vegpath.org" = (SELECT |
|
253 |
("*Genus_matched" || ' '::text) || "*Specific_epithet_matched" |
|
254 |
FROM (SELECT new.*) new); |
|
255 |
|
|
256 | 296 |
RETURN new; |
257 | 297 |
END; |
258 | 298 |
$$; |
... | ... | |
395 | 435 |
"*Accepted_name_lsid" text, |
396 | 436 |
is_valid_match boolean NOT NULL, |
397 | 437 |
scrubbed_unique_taxon_name text, |
438 |
"[parsed_]morphospecies[_suffix]__@Brad__.morphosp@vegpath.org" text, |
|
398 | 439 |
"[matched_]species[_binomial]~(-Accepted_-)__@TNRS__@vegpath.org" text, |
399 | 440 |
"[matched_]scientificName[_with_author]__@DwC__@vegpath.org" text, |
400 | 441 |
matched_has_accepted boolean, |
401 | 442 |
"__accepted_{genus,specific_epithet}" text[], |
402 | 443 |
"[accepted_]genus__@DwC__@vegpath.org" text, |
403 | 444 |
"[accepted_]specificEpithet__@DwC__@vegpath.org" text, |
445 |
"[accepted_]morphospecies[_binomial]__@Brad__.TNRS@vegpath.org" text, |
|
404 | 446 |
__accepted_infraspecific_label text, |
405 | 447 |
"__accepted_infraspecific_{rank,epithet}" text[], |
406 | 448 |
"[accepted_]Infraspecific_rank[_abbr]__@TNRS__@vegpath.org" text, |
407 | 449 |
"[accepted_]infraspecificEpithet__@DwC__@vegpath.org" text, |
408 | 450 |
"[accepted_]scientificName[_with_author]__@DwC__@vegpath.org" text, |
451 |
"[scrubbed_]taxonRank__@DwC__@vegpath.org" text, |
|
452 |
"[scrubbed_]family~(-Accepted_-)__@TNRS__@vegpath.org" text, |
|
453 |
"[scrubbed_]genus__@DwC__@vegpath.org" text, |
|
454 |
"[scrubbed_]specificEpithet__@DwC__@vegpath.org" text, |
|
455 |
"[scrubbed_]species[_binom]~(-Accepted_-)__@TNRS__@vegpath.org" text, |
|
456 |
"[scrubbed_]Infraspecific_rank[_abbr]__@TNRS__@vegpath.org" text, |
|
457 |
"[scrubbed_]infraspecificEpithet__@DwC__@vegpath.org" text, |
|
458 |
"[scrubbed_]name[_no_author]~(-Accepted_-)__@TNRS__@vegpath.org" text, |
|
459 |
"[scrubbed_]author~(-Accepted_-)__@TNRS__@vegpath.org" text, |
|
460 |
"[scrubbed_]scientificName[_with_author]__@DwC__@vegpath.org" text, |
|
409 | 461 |
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]))), |
410 | 462 |
CONSTRAINT "[accepted_]genus__@DwC__@vegpath.org" CHECK ((NOT ("[accepted_]genus__@DwC__@vegpath.org" IS DISTINCT FROM "__accepted_{genus,specific_epithet}"[1]))), |
411 | 463 |
CONSTRAINT "[accepted_]infraspecificEpithet__@DwC__@vegpath.org" CHECK ((NOT ("[accepted_]infraspecificEpithet__@DwC__@vegpath.org" IS DISTINCT FROM "__accepted_infraspecific_{rank,epithet}"[2]))), |
464 |
CONSTRAINT "[accepted_]morphospecies[_binomial]__@Brad__.TNRS@vegpath.org" CHECK ((NOT ("[accepted_]morphospecies[_binomial]__@Brad__.TNRS@vegpath.org" IS DISTINCT FROM |
|
465 |
CASE |
|
466 |
WHEN ("*Accepted_name_rank" = 'family'::text) THEN concat_ws(' '::text, "*Accepted_name_family", "[parsed_]morphospecies[_suffix]__@Brad__.morphosp@vegpath.org") |
|
467 |
WHEN ("*Accepted_name_rank" = 'genus'::text) THEN concat_ws(' '::text, "*Accepted_name", "[parsed_]morphospecies[_suffix]__@Brad__.morphosp@vegpath.org") |
|
468 |
ELSE "*Accepted_name_species" |
|
469 |
END))), |
|
412 | 470 |
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))))), |
413 | 471 |
CONSTRAINT "[accepted_]specificEpithet__@DwC__@vegpath.org" CHECK ((NOT ("[accepted_]specificEpithet__@DwC__@vegpath.org" IS DISTINCT FROM "__accepted_{genus,specific_epithet}"[2]))), |
414 | 472 |
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))))), |
415 | 473 |
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")))), |
474 |
CONSTRAINT "[parsed_]morphospecies[_suffix]__@Brad__.morphosp@vegpath.org" CHECK ((NOT ("[parsed_]morphospecies[_suffix]__@Brad__.morphosp@vegpath.org" IS DISTINCT FROM "*Unmatched_terms"))), |
|
475 |
CONSTRAINT "[scrubbed_]Infraspecific_rank[_abbr]__@TNRS__@vegpath.org" CHECK ((NOT ("[scrubbed_]Infraspecific_rank[_abbr]__@TNRS__@vegpath.org" IS DISTINCT FROM |
|
476 |
CASE |
|
477 |
WHEN matched_has_accepted THEN "[accepted_]Infraspecific_rank[_abbr]__@TNRS__@vegpath.org" |
|
478 |
ELSE "*Infraspecific_rank" |
|
479 |
END))), |
|
480 |
CONSTRAINT "[scrubbed_]author~(-Accepted_-)__@TNRS__@vegpath.org" CHECK ((NOT ("[scrubbed_]author~(-Accepted_-)__@TNRS__@vegpath.org" IS DISTINCT FROM |
|
481 |
CASE |
|
482 |
WHEN matched_has_accepted THEN "*Accepted_name_author" |
|
483 |
ELSE "*Name_matched_author" |
|
484 |
END))), |
|
485 |
CONSTRAINT "[scrubbed_]family~(-Accepted_-)__@TNRS__@vegpath.org" CHECK ((NOT ("[scrubbed_]family~(-Accepted_-)__@TNRS__@vegpath.org" IS DISTINCT FROM |
|
486 |
CASE |
|
487 |
WHEN matched_has_accepted THEN "*Accepted_name_family" |
|
488 |
ELSE "*Name_matched_accepted_family" |
|
489 |
END))), |
|
490 |
CONSTRAINT "[scrubbed_]genus__@DwC__@vegpath.org" CHECK ((NOT ("[scrubbed_]genus__@DwC__@vegpath.org" IS DISTINCT FROM |
|
491 |
CASE |
|
492 |
WHEN matched_has_accepted THEN "[accepted_]genus__@DwC__@vegpath.org" |
|
493 |
ELSE "*Genus_matched" |
|
494 |
END))), |
|
495 |
CONSTRAINT "[scrubbed_]infraspecificEpithet__@DwC__@vegpath.org" CHECK ((NOT ("[scrubbed_]infraspecificEpithet__@DwC__@vegpath.org" IS DISTINCT FROM |
|
496 |
CASE |
|
497 |
WHEN matched_has_accepted THEN "[accepted_]specificEpithet__@DwC__@vegpath.org" |
|
498 |
ELSE "*Infraspecific_epithet_matched" |
|
499 |
END))), |
|
500 |
CONSTRAINT "[scrubbed_]name[_no_author]~(-Accepted_-)__@TNRS__@vegpath.org" CHECK ((NOT ("[scrubbed_]name[_no_author]~(-Accepted_-)__@TNRS__@vegpath.org" IS DISTINCT FROM |
|
501 |
CASE |
|
502 |
WHEN matched_has_accepted THEN "*Accepted_name" |
|
503 |
ELSE "*Name_matched" |
|
504 |
END))), |
|
505 |
CONSTRAINT "[scrubbed_]scientificName[_with_author]__@DwC__@vegpath.org" CHECK ((NOT ("[scrubbed_]scientificName[_with_author]__@DwC__@vegpath.org" IS DISTINCT FROM |
|
506 |
CASE |
|
507 |
WHEN matched_has_accepted THEN "[accepted_]scientificName[_with_author]__@DwC__@vegpath.org" |
|
508 |
ELSE "[matched_]scientificName[_with_author]__@DwC__@vegpath.org" |
|
509 |
END))), |
|
510 |
CONSTRAINT "[scrubbed_]species[_binom]~(-Accepted_-)__@TNRS__@vegpath.org" CHECK ((NOT ("[scrubbed_]species[_binom]~(-Accepted_-)__@TNRS__@vegpath.org" IS DISTINCT FROM |
|
511 |
CASE |
|
512 |
WHEN matched_has_accepted THEN "*Accepted_name_species" |
|
513 |
ELSE "[matched_]species[_binomial]~(-Accepted_-)__@TNRS__@vegpath.org" |
|
514 |
END))), |
|
515 |
CONSTRAINT "[scrubbed_]specificEpithet__@DwC__@vegpath.org" CHECK ((NOT ("[scrubbed_]specificEpithet__@DwC__@vegpath.org" IS DISTINCT FROM |
|
516 |
CASE |
|
517 |
WHEN matched_has_accepted THEN "[accepted_]specificEpithet__@DwC__@vegpath.org" |
|
518 |
ELSE "*Specific_epithet_matched" |
|
519 |
END))), |
|
520 |
CONSTRAINT "[scrubbed_]taxonRank__@DwC__@vegpath.org" CHECK ((NOT ("[scrubbed_]taxonRank__@DwC__@vegpath.org" IS DISTINCT FROM |
|
521 |
CASE |
|
522 |
WHEN matched_has_accepted THEN "*Accepted_name_rank" |
|
523 |
ELSE "*Name_matched_rank" |
|
524 |
END))), |
|
416 | 525 |
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)))), |
417 | 526 |
CONSTRAINT "__accepted_infraspecific_{rank,epithet}" CHECK ((NOT ("__accepted_infraspecific_{rank,epithet}" IS DISTINCT FROM regexp_split_to_array(__accepted_infraspecific_label, ' '::text)))), |
418 | 527 |
CONSTRAINT "__accepted_{genus,specific_epithet}" CHECK ((NOT ("__accepted_{genus,specific_epithet}" IS DISTINCT FROM regexp_split_to_array("*Accepted_name_species", ' '::text)))), |
... | ... | |
452 | 561 |
|
453 | 562 |
|
454 | 563 |
-- |
564 |
-- Name: COLUMN taxon_match."[parsed_]morphospecies[_suffix]__@Brad__.morphosp@vegpath.org"; Type: COMMENT; Schema: TNRS; Owner: bien |
|
565 |
-- |
|
566 |
|
|
567 |
COMMENT ON COLUMN taxon_match."[parsed_]morphospecies[_suffix]__@Brad__.morphosp@vegpath.org" IS ' |
|
568 |
= "*Unmatched_terms" |
|
569 |
|
|
570 |
derived column |
|
571 |
|
|
572 |
to modify expr: |
|
573 |
SELECT util.derived_col_update(((''"TNRS".taxon_match'', ''[parsed_]morphospecies[_suffix]__@Brad__.morphosp@vegpath.org'')::util.col, $$"*Unmatched_terms"$$)::util.derived_col_def); |
|
574 |
SELECT util.derived_cols_populate(''"TNRS".taxon_match''::regclass); |
|
575 |
|
|
576 |
to rename: |
|
577 |
# rename column |
|
578 |
# rename CHECK constraint |
|
579 |
SELECT util.derived_cols_update(''"TNRS".taxon_match''::regclass); |
|
580 |
'; |
|
581 |
|
|
582 |
|
|
583 |
-- |
|
455 | 584 |
-- Name: COLUMN taxon_match."[matched_]species[_binomial]~(-Accepted_-)__@TNRS__@vegpath.org"; Type: COMMENT; Schema: TNRS; Owner: bien |
456 | 585 |
-- |
457 | 586 |
|
458 | 587 |
COMMENT ON COLUMN taxon_match."[matched_]species[_binomial]~(-Accepted_-)__@TNRS__@vegpath.org" IS ' |
459 |
derived column; = ("*Genus_matched" || '' ''::text) || "*Specific_epithet_matched"
|
|
588 |
= ("*Genus_matched" || '' ''::text) || "*Specific_epithet_matched" |
|
460 | 589 |
|
590 |
derived column |
|
591 |
|
|
461 | 592 |
to modify expr: |
462 |
SELECT util.derived_col_update(((''"TNRS".taxon_match'', ''[matched_]species[_binomial]~(-Accepted_-)__@TNRS__@vegpath.org'')::util.col, $$"*Genus_matched" || '' ''::text || "*Specific_epithet_matched"$$)::util.derived_col_def);
|
|
593 |
SELECT util.derived_col_update(((''"TNRS".taxon_match'', ''[matched_]species[_binomial]~(-Accepted_-)__@TNRS__@vegpath.org'')::util.col, $$("*Genus_matched" || '' ''::text) || "*Specific_epithet_matched"$$)::util.derived_col_def);
|
|
463 | 594 |
SELECT util.derived_cols_populate(''"TNRS".taxon_match''::regclass); |
464 | 595 |
|
465 | 596 |
to rename: |
... | ... | |
474 | 605 |
-- |
475 | 606 |
|
476 | 607 |
COMMENT ON COLUMN taxon_match."[matched_]scientificName[_with_author]__@DwC__@vegpath.org" IS ' |
477 |
derived column; = "*Name_matched" || COALESCE(('' ''::text || "*Name_matched_author"), ''''::text)
|
|
608 |
= "*Name_matched" || COALESCE(('' ''::text || "*Name_matched_author"), ''''::text) |
|
478 | 609 |
|
610 |
derived column |
|
611 |
|
|
479 | 612 |
to modify expr: |
480 | 613 |
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); |
481 | 614 |
SELECT util.derived_cols_populate(''"TNRS".taxon_match''::regclass); |
... | ... | |
492 | 625 |
-- |
493 | 626 |
|
494 | 627 |
COMMENT ON COLUMN taxon_match.matched_has_accepted IS ' |
495 |
derived column; = "*Accepted_name" IS NOT NULL
|
|
628 |
= "*Accepted_name" IS NOT NULL |
|
496 | 629 |
|
630 |
derived column |
|
631 |
|
|
497 | 632 |
to modify expr: |
498 | 633 |
SELECT util.derived_col_update(((''"TNRS".taxon_match'', ''matched_has_accepted'')::util.col, $$"*Accepted_name" IS NOT NULL$$)::util.derived_col_def); |
499 | 634 |
SELECT util.derived_cols_populate(''"TNRS".taxon_match''::regclass); |
... | ... | |
510 | 645 |
-- |
511 | 646 |
|
512 | 647 |
COMMENT ON COLUMN taxon_match."__accepted_{genus,specific_epithet}" IS ' |
513 |
derived column; = regexp_split_to_array("*Accepted_name_species", '' ''::text)
|
|
648 |
= regexp_split_to_array("*Accepted_name_species", '' ''::text) |
|
514 | 649 |
|
650 |
derived column |
|
651 |
|
|
515 | 652 |
to modify expr: |
516 | 653 |
SELECT util.derived_col_update(((''"TNRS".taxon_match'', ''__accepted_{genus,specific_epithet}'')::util.col, $$regexp_split_to_array("*Accepted_name_species", '' ''::text)$$)::util.derived_col_def); |
517 | 654 |
SELECT util.derived_cols_populate(''"TNRS".taxon_match''::regclass); |
... | ... | |
528 | 665 |
-- |
529 | 666 |
|
530 | 667 |
COMMENT ON COLUMN taxon_match."[accepted_]genus__@DwC__@vegpath.org" IS ' |
531 |
derived column; = "__accepted_{genus,specific_epithet}"[1]
|
|
668 |
= "__accepted_{genus,specific_epithet}"[1] |
|
532 | 669 |
|
670 |
derived column |
|
671 |
|
|
533 | 672 |
to modify expr: |
534 | 673 |
SELECT util.derived_col_update(((''"TNRS".taxon_match'', ''[accepted_]genus__@DwC__@vegpath.org'')::util.col, $$"__accepted_{genus,specific_epithet}"[1]$$)::util.derived_col_def); |
535 | 674 |
SELECT util.derived_cols_populate(''"TNRS".taxon_match''::regclass); |
... | ... | |
546 | 685 |
-- |
547 | 686 |
|
548 | 687 |
COMMENT ON COLUMN taxon_match."[accepted_]specificEpithet__@DwC__@vegpath.org" IS ' |
549 |
derived column; = "__accepted_{genus,specific_epithet}"[2]
|
|
688 |
= "__accepted_{genus,specific_epithet}"[2] |
|
550 | 689 |
|
690 |
derived column |
|
691 |
|
|
551 | 692 |
to modify expr: |
552 | 693 |
SELECT util.derived_col_update(((''"TNRS".taxon_match'', ''[accepted_]specificEpithet__@DwC__@vegpath.org'')::util.col, $$"__accepted_{genus,specific_epithet}"[2]$$)::util.derived_col_def); |
553 | 694 |
SELECT util.derived_cols_populate(''"TNRS".taxon_match''::regclass); |
... | ... | |
560 | 701 |
|
561 | 702 |
|
562 | 703 |
-- |
704 |
-- Name: COLUMN taxon_match."[accepted_]morphospecies[_binomial]__@Brad__.TNRS@vegpath.org"; Type: COMMENT; Schema: TNRS; Owner: bien |
|
705 |
-- |
|
706 |
|
|
707 |
COMMENT ON COLUMN taxon_match."[accepted_]morphospecies[_binomial]__@Brad__.TNRS@vegpath.org" IS ' |
|
708 |
= CASE |
|
709 |
WHEN ("*Accepted_name_rank" = ''family''::text) THEN concat_ws('' ''::text, "*Accepted_name_family", "[parsed_]morphospecies[_suffix]__@Brad__.morphosp@vegpath.org") |
|
710 |
WHEN ("*Accepted_name_rank" = ''genus''::text) THEN concat_ws('' ''::text, "*Accepted_name", "[parsed_]morphospecies[_suffix]__@Brad__.morphosp@vegpath.org") |
|
711 |
ELSE "*Accepted_name_species" |
|
712 |
END |
|
713 |
|
|
714 |
derived column |
|
715 |
|
|
716 |
to modify expr: |
|
717 |
SELECT util.derived_col_update(((''"TNRS".taxon_match'', ''[accepted_]morphospecies[_binomial]__@Brad__.TNRS@vegpath.org'')::util.col, $$CASE |
|
718 |
WHEN ("*Accepted_name_rank" = ''family''::text) THEN concat_ws('' ''::text, "*Accepted_name_family", "[parsed_]morphospecies[_suffix]__@Brad__.morphosp@vegpath.org") |
|
719 |
WHEN ("*Accepted_name_rank" = ''genus''::text) THEN concat_ws('' ''::text, "*Accepted_name", "[parsed_]morphospecies[_suffix]__@Brad__.morphosp@vegpath.org") |
|
720 |
ELSE "*Accepted_name_species" |
|
721 |
END$$)::util.derived_col_def); |
|
722 |
SELECT util.derived_cols_populate(''"TNRS".taxon_match''::regclass); |
|
723 |
|
|
724 |
to rename: |
|
725 |
# rename column |
|
726 |
# rename CHECK constraint |
|
727 |
SELECT util.derived_cols_update(''"TNRS".taxon_match''::regclass); |
|
728 |
'; |
|
729 |
|
|
730 |
|
|
731 |
-- |
|
563 | 732 |
-- Name: COLUMN taxon_match.__accepted_infraspecific_label; Type: COMMENT; Schema: TNRS; Owner: bien |
564 | 733 |
-- |
565 | 734 |
|
566 | 735 |
COMMENT ON COLUMN taxon_match.__accepted_infraspecific_label IS ' |
567 |
derived column; = ltrim(NULLIF(util.remove_prefix("*Accepted_name_species", "*Accepted_name", require := true), ''''::text), '' ''::text)
|
|
736 |
= ltrim(NULLIF(util.remove_prefix("*Accepted_name_species", "*Accepted_name", require := true), ''''::text), '' ''::text) |
|
568 | 737 |
|
738 |
derived column |
|
739 |
|
|
569 | 740 |
to modify expr: |
570 | 741 |
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); |
571 | 742 |
SELECT util.derived_cols_populate(''"TNRS".taxon_match''::regclass); |
... | ... | |
582 | 753 |
-- |
583 | 754 |
|
584 | 755 |
COMMENT ON COLUMN taxon_match."__accepted_infraspecific_{rank,epithet}" IS ' |
585 |
derived column; = regexp_split_to_array(__accepted_infraspecific_label, '' ''::text)
|
|
756 |
= regexp_split_to_array(__accepted_infraspecific_label, '' ''::text) |
|
586 | 757 |
|
758 |
derived column |
|
759 |
|
|
587 | 760 |
to modify expr: |
588 | 761 |
SELECT util.derived_col_update(((''"TNRS".taxon_match'', ''__accepted_infraspecific_{rank,epithet}'')::util.col, $$regexp_split_to_array(__accepted_infraspecific_label, '' ''::text)$$)::util.derived_col_def); |
589 | 762 |
SELECT util.derived_cols_populate(''"TNRS".taxon_match''::regclass); |
... | ... | |
600 | 773 |
-- |
601 | 774 |
|
602 | 775 |
COMMENT ON COLUMN taxon_match."[accepted_]Infraspecific_rank[_abbr]__@TNRS__@vegpath.org" IS ' |
603 |
derived column; = "__accepted_infraspecific_{rank,epithet}"[1]
|
|
776 |
= "__accepted_infraspecific_{rank,epithet}"[1] |
|
604 | 777 |
|
778 |
derived column |
|
779 |
|
|
605 | 780 |
to modify expr: |
606 | 781 |
SELECT util.derived_col_update(((''"TNRS".taxon_match'', ''[accepted_]Infraspecific_rank[_abbr]__@TNRS__@vegpath.org'')::util.col, $$"__accepted_infraspecific_{rank,epithet}"[1]$$)::util.derived_col_def); |
607 | 782 |
SELECT util.derived_cols_populate(''"TNRS".taxon_match''::regclass); |
... | ... | |
618 | 793 |
-- |
619 | 794 |
|
620 | 795 |
COMMENT ON COLUMN taxon_match."[accepted_]infraspecificEpithet__@DwC__@vegpath.org" IS ' |
621 |
derived column; = "__accepted_infraspecific_{rank,epithet}"[2]
|
|
796 |
= "__accepted_infraspecific_{rank,epithet}"[2] |
|
622 | 797 |
|
798 |
derived column |
|
799 |
|
|
623 | 800 |
to modify expr: |
624 | 801 |
SELECT util.derived_col_update(((''"TNRS".taxon_match'', ''[accepted_]infraspecificEpithet__@DwC__@vegpath.org'')::util.col, $$"__accepted_infraspecific_{rank,epithet}"[2]$$)::util.derived_col_def); |
625 | 802 |
SELECT util.derived_cols_populate(''"TNRS".taxon_match''::regclass); |
... | ... | |
636 | 813 |
-- |
637 | 814 |
|
638 | 815 |
COMMENT ON COLUMN taxon_match."[accepted_]scientificName[_with_author]__@DwC__@vegpath.org" IS ' |
639 |
derived column; = "*Accepted_name" || COALESCE(('' ''::text || "*Accepted_name_author"), ''''::text)
|
|
816 |
= "*Accepted_name" || COALESCE(('' ''::text || "*Accepted_name_author"), ''''::text) |
|
640 | 817 |
|
818 |
derived column |
|
819 |
|
|
641 | 820 |
to modify expr: |
642 | 821 |
SELECT util.derived_col_update(((''"TNRS".taxon_match'', ''[accepted_]scientificName[_with_author]__@DwC__@vegpath.org'')::util.col, $$"*Accepted_name" || COALESCE(('' ''::text || "*Accepted_name_author"), ''''::text)$$)::util.derived_col_def); |
643 | 822 |
SELECT util.derived_cols_populate(''"TNRS".taxon_match''::regclass); |
... | ... | |
650 | 829 |
|
651 | 830 |
|
652 | 831 |
-- |
832 |
-- Name: COLUMN taxon_match."[scrubbed_]taxonRank__@DwC__@vegpath.org"; Type: COMMENT; Schema: TNRS; Owner: bien |
|
833 |
-- |
|
834 |
|
|
835 |
COMMENT ON COLUMN taxon_match."[scrubbed_]taxonRank__@DwC__@vegpath.org" IS ' |
|
836 |
= CASE |
|
837 |
WHEN matched_has_accepted THEN "*Accepted_name_rank" |
|
838 |
ELSE "*Name_matched_rank" |
|
839 |
END |
|
840 |
|
|
841 |
derived column |
|
842 |
|
|
843 |
to modify expr: |
|
844 |
SELECT util.derived_col_update(((''"TNRS".taxon_match'', ''[scrubbed_]taxonRank__@DwC__@vegpath.org'')::util.col, $$CASE |
|
845 |
WHEN matched_has_accepted THEN "*Accepted_name_rank" |
|
846 |
ELSE "*Name_matched_rank" |
|
847 |
END$$)::util.derived_col_def); |
|
848 |
SELECT util.derived_cols_populate(''"TNRS".taxon_match''::regclass); |
|
849 |
|
|
850 |
to rename: |
|
851 |
# rename column |
|
852 |
# rename CHECK constraint |
|
853 |
SELECT util.derived_cols_update(''"TNRS".taxon_match''::regclass); |
|
854 |
'; |
|
855 |
|
|
856 |
|
|
857 |
-- |
|
858 |
-- Name: COLUMN taxon_match."[scrubbed_]family~(-Accepted_-)__@TNRS__@vegpath.org"; Type: COMMENT; Schema: TNRS; Owner: bien |
|
859 |
-- |
|
860 |
|
|
861 |
COMMENT ON COLUMN taxon_match."[scrubbed_]family~(-Accepted_-)__@TNRS__@vegpath.org" IS ' |
|
862 |
= CASE |
|
863 |
WHEN matched_has_accepted THEN "*Accepted_name_family" |
|
864 |
ELSE "*Name_matched_accepted_family" |
|
865 |
END |
|
866 |
|
|
867 |
derived column |
|
868 |
|
|
869 |
to modify expr: |
|
870 |
SELECT util.derived_col_update(((''"TNRS".taxon_match'', ''[scrubbed_]family~(-Accepted_-)__@TNRS__@vegpath.org'')::util.col, $$CASE |
|
871 |
WHEN matched_has_accepted THEN "*Accepted_name_family" |
|
872 |
ELSE "*Name_matched_accepted_family" |
|
873 |
END$$)::util.derived_col_def); |
|
874 |
SELECT util.derived_cols_populate(''"TNRS".taxon_match''::regclass); |
|
875 |
|
|
876 |
to rename: |
|
877 |
# rename column |
|
878 |
# rename CHECK constraint |
|
879 |
SELECT util.derived_cols_update(''"TNRS".taxon_match''::regclass); |
|
880 |
'; |
|
881 |
|
|
882 |
|
|
883 |
-- |
|
884 |
-- Name: COLUMN taxon_match."[scrubbed_]genus__@DwC__@vegpath.org"; Type: COMMENT; Schema: TNRS; Owner: bien |
|
885 |
-- |
|
886 |
|
|
887 |
COMMENT ON COLUMN taxon_match."[scrubbed_]genus__@DwC__@vegpath.org" IS ' |
|
888 |
= CASE |
|
889 |
WHEN matched_has_accepted THEN "[accepted_]genus__@DwC__@vegpath.org" |
|
890 |
ELSE "*Genus_matched" |
|
891 |
END |
|
892 |
|
|
893 |
derived column |
|
894 |
|
|
895 |
to modify expr: |
|
896 |
SELECT util.derived_col_update(((''"TNRS".taxon_match'', ''[scrubbed_]genus__@DwC__@vegpath.org'')::util.col, $$CASE |
|
897 |
WHEN matched_has_accepted THEN "[accepted_]genus__@DwC__@vegpath.org" |
|
898 |
ELSE "*Genus_matched" |
|
899 |
END$$)::util.derived_col_def); |
|
900 |
SELECT util.derived_cols_populate(''"TNRS".taxon_match''::regclass); |
|
901 |
|
|
902 |
to rename: |
|
903 |
# rename column |
|
904 |
# rename CHECK constraint |
|
905 |
SELECT util.derived_cols_update(''"TNRS".taxon_match''::regclass); |
|
906 |
'; |
|
907 |
|
|
908 |
|
|
909 |
-- |
|
910 |
-- Name: COLUMN taxon_match."[scrubbed_]specificEpithet__@DwC__@vegpath.org"; Type: COMMENT; Schema: TNRS; Owner: bien |
|
911 |
-- |
|
912 |
|
|
913 |
COMMENT ON COLUMN taxon_match."[scrubbed_]specificEpithet__@DwC__@vegpath.org" IS ' |
|
914 |
= CASE |
|
915 |
WHEN matched_has_accepted THEN "[accepted_]specificEpithet__@DwC__@vegpath.org" |
|
916 |
ELSE "*Specific_epithet_matched" |
|
917 |
END |
|
918 |
|
|
919 |
derived column |
|
920 |
|
|
921 |
to modify expr: |
|
922 |
SELECT util.derived_col_update(((''"TNRS".taxon_match'', ''[scrubbed_]specificEpithet__@DwC__@vegpath.org'')::util.col, $$CASE |
|
923 |
WHEN matched_has_accepted THEN "[accepted_]specificEpithet__@DwC__@vegpath.org" |
|
924 |
ELSE "*Specific_epithet_matched" |
|
925 |
END$$)::util.derived_col_def); |
|
926 |
SELECT util.derived_cols_populate(''"TNRS".taxon_match''::regclass); |
|
927 |
|
|
928 |
to rename: |
|
929 |
# rename column |
|
930 |
# rename CHECK constraint |
|
931 |
SELECT util.derived_cols_update(''"TNRS".taxon_match''::regclass); |
|
932 |
'; |
|
933 |
|
|
934 |
|
|
935 |
-- |
|
936 |
-- Name: COLUMN taxon_match."[scrubbed_]species[_binom]~(-Accepted_-)__@TNRS__@vegpath.org"; Type: COMMENT; Schema: TNRS; Owner: bien |
|
937 |
-- |
|
938 |
|
|
939 |
COMMENT ON COLUMN taxon_match."[scrubbed_]species[_binom]~(-Accepted_-)__@TNRS__@vegpath.org" IS ' |
|
940 |
= CASE |
|
941 |
WHEN matched_has_accepted THEN "*Accepted_name_species" |
|
942 |
ELSE "[matched_]species[_binomial]~(-Accepted_-)__@TNRS__@vegpath.org" |
|
943 |
END |
|
944 |
|
|
945 |
derived column |
|
946 |
|
|
947 |
to modify expr: |
|
948 |
SELECT util.derived_col_update(((''"TNRS".taxon_match'', ''[scrubbed_]species[_binom]~(-Accepted_-)__@TNRS__@vegpath.org'')::util.col, $$CASE |
|
949 |
WHEN matched_has_accepted THEN "*Accepted_name_species" |
|
950 |
ELSE "[matched_]species[_binomial]~(-Accepted_-)__@TNRS__@vegpath.org" |
|
951 |
END$$)::util.derived_col_def); |
|
952 |
SELECT util.derived_cols_populate(''"TNRS".taxon_match''::regclass); |
|
953 |
|
|
954 |
to rename: |
|
955 |
# rename column |
|
956 |
# rename CHECK constraint |
|
957 |
SELECT util.derived_cols_update(''"TNRS".taxon_match''::regclass); |
|
958 |
'; |
|
959 |
|
|
960 |
|
|
961 |
-- |
|
962 |
-- Name: COLUMN taxon_match."[scrubbed_]Infraspecific_rank[_abbr]__@TNRS__@vegpath.org"; Type: COMMENT; Schema: TNRS; Owner: bien |
|
963 |
-- |
|
964 |
|
|
965 |
COMMENT ON COLUMN taxon_match."[scrubbed_]Infraspecific_rank[_abbr]__@TNRS__@vegpath.org" IS ' |
|
966 |
= CASE |
|
967 |
WHEN matched_has_accepted THEN "[accepted_]Infraspecific_rank[_abbr]__@TNRS__@vegpath.org" |
|
968 |
ELSE "*Infraspecific_rank" |
|
969 |
END |
|
970 |
|
|
971 |
derived column |
|
972 |
|
|
973 |
to modify expr: |
|
974 |
SELECT util.derived_col_update(((''"TNRS".taxon_match'', ''[scrubbed_]Infraspecific_rank[_abbr]__@TNRS__@vegpath.org'')::util.col, $$CASE |
|
975 |
WHEN matched_has_accepted THEN "[accepted_]Infraspecific_rank[_abbr]__@TNRS__@vegpath.org" |
|
976 |
ELSE "*Infraspecific_rank" |
|
977 |
END$$)::util.derived_col_def); |
|
978 |
SELECT util.derived_cols_populate(''"TNRS".taxon_match''::regclass); |
|
979 |
|
|
980 |
to rename: |
|
981 |
# rename column |
|
982 |
# rename CHECK constraint |
|
983 |
SELECT util.derived_cols_update(''"TNRS".taxon_match''::regclass); |
|
984 |
'; |
|
985 |
|
|
986 |
|
|
987 |
-- |
|
988 |
-- Name: COLUMN taxon_match."[scrubbed_]infraspecificEpithet__@DwC__@vegpath.org"; Type: COMMENT; Schema: TNRS; Owner: bien |
|
989 |
-- |
|
990 |
|
|
991 |
COMMENT ON COLUMN taxon_match."[scrubbed_]infraspecificEpithet__@DwC__@vegpath.org" IS ' |
|
992 |
= CASE |
|
993 |
WHEN matched_has_accepted THEN "[accepted_]specificEpithet__@DwC__@vegpath.org" |
|
994 |
ELSE "*Infraspecific_epithet_matched" |
|
995 |
END |
|
996 |
|
|
997 |
derived column |
|
998 |
|
|
999 |
to modify expr: |
|
1000 |
SELECT util.derived_col_update(((''"TNRS".taxon_match'', ''[scrubbed_]infraspecificEpithet__@DwC__@vegpath.org'')::util.col, $$CASE |
|
1001 |
WHEN matched_has_accepted THEN "[accepted_]specificEpithet__@DwC__@vegpath.org" |
|
1002 |
ELSE "*Infraspecific_epithet_matched" |
|
1003 |
END$$)::util.derived_col_def); |
|
1004 |
SELECT util.derived_cols_populate(''"TNRS".taxon_match''::regclass); |
|
1005 |
|
|
1006 |
to rename: |
|
1007 |
# rename column |
|
1008 |
# rename CHECK constraint |
|
1009 |
SELECT util.derived_cols_update(''"TNRS".taxon_match''::regclass); |
|
1010 |
'; |
|
1011 |
|
|
1012 |
|
|
1013 |
-- |
|
1014 |
-- Name: COLUMN taxon_match."[scrubbed_]name[_no_author]~(-Accepted_-)__@TNRS__@vegpath.org"; Type: COMMENT; Schema: TNRS; Owner: bien |
|
1015 |
-- |
|
1016 |
|
|
1017 |
COMMENT ON COLUMN taxon_match."[scrubbed_]name[_no_author]~(-Accepted_-)__@TNRS__@vegpath.org" IS ' |
|
1018 |
= CASE |
|
1019 |
WHEN matched_has_accepted THEN "*Accepted_name" |
|
1020 |
ELSE "*Name_matched" |
|
1021 |
END |
|
1022 |
|
|
1023 |
derived column |
|
1024 |
|
|
1025 |
to modify expr: |
|
1026 |
SELECT util.derived_col_update(((''"TNRS".taxon_match'', ''[scrubbed_]name[_no_author]~(-Accepted_-)__@TNRS__@vegpath.org'')::util.col, $$CASE |
|
1027 |
WHEN matched_has_accepted THEN "*Accepted_name" |
|
1028 |
ELSE "*Name_matched" |
|
1029 |
END$$)::util.derived_col_def); |
|
1030 |
SELECT util.derived_cols_populate(''"TNRS".taxon_match''::regclass); |
|
1031 |
|
|
1032 |
to rename: |
|
1033 |
# rename column |
|
1034 |
# rename CHECK constraint |
|
1035 |
SELECT util.derived_cols_update(''"TNRS".taxon_match''::regclass); |
|
1036 |
'; |
|
1037 |
|
|
1038 |
|
|
1039 |
-- |
|
1040 |
-- Name: COLUMN taxon_match."[scrubbed_]author~(-Accepted_-)__@TNRS__@vegpath.org"; Type: COMMENT; Schema: TNRS; Owner: bien |
|
1041 |
-- |
|
1042 |
|
|
1043 |
COMMENT ON COLUMN taxon_match."[scrubbed_]author~(-Accepted_-)__@TNRS__@vegpath.org" IS ' |
|
1044 |
= CASE |
|
1045 |
WHEN matched_has_accepted THEN "*Accepted_name_author" |
|
1046 |
ELSE "*Name_matched_author" |
|
1047 |
END |
|
1048 |
|
|
1049 |
derived column |
|
1050 |
|
|
1051 |
to modify expr: |
|
1052 |
SELECT util.derived_col_update(((''"TNRS".taxon_match'', ''[scrubbed_]author~(-Accepted_-)__@TNRS__@vegpath.org'')::util.col, $$CASE |
|
1053 |
WHEN matched_has_accepted THEN "*Accepted_name_author" |
|
1054 |
ELSE "*Name_matched_author" |
|
1055 |
END$$)::util.derived_col_def); |
|
1056 |
SELECT util.derived_cols_populate(''"TNRS".taxon_match''::regclass); |
|
1057 |
|
|
1058 |
to rename: |
|
1059 |
# rename column |
|
1060 |
# rename CHECK constraint |
|
1061 |
SELECT util.derived_cols_update(''"TNRS".taxon_match''::regclass); |
|
1062 |
'; |
|
1063 |
|
|
1064 |
|
|
1065 |
-- |
|
1066 |
-- Name: COLUMN taxon_match."[scrubbed_]scientificName[_with_author]__@DwC__@vegpath.org"; Type: COMMENT; Schema: TNRS; Owner: bien |
|
1067 |
-- |
|
1068 |
|
|
1069 |
COMMENT ON COLUMN taxon_match."[scrubbed_]scientificName[_with_author]__@DwC__@vegpath.org" IS ' |
|
1070 |
= CASE |
|
1071 |
WHEN matched_has_accepted THEN "[accepted_]scientificName[_with_author]__@DwC__@vegpath.org" |
|
1072 |
ELSE "[matched_]scientificName[_with_author]__@DwC__@vegpath.org" |
|
1073 |
END |
|
1074 |
|
|
1075 |
derived column |
|
1076 |
|
|
1077 |
to modify expr: |
|
1078 |
SELECT util.derived_col_update(((''"TNRS".taxon_match'', ''[scrubbed_]scientificName[_with_author]__@DwC__@vegpath.org'')::util.col, $$CASE |
|
1079 |
WHEN matched_has_accepted THEN "[accepted_]scientificName[_with_author]__@DwC__@vegpath.org" |
|
1080 |
ELSE "[matched_]scientificName[_with_author]__@DwC__@vegpath.org" |
|
1081 |
END$$)::util.derived_col_def); |
|
1082 |
SELECT util.derived_cols_populate(''"TNRS".taxon_match''::regclass); |
|
1083 |
|
|
1084 |
to rename: |
|
1085 |
# rename column |
|
1086 |
# rename CHECK constraint |
|
1087 |
SELECT util.derived_cols_update(''"TNRS".taxon_match''::regclass); |
|
1088 |
'; |
|
1089 |
|
|
1090 |
|
|
1091 |
-- |
|
653 | 1092 |
-- Name: taxon_best_match; Type: VIEW; Schema: TNRS; Owner: bien |
654 | 1093 |
-- |
655 | 1094 |
|
... | ... | |
694 | 1133 |
taxon_match."*Accepted_name_lsid", |
695 | 1134 |
taxon_match.is_valid_match, |
696 | 1135 |
taxon_match.scrubbed_unique_taxon_name, |
1136 |
taxon_match."[matched_]species[_binomial]~(-Accepted_-)__@TNRS__@vegpath.org", |
|
1137 |
taxon_match."[matched_]scientificName[_with_author]__@DwC__@vegpath.org", |
|
1138 |
taxon_match.matched_has_accepted, |
|
697 | 1139 |
taxon_match."__accepted_{genus,specific_epithet}", |
698 | 1140 |
taxon_match."[accepted_]genus__@DwC__@vegpath.org", |
699 | 1141 |
taxon_match."[accepted_]specificEpithet__@DwC__@vegpath.org", |
... | ... | |
701 | 1143 |
taxon_match."__accepted_infraspecific_{rank,epithet}", |
702 | 1144 |
taxon_match."[accepted_]Infraspecific_rank[_abbr]__@TNRS__@vegpath.org", |
703 | 1145 |
taxon_match."[accepted_]infraspecificEpithet__@DwC__@vegpath.org", |
704 |
taxon_match."[matched_]scientificName[_with_author]__@DwC__@vegpath.org", |
|
705 |
taxon_match."[accepted_]scientificName[_with_author]__@DwC__@vegpath.org" |
|
1146 |
taxon_match."[accepted_]scientificName[_with_author]__@DwC__@vegpath.org", |
|
1147 |
taxon_match."[scrubbed_]taxonRank__@DwC__@vegpath.org", |
|
1148 |
taxon_match."[scrubbed_]family~(-Accepted_-)__@TNRS__@vegpath.org", |
|
1149 |
taxon_match."[scrubbed_]genus__@DwC__@vegpath.org", |
|
1150 |
taxon_match."[scrubbed_]specificEpithet__@DwC__@vegpath.org", |
|
1151 |
taxon_match."[scrubbed_]species[_binom]~(-Accepted_-)__@TNRS__@vegpath.org", |
|
1152 |
taxon_match."[scrubbed_]Infraspecific_rank[_abbr]__@TNRS__@vegpath.org", |
|
1153 |
taxon_match."[scrubbed_]infraspecificEpithet__@DwC__@vegpath.org", |
|
1154 |
taxon_match."[scrubbed_]name[_no_author]~(-Accepted_-)__@TNRS__@vegpath.org", |
|
1155 |
taxon_match."[scrubbed_]author~(-Accepted_-)__@TNRS__@vegpath.org", |
|
1156 |
taxon_match."[scrubbed_]scientificName[_with_author]__@DwC__@vegpath.org" |
|
706 | 1157 |
FROM taxon_match |
707 | 1158 |
WHERE (taxon_match."*Selected" = 'true'::text); |
708 | 1159 |
|
... | ... | |
766 | 1217 |
taxon_best_match."*Accepted_name_lsid", |
767 | 1218 |
taxon_best_match.is_valid_match, |
768 | 1219 |
taxon_best_match.scrubbed_unique_taxon_name, |
1220 |
taxon_best_match."[matched_]species[_binomial]~(-Accepted_-)__@TNRS__@vegpath.org", |
|
1221 |
taxon_best_match."[matched_]scientificName[_with_author]__@DwC__@vegpath.org", |
|
1222 |
taxon_best_match.matched_has_accepted, |
|
769 | 1223 |
taxon_best_match."__accepted_{genus,specific_epithet}", |
770 | 1224 |
taxon_best_match."[accepted_]genus__@DwC__@vegpath.org", |
771 | 1225 |
taxon_best_match."[accepted_]specificEpithet__@DwC__@vegpath.org", |
... | ... | |
773 | 1227 |
taxon_best_match."__accepted_infraspecific_{rank,epithet}", |
774 | 1228 |
taxon_best_match."[accepted_]Infraspecific_rank[_abbr]__@TNRS__@vegpath.org", |
775 | 1229 |
taxon_best_match."[accepted_]infraspecificEpithet__@DwC__@vegpath.org", |
776 |
taxon_best_match."[matched_]scientificName[_with_author]__@DwC__@vegpath.org", |
|
777 | 1230 |
taxon_best_match."[accepted_]scientificName[_with_author]__@DwC__@vegpath.org", |
1231 |
taxon_best_match."[scrubbed_]taxonRank__@DwC__@vegpath.org", |
|
1232 |
taxon_best_match."[scrubbed_]family~(-Accepted_-)__@TNRS__@vegpath.org", |
|
1233 |
taxon_best_match."[scrubbed_]genus__@DwC__@vegpath.org", |
|
1234 |
taxon_best_match."[scrubbed_]specificEpithet__@DwC__@vegpath.org", |
|
1235 |
taxon_best_match."[scrubbed_]species[_binom]~(-Accepted_-)__@TNRS__@vegpath.org", |
|
1236 |
taxon_best_match."[scrubbed_]Infraspecific_rank[_abbr]__@TNRS__@vegpath.org", |
|
1237 |
taxon_best_match."[scrubbed_]infraspecificEpithet__@DwC__@vegpath.org", |
|
1238 |
taxon_best_match."[scrubbed_]name[_no_author]~(-Accepted_-)__@TNRS__@vegpath.org", |
|
1239 |
taxon_best_match."[scrubbed_]author~(-Accepted_-)__@TNRS__@vegpath.org", |
|
1240 |
taxon_best_match."[scrubbed_]scientificName[_with_author]__@DwC__@vegpath.org", |
|
778 | 1241 |
map_taxonomic_status(taxon_best_match."*Taxonomic_status", taxon_best_match."*Accepted_name") AS "taxonomicStatus", |
779 | 1242 |
CASE |
780 | 1243 |
WHEN (taxon_best_match."*Accepted_name_rank" = 'family'::text) THEN concat_ws(' '::text, taxon_best_match."*Accepted_name_family", taxon_best_match."*Unmatched_terms") |
... | ... | |
875 | 1338 |
"MatchedTaxon"."*Accepted_name_lsid", |
876 | 1339 |
"MatchedTaxon".is_valid_match, |
877 | 1340 |
"MatchedTaxon".scrubbed_unique_taxon_name, |
1341 |
"MatchedTaxon"."[matched_]species[_binomial]~(-Accepted_-)__@TNRS__@vegpath.org", |
|
1342 |
"MatchedTaxon"."[matched_]scientificName[_with_author]__@DwC__@vegpath.org", |
|
1343 |
"MatchedTaxon".matched_has_accepted, |
|
878 | 1344 |
"MatchedTaxon"."__accepted_{genus,specific_epithet}", |
879 | 1345 |
"MatchedTaxon"."[accepted_]genus__@DwC__@vegpath.org", |
880 | 1346 |
"MatchedTaxon"."[accepted_]specificEpithet__@DwC__@vegpath.org", |
... | ... | |
882 | 1348 |
"MatchedTaxon"."__accepted_infraspecific_{rank,epithet}", |
883 | 1349 |
"MatchedTaxon"."[accepted_]Infraspecific_rank[_abbr]__@TNRS__@vegpath.org", |
884 | 1350 |
"MatchedTaxon"."[accepted_]infraspecificEpithet__@DwC__@vegpath.org", |
885 |
"MatchedTaxon"."[matched_]scientificName[_with_author]__@DwC__@vegpath.org", |
|
886 | 1351 |
"MatchedTaxon"."[accepted_]scientificName[_with_author]__@DwC__@vegpath.org", |
1352 |
"MatchedTaxon"."[scrubbed_]taxonRank__@DwC__@vegpath.org", |
|
1353 |
"MatchedTaxon"."[scrubbed_]family~(-Accepted_-)__@TNRS__@vegpath.org", |
|
1354 |
"MatchedTaxon"."[scrubbed_]genus__@DwC__@vegpath.org", |
|
1355 |
"MatchedTaxon"."[scrubbed_]specificEpithet__@DwC__@vegpath.org", |
|
1356 |
"MatchedTaxon"."[scrubbed_]species[_binom]~(-Accepted_-)__@TNRS__@vegpath.org", |
|
1357 |
"MatchedTaxon"."[scrubbed_]Infraspecific_rank[_abbr]__@TNRS__@vegpath.org", |
|
1358 |
"MatchedTaxon"."[scrubbed_]infraspecificEpithet__@DwC__@vegpath.org", |
|
1359 |
"MatchedTaxon"."[scrubbed_]name[_no_author]~(-Accepted_-)__@TNRS__@vegpath.org", |
|
1360 |
"MatchedTaxon"."[scrubbed_]author~(-Accepted_-)__@TNRS__@vegpath.org", |
|
1361 |
"MatchedTaxon"."[scrubbed_]scientificName[_with_author]__@DwC__@vegpath.org", |
|
887 | 1362 |
"MatchedTaxon"."taxonomicStatus", |
888 | 1363 |
"MatchedTaxon".accepted_morphospecies_binomial |
889 | 1364 |
FROM "MatchedTaxon" |
... | ... | |
1169 | 1644 |
"ValidMatchedTaxon"."*Warnings", |
1170 | 1645 |
"ValidMatchedTaxon"."*Accepted_name_lsid", |
1171 | 1646 |
"ValidMatchedTaxon".is_valid_match, |
1647 |
"ValidMatchedTaxon"."[matched_]species[_binomial]~(-Accepted_-)__@TNRS__@vegpath.org", |
|
1648 |
"ValidMatchedTaxon"."[matched_]scientificName[_with_author]__@DwC__@vegpath.org", |
|
1649 |
"ValidMatchedTaxon".matched_has_accepted, |
|
1172 | 1650 |
"ValidMatchedTaxon"."__accepted_{genus,specific_epithet}", |
1173 | 1651 |
"ValidMatchedTaxon"."[accepted_]genus__@DwC__@vegpath.org", |
1174 | 1652 |
"ValidMatchedTaxon"."[accepted_]specificEpithet__@DwC__@vegpath.org", |
... | ... | |
1176 | 1654 |
"ValidMatchedTaxon"."__accepted_infraspecific_{rank,epithet}", |
1177 | 1655 |
"ValidMatchedTaxon"."[accepted_]Infraspecific_rank[_abbr]__@TNRS__@vegpath.org", |
1178 | 1656 |
"ValidMatchedTaxon"."[accepted_]infraspecificEpithet__@DwC__@vegpath.org", |
1179 |
"ValidMatchedTaxon"."[matched_]scientificName[_with_author]__@DwC__@vegpath.org", |
|
1180 | 1657 |
"ValidMatchedTaxon"."[accepted_]scientificName[_with_author]__@DwC__@vegpath.org", |
1658 |
"ValidMatchedTaxon"."[scrubbed_]taxonRank__@DwC__@vegpath.org", |
|
1659 |
"ValidMatchedTaxon"."[scrubbed_]family~(-Accepted_-)__@TNRS__@vegpath.org", |
|
1660 |
"ValidMatchedTaxon"."[scrubbed_]genus__@DwC__@vegpath.org", |
|
1661 |
"ValidMatchedTaxon"."[scrubbed_]specificEpithet__@DwC__@vegpath.org", |
|
1662 |
"ValidMatchedTaxon"."[scrubbed_]species[_binom]~(-Accepted_-)__@TNRS__@vegpath.org", |
|
1663 |
"ValidMatchedTaxon"."[scrubbed_]Infraspecific_rank[_abbr]__@TNRS__@vegpath.org", |
|
1664 |
"ValidMatchedTaxon"."[scrubbed_]infraspecificEpithet__@DwC__@vegpath.org", |
|
1665 |
"ValidMatchedTaxon"."[scrubbed_]name[_no_author]~(-Accepted_-)__@TNRS__@vegpath.org", |
|
1666 |
"ValidMatchedTaxon"."[scrubbed_]author~(-Accepted_-)__@TNRS__@vegpath.org", |
|
1667 |
"ValidMatchedTaxon"."[scrubbed_]scientificName[_with_author]__@DwC__@vegpath.org", |
|
1181 | 1668 |
"ValidMatchedTaxon"."taxonomicStatus", |
1182 | 1669 |
"ValidMatchedTaxon".accepted_morphospecies_binomial, |
1183 | 1670 |
"taxon_scrub.scrubbed_unique_taxon_name.*".scrubbed_taxon_rank, |
... | ... | |
1240 | 1727 |
-- |
1241 | 1728 |
|
1242 | 1729 |
COPY batch (id, id_by_time, time_submitted, client_version) FROM stdin; |
1243 |
2014-07-21 16:31:50.48692-07 2014-07-21 16:31:50.48692-07 2014-07-21 16:31:50.48692-07 \N
|
|
1730 |
2014-07-22 03:05:20.316489-07 2014-07-22 03:05:20.316489-07 2014-07-22 03:05:20.316489-07 \N
|
|
1244 | 1731 |
\. |
1245 | 1732 |
|
1246 | 1733 |
|
... | ... | |
1264 | 1751 |
-- Data for Name: taxon_match; Type: TABLE DATA; Schema: TNRS; Owner: bien |
1265 | 1752 |
-- |
1266 | 1753 |
|
1267 |
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, "[matched_]species[_binomial]~(-Accepted_-)__@TNRS__@vegpath.org", "[matched_]scientificName[_with_author]__@DwC__@vegpath.org", matched_has_accepted, "__accepted_{genus,specific_epithet}", "[accepted_]genus__@DwC__@vegpath.org", "[accepted_]specificEpithet__@DwC__@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") FROM stdin;
|
|
1268 |
2014-07-21 16:31:50.48692-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 \N Compositae t \N \N \N \N \N \N \N Compositae
|
|
1269 |
2014-07-21 16:31:50.48692-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 \N Compositae t \N \N \N \N \N \N \N Compositae
|
|
1270 |
2014-07-21 16:31:50.48692-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 \N Compositae Giseke t \N \N \N \N \N \N \N Asteraceae Bercht. & J. Presl
|
|
1271 |
2014-07-21 16:31:50.48692-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 \N Fagaceae t \N \N \N \N \N \N \N Fagaceae
|
|
1272 |
2014-07-21 16:31:50.48692-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. \N Fabaceae Lindl. t \N \N \N \N \N \N \N Fabaceae Lindl.
|
|
1273 |
2014-07-21 16:31:50.48692-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. \N Fagaceae Dumort. t \N \N \N \N \N \N \N Fagaceae Dumort.
|
|
1274 |
2014-07-21 16:31:50.48692-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 \N Ficaceae Bercht. & J. Presl f \N \N \N \N \N \N \N \N
|
|
1275 |
2014-07-21 16:31:50.48692-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 \N Fucaceae f \N \N \N \N \N \N \N \N
|
|
1276 |
2014-07-21 16:31:50.48692-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 \N Fabaceae t \N \N \N \N \N \N \N Fabaceae
|
|
1277 |
2014-07-21 16:31:50.48692-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 \N Inga t \N \N \N \N \N \N \N Inga
|
|
1278 |
2014-07-21 16:31:50.48692-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. \N Inga Mill. t \N \N \N \N \N \N \N Inga Mill.
|
|
1279 |
2014-07-21 16:31:50.48692-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. \N Inga Scop. f \N \N \N \N \N \N \N \N
|
|
1280 |
2014-07-21 16:31:50.48692-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 \N Inga t \N \N \N \N \N \N \N Inga
|
|
1281 |
2014-07-21 16:31:50.48692-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. \N Inga Mill. t \N \N \N \N \N \N \N Inga Mill.
|
|
1282 |
2014-07-21 16:31:50.48692-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. \N Inga Scop. f \N \N \N \N \N \N \N \N
|
|
1283 |
2014-07-21 16:31:50.48692-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 \N Fagaceae t \N \N \N \N \N \N \N Fagaceae
|
|
1284 |
2014-07-21 16:31:50.48692-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. \N Fabaceae Lindl. t \N \N \N \N \N \N \N Fabaceae Lindl.
|
|
1285 |
2014-07-21 16:31:50.48692-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. \N Fagaceae Dumort. t \N \N \N \N \N \N \N Fagaceae Dumort.
|
|
1286 |
2014-07-21 16:31:50.48692-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 \N Ficaceae Bercht. & J. Presl f \N \N \N \N \N \N \N \N
|
|
1287 |
2014-07-21 16:31:50.48692-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 \N Fucaceae f \N \N \N \N \N \N \N \N
|
|
1288 |
2014-07-21 16:31:50.48692-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 \N Fabaceae t \N \N \N \N \N \N \N Fabaceae
|
|
1289 |
2014-07-21 16:31:50.48692-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 No suitable matches found. f \N \N \N \N \N \N \N \N
|
|
1290 |
2014-07-21 16:31:50.48692-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. Poa annua Poa annua L. t {Poa,annua} Poa annua \N \N \N \N Poa annua L.
|
|
1291 |
2014-07-21 16:31:50.48692-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 Poa annua Poa annua Cham. & Schltdl. t {Poa,infirma} Poa infirma \N \N \N \N Poa infirma Kunth
|
|
1292 |
2014-07-21 16:31:50.48692-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. Poa annua Poa annua L. t {Poa,annua} Poa annua \N \N \N \N Poa annua L.
|
|
1293 |
2014-07-21 16:31:50.48692-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 Poa annua Poa annua Cham. & Schltdl. t {Poa,infirma} Poa infirma \N \N \N \N Poa infirma Kunth
|
|
1294 |
2014-07-21 16:31:50.48692-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. Poa annua Poa annua fo. lanuginosa Sennen t {Poa,annua} Poa annua \N \N \N \N Poa annua L.
|
|
1295 |
2014-07-21 16:31:50.48692-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 Poa annua Poa annua fo. lanuginosa Sennen t {Poa,annua} Poa annua var. annua {var.,annua} var. annua Poa annua var. annua
|
|
1296 |
2014-07-21 16:31:50.48692-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 Poa annua Poa annua subsp. exilis (Tomm. ex Freyn) Asch. & Graebn. t {Poa,infirma} Poa infirma \N \N \N \N Poa infirma Kunth
|
|
1297 |
2014-07-21 16:31:50.48692-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 Poa annua Poa annua var. exilis Tomm. ex Freyn t {Poa,infirma} Poa infirma \N \N \N \N Poa infirma Kunth
|
|
1298 |
2014-07-21 16:31:50.48692-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 Poa annua Poa annua subsp. exilis (Tomm. ex Freyn.) Asch. & Graebn. t {Poa,infirma} Poa infirma \N \N \N \N Poa infirma Kunth
|
|
1299 |
2014-07-21 16:31:50.48692-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 Poa annua Poa annua subsp. exilis (Tomm. ex Freyn) Asch. & Graebn. t {Poa,infirma} Poa infirma \N \N \N \N Poa infirma Kunth
|
|
1300 |
2014-07-21 16:31:50.48692-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. Poa annua Poa annua subvar. minima (Schur) Asch. & Graebn. t {Poa,annua} Poa annua subvar. minima {subvar.,minima} subvar. minima Poa annua subvar. minima (Schur) Asch. & Graebn.
|
|
1301 |
2014-07-21 16:31:50.48692-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. Poa annua Poa annua var. eriolepis ̉ۡ.Desv. t {Poa,annua} Poa annua \N \N \N \N Poa annua L.
|
|
1302 |
2014-07-21 16:31:50.48692-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. Poa annua Poa annua var. eriolepis E. Desv. t {Poa,annua} Poa annua \N \N \N \N Poa annua L.
|
|
1303 |
2014-07-21 16:31:50.48692-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 Silene scouleri Silene scouleri subsp. pringlei (S. Watson) C.L. Hitchc. & Maguire t {Silene,scouleri} Silene scouleri subsp. pringlei {subsp.,pringlei} subsp. pringlei Silene scouleri subsp. pringlei (S. Watson) C.L. Hitchc. & Maguire
|
|
1304 |
2014-07-21 16:31:50.48692-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 Silene scouleri Silene scouleri subsp. pringlei (S. Watson) C.L. Hitchc. & Maguire t {Silene,scouleri} Silene scouleri subsp. pringlei {subsp.,pringlei} subsp. pringlei Silene scouleri subsp. pringlei (S. Watson) C.L. Hitchc. & Maguire
|
|
1305 |
2014-07-21 16:31:50.48692-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 Silene scouleri Silene scouleri subsp. pringlei (S. Watson) C.L. Hitchc. & Maguire t {Silene,scouleri} Silene scouleri ssp. pringlei {ssp.,pringlei} ssp. pringlei Silene scouleri ssp. pringlei (S. Watson) C.L. Hitchc. & Maguire
|
|
1306 |
2014-07-21 16:31:50.48692-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 Silene scouleri Silene scouleri subsp. pringlei (S. Watson) C.L. Hitchc. & Maguire t {Silene,scouleri} Silene scouleri subsp. pringlei {subsp.,pringlei} subsp. pringlei Silene scouleri subsp. pringlei (S. Watson) C.L. Hitchc. & Maguire
|
|
1307 |
2014-07-21 16:31:50.48692-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 Silene scouleri Silene scouleri subsp. pringlei (S. Watson) C.L. Hitchc. & Maguire t {Silene,scouleri} Silene scouleri subsp. pringlei {subsp.,pringlei} subsp. pringlei Silene scouleri subsp. pringlei (S. Watson) C.L. Hitchc. & Maguire
|
|
1308 |
2014-07-21 16:31:50.48692-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 Silene scouleri Silene scouleri subsp. pringlei (S. Watson) C.L. Hitchc. & Maguire t {Silene,scouleri} Silene scouleri ssp. pringlei {ssp.,pringlei} ssp. pringlei Silene scouleri ssp. pringlei (S. Watson) C.L. Hitchc. & Maguire
|
|
1754 |
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_]scientificName[_with_author]__@DwC__@vegpath.org", matched_has_accepted, "__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_]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_]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;
|
|
1755 |
2014-07-22 03:05:20.316489-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 t \N \N \N indet. sp.1 \N \N \N \N Compositae family \N \N \N \N \N \N Compositae \N Compositae
|
|
1756 |
2014-07-22 03:05:20.316489-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 t \N \N \N indet. sp.1 \N \N \N \N Compositae family \N \N \N \N \N \N Compositae \N Compositae
|
|
1757 |
2014-07-22 03:05:20.316489-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 Giseke t \N \N \N Asteraceae indet. sp.1 \N \N \N \N Asteraceae Bercht. & J. Presl family Asteraceae \N \N \N \N \N Asteraceae Bercht. & J. Presl Asteraceae Bercht. & J. Presl
|
|
1758 |
2014-07-22 03:05:20.316489-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 t \N \N \N Boyle#6500 \N \N \N \N Fagaceae family \N \N \N \N \N \N Fagaceae \N Fagaceae
|
|
1759 |
2014-07-22 03:05:20.316489-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 Lindl. t \N \N \N Fabaceae Boyle#6500 \N \N \N \N Fabaceae Lindl. family Fabaceae \N \N \N \N \N Fabaceae Lindl. Fabaceae Lindl.
|
|
1760 |
2014-07-22 03:05:20.316489-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 Dumort. t \N \N \N Fagaceae Boyle#6500 \N \N \N \N Fagaceae Dumort. family Fagaceae \N \N \N \N \N Fagaceae Dumort. Fagaceae Dumort.
|
|
1761 |
2014-07-22 03:05:20.316489-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 Bercht. & J. Presl f \N \N \N \N \N \N \N \N \N family Ficaceae \N \N \N \N \N Ficaceae Bercht. & J. Presl Ficaceae Bercht. & J. Presl
|
|
1762 |
2014-07-22 03:05:20.316489-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 f \N \N \N \N \N \N \N \N \N family Fucaceae \N \N \N \N \N Fucaceae \N Fucaceae
|
|
1763 |
2014-07-22 03:05:20.316489-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 t \N \N \N Boyle#6500 \N \N \N \N Fabaceae family \N \N \N \N \N \N Fabaceae \N Fabaceae
|
|
1764 |
2014-07-22 03:05:20.316489-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 t \N \N \N Inga "fuzzy leaf" \N \N \N \N Inga genus Fabaceae \N \N \N \N \N Inga \N Inga
|
|
1765 |
2014-07-22 03:05:20.316489-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 Mill. t \N \N \N Inga "fuzzy leaf" \N \N \N \N Inga Mill. genus Fabaceae \N \N \N \N \N Inga Mill. Inga Mill.
|
|
1766 |
2014-07-22 03:05:20.316489-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 Scop. f \N \N \N \N \N \N \N \N \N genus Fabaceae Inga \N \N \N \N Inga Scop. Inga Scop.
|
|
1767 |
2014-07-22 03:05:20.316489-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 t \N \N \N Inga sp.3 \N \N \N \N Inga genus Fabaceae \N \N \N \N \N Inga \N Inga
|
|
1768 |
2014-07-22 03:05:20.316489-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 Mill. t \N \N \N Inga sp.3 \N \N \N \N Inga Mill. genus Fabaceae \N \N \N \N \N Inga Mill. Inga Mill.
|
|
1769 |
2014-07-22 03:05:20.316489-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 Scop. f \N \N \N \N \N \N \N \N \N genus Fabaceae Inga \N \N \N \N Inga Scop. Inga Scop.
|
|
1770 |
2014-07-22 03:05:20.316489-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 t \N \N \N unknown #2 \N \N \N \N Fagaceae family \N \N \N \N \N \N Fagaceae \N Fagaceae
|
|
1771 |
2014-07-22 03:05:20.316489-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 Lindl. t \N \N \N Fabaceae unknown #2 \N \N \N \N Fabaceae Lindl. family Fabaceae \N \N \N \N \N Fabaceae Lindl. Fabaceae Lindl.
|
|
1772 |
2014-07-22 03:05:20.316489-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 Dumort. t \N \N \N Fagaceae unknown #2 \N \N \N \N Fagaceae Dumort. family Fagaceae \N \N \N \N \N Fagaceae Dumort. Fagaceae Dumort.
|
|
1773 |
2014-07-22 03:05:20.316489-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 Bercht. & J. Presl f \N \N \N \N \N \N \N \N \N family Ficaceae \N \N \N \N \N Ficaceae Bercht. & J. Presl Ficaceae Bercht. & J. Presl
|
|
1774 |
2014-07-22 03:05:20.316489-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 f \N \N \N \N \N \N \N \N \N family Fucaceae \N \N \N \N \N Fucaceae \N Fucaceae
|
|
1775 |
2014-07-22 03:05:20.316489-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 t \N \N \N unknown #2 \N \N \N \N Fabaceae family \N \N \N \N \N \N Fabaceae \N Fabaceae
|
|
1776 |
2014-07-22 03:05:20.316489-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 No suitable matches found. f \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.
|
|
1777 |
2014-07-22 03:05:20.316489-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 L. t {Poa,annua} Poa annua Poa annua \N \N \N \N Poa annua L. species Poaceae Poa annua Poa annua \N annua Poa annua L. Poa annua L.
|
|
1778 |
2014-07-22 03:05:20.316489-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 Cham. & Schltdl. t {Poa,infirma} Poa infirma Poa infirma \N \N \N \N Poa infirma Kunth species Poaceae Poa infirma Poa infirma \N infirma Poa infirma Kunth Poa infirma Kunth
|
|
1779 |
2014-07-22 03:05:20.316489-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 L. t {Poa,annua} Poa annua Poa annua \N \N \N \N Poa annua L. species Poaceae Poa annua Poa annua \N annua Poa annua L. Poa annua L.
|
|
1780 |
2014-07-22 03:05:20.316489-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 Cham. & Schltdl. t {Poa,infirma} Poa infirma Poa infirma \N \N \N \N Poa infirma Kunth species Poaceae Poa infirma Poa infirma \N infirma Poa infirma Kunth Poa infirma Kunth
|
|
1781 |
2014-07-22 03:05:20.316489-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 Sennen t {Poa,annua} Poa annua Poa annua \N \N \N \N Poa annua L. species Poaceae Poa annua Poa annua \N annua Poa annua L. Poa annua L.
|
|
1782 |
2014-07-22 03:05:20.316489-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 Sennen t {Poa,annua} Poa annua Poa annua var. annua {var.,annua} var. annua Poa annua var. annua variety Poaceae Poa annua Poa annua var. annua Poa annua var. annua \N Poa annua var. annua
|
|
1783 |
2014-07-22 03:05:20.316489-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 (Tomm. ex Freyn) Asch. & Graebn. t {Poa,infirma} Poa infirma Poa infirma \N \N \N \N Poa infirma Kunth species Poaceae Poa infirma Poa infirma \N infirma Poa infirma Kunth Poa infirma Kunth
|
|
1784 |
2014-07-22 03:05:20.316489-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 Tomm. ex Freyn t {Poa,infirma} Poa infirma Poa infirma \N \N \N \N Poa infirma Kunth species Poaceae Poa infirma Poa infirma \N infirma Poa infirma Kunth Poa infirma Kunth
|
|
1785 |
2014-07-22 03:05:20.316489-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 (Tomm. ex Freyn.) Asch. & Graebn. t {Poa,infirma} Poa infirma Poa infirma \N \N \N \N Poa infirma Kunth species Poaceae Poa infirma Poa infirma \N infirma Poa infirma Kunth Poa infirma Kunth
|
|
1786 |
2014-07-22 03:05:20.316489-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 (Tomm. ex Freyn) Asch. & Graebn. t {Poa,infirma} Poa infirma Poa infirma \N \N \N \N Poa infirma Kunth species Poaceae Poa infirma Poa infirma \N infirma Poa infirma Kunth Poa infirma Kunth
|
|
1787 |
2014-07-22 03:05:20.316489-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 (Schur) Asch. & Graebn. t {Poa,annua} Poa annua Poa annua subvar. minima {subvar.,minima} subvar. minima Poa annua subvar. minima (Schur) Asch. & Graebn. subvariety Poaceae Poa annua Poa annua subvar. annua Poa annua subvar. minima (Schur) Asch. & Graebn. Poa annua subvar. minima (Schur) Asch. & Graebn.
|
|
1788 |
2014-07-22 03:05:20.316489-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 ̉ۡ.Desv. t {Poa,annua} Poa annua Poa annua \N \N \N \N Poa annua L. species Poaceae Poa annua Poa annua \N annua Poa annua L. Poa annua L.
|
|
1789 |
2014-07-22 03:05:20.316489-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 E. Desv. t {Poa,annua} Poa annua Poa annua \N \N \N \N Poa annua L. species Poaceae Poa annua Poa annua \N annua Poa annua L. Poa annua L.
|
|
1790 |
2014-07-22 03:05:20.316489-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 (S. Watson) C.L. Hitchc. & Maguire t {Silene,scouleri} Silene scouleri Silene scouleri subsp. pringlei {subsp.,pringlei} subsp. pringlei Silene scouleri subsp. pringlei (S. Watson) C.L. Hitchc. & Maguire subsp. Caryophyllaceae 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
|
|
1791 |
2014-07-22 03:05:20.316489-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 (S. Watson) C.L. Hitchc. & Maguire t {Silene,scouleri} Silene scouleri Silene scouleri subsp. pringlei {subsp.,pringlei} subsp. pringlei Silene scouleri subsp. pringlei (S. Watson) C.L. Hitchc. & Maguire subspecies Caryophyllaceae 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
|
|
1792 |
2014-07-22 03:05:20.316489-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 (S. Watson) C.L. Hitchc. & Maguire t {Silene,scouleri} Silene scouleri Silene scouleri ssp. pringlei {ssp.,pringlei} ssp. pringlei Silene scouleri ssp. pringlei (S. Watson) C.L. Hitchc. & Maguire subspecies Caryophyllaceae 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
|
|
1793 |
2014-07-22 03:05:20.316489-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 (S. Watson) C.L. Hitchc. & Maguire t {Silene,scouleri} Silene scouleri Silene scouleri subsp. pringlei {subsp.,pringlei} subsp. pringlei Silene scouleri subsp. pringlei (S. Watson) C.L. Hitchc. & Maguire subsp. Caryophyllaceae 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
|
|
1794 |
2014-07-22 03:05:20.316489-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 (S. Watson) C.L. Hitchc. & Maguire t {Silene,scouleri} Silene scouleri Silene scouleri subsp. pringlei {subsp.,pringlei} subsp. pringlei Silene scouleri subsp. pringlei (S. Watson) C.L. Hitchc. & Maguire subspecies Caryophyllaceae 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
|
|
1795 |
2014-07-22 03:05:20.316489-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 (S. Watson) C.L. Hitchc. & Maguire t {Silene,scouleri} Silene scouleri Silene scouleri ssp. pringlei {ssp.,pringlei} ssp. pringlei Silene scouleri ssp. pringlei (S. Watson) C.L. Hitchc. & Maguire subspecies Caryophyllaceae 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
|
|
1309 | 1796 |
\. |
1310 | 1797 |
|
1311 | 1798 |
|
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-21 16:32:02 PDT)';
|
|
25 |
COMMENT ON SCHEMA "public.test_taxonomic_names" IS 'Version: public (2014-7-22 3:05:28 PDT)';
|
|
26 | 26 |
|
27 | 27 |
|
28 | 28 |
SET search_path = "public.test_taxonomic_names", pg_catalog; |
... | ... | |
771 | 771 |
AS $_$ |
772 | 772 |
SELECT util.recreate($$ |
773 | 773 |
DROP TABLE IF EXISTS analytical_stem; |
774 |
SELECT util.copy('analytical_stem_view', 'analytical_stem'); |
|
774 |
SELECT util.copy('analytical_stem_view'::regclass, 'analytical_stem');
|
|
775 | 775 |
ALTER TABLE analytical_stem ADD COLUMN "TAXONOBSERVATION_ID__@VegBank__.taxonObservation@vegpath.org" serial PRIMARY KEY; |
776 | 776 |
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 | 777 |
|
... | ... | |
968 | 968 |
LANGUAGE sql |
969 | 969 |
AS $$ |
970 | 970 |
DROP TABLE IF EXISTS geoscrub_input; |
971 |
SELECT util.copy('geoscrub_input_view', 'geoscrub_input'); |
|
971 |
SELECT util.copy('geoscrub_input_view'::regclass, 'geoscrub_input');
|
|
972 | 972 |
|
973 | 973 |
GRANT SELECT ON TABLE geoscrub_input TO bien_read; |
974 | 974 |
GRANT SELECT ON TABLE geoscrub_input_view TO bien_read; |
... | ... | |
1663 | 1663 |
LANGUAGE sql |
1664 | 1664 |
AS $$ |
1665 | 1665 |
DROP TABLE IF EXISTS provider_count; |
1666 |
SELECT util.copy('provider_count_view', 'provider_count'); |
|
1666 |
SELECT util.copy('provider_count_view'::regclass, 'provider_count');
|
|
1667 | 1667 |
|
1668 | 1668 |
GRANT SELECT ON TABLE provider_count TO bien_read; |
1669 | 1669 |
GRANT SELECT ON TABLE provider_count TO public_; |
... | ... | |
1907 | 1907 |
LANGUAGE sql |
1908 | 1908 |
AS $$ |
1909 | 1909 |
DROP TABLE IF EXISTS taxon_trait; |
1910 |
SELECT util.copy('taxon_trait_view', 'taxon_trait'); |
|
1910 |
SELECT util.copy('taxon_trait_view'::regclass, 'taxon_trait');
|
|
1911 | 1911 |
|
1912 | 1912 |
GRANT SELECT ON TABLE taxon_trait TO bien_read; |
1913 | 1913 |
GRANT SELECT ON TABLE taxon_trait_view TO bien_read; |
... | ... | |
2378 | 2378 |
"speciesBinomialWithMorphospecies__@VegCore__@vegpath.org" text, |
2379 | 2379 |
"[growth_form=]habit__@SALVIAS__.Plot_data@vegpath.org" growthform, |
2380 | 2380 |
"reproductiveCondition__@DwC__@vegpath.org" text, |
2381 |
threatened_bien integer, |
|
2382 | 2381 |
cultivated_bien integer, |
2383 | 2382 |
"cultivatedBasis_bien" text, |
2384 | 2383 |
"occurrenceRemarks__@DwC__@vegpath.org" text, |
... | ... | |
2808 | 2807 |
|
2809 | 2808 |
|
2810 | 2809 |
-- |
2811 |
-- Name: COLUMN analytical_stem.threatened_bien; Type: COMMENT; Schema: public.test_taxonomic_names; Owner: bien |
|
2812 |
-- |
|
2813 |
|
|
2814 |
COMMENT ON COLUMN analytical_stem.threatened_bien IS 'whether the taxon is on the IUCN Red List of Threatened Species'; |
|
2815 |
|
|
2816 |
|
|
2817 |
-- |
|
2818 | 2810 |
-- Name: COLUMN analytical_stem.cultivated_bien; Type: COMMENT; Schema: public.test_taxonomic_names; Owner: bien |
2819 | 2811 |
-- |
2820 | 2812 |
|
... | ... | |
8757 | 8749 |
-- Data for Name: analytical_stem; Type: TABLE DATA; Schema: public.test_taxonomic_names; Owner: bien |
8758 | 8750 |
-- |
8759 | 8751 |
|
8760 |
COPY analytical_stem ("datasource__@Brad__.identifier_examples@vegpath.org", "country__@DwC__@vegpath.org", "stateProvince__@DwC__@vegpath.org", "county__@DwC__@vegpath.org", "locality__@DwC__@vegpath.org", "decimalLatitude__@DwC__@vegpath.org", "decimalLongitude__@DwC__@vegpath.org", "coordinateUncertaintyInMeters__@DwC__@vegpath.org", "georeferenceSources__@DwC__@vegpath.org", "georeferenceProtocol__@DwC__@vegpath.org", geovalid_bien, "isNewWorld_bien", "projectID__@VegX__.plotObservation@vegpath.org", "projectContributor[s]__@VegBank__@vegpath.org", "locationID__@DwC__@vegpath.org", "plotName__@VegX__.plot@vegpath.org", "subplot__@SALVIAS__.Plot_data@vegpath.org", location__cultivated__bien, "locationevent.locationevent_id__@VegBIEN__.public@vegpath.org", "eventDate__@DwC__@vegpath.org", "(-minimum-)ElevationInMeters__@DwC__@vegpath.org", "slopeAspect[_deg]__@VegX__.plot@vegpath.org", "slopeGradient[_deg]__@VegX__.plot@vegpath.org", "plot.area[_ha]__@VegX__@vegpath.org", "samplingProtocol__@DwC__@vegpath.org", "temperature[_C]__@VegX__.plotObs.obsCond@vegpath.org", "precip_mm__@SALVIAS__.Plot_metadata@vegpath.org", "stratumName__@VegX__.stratum@vegpath.org", "communityConcept.name__@VegX__.communityDet@vegpath.org", "observationContributor[s]__@VegBank__@vegpath.org", "[custodial_]institutionCode[s]__@DwC__@vegpath.org", "collectionCode__@DwC__@vegpath.org", "catalogNumber__@DwC__@vegpath.org", "occurrenceID__@DwC__@vegpath.org", "recordedBy__@DwC__@vegpath.org", "recordNumber__@DwC__@vegpath.org", "(-Earliest-)DateCollected__-2007-04-17__@DwC__.hist@vegpath.org", "[verbatim_]family__@DwC__@vegpath.org", "[verbatim_]scientificName__@DwC__@vegpath.org", "identifiedBy__@DwC__@vegpath.org", "dateIdentified__@DwC__@vegpath.org", "identificationRemarks__@DwC__@vegpath.org", "Family_matched__@TNRS__@vegpath.org", "Name_matched__@TNRS__@vegpath.org", "Name_matched_author__@TNRS__@vegpath.org", "[higher_plant_group~]higherClassification__@DwC__@vegpath.org", "taxonomicStatus__@DwC__@vegpath.org", scrubbed_family, scrubbed_genus, scrubbed_specific_epithet, scrubbed_species_binomial, scrubbed_taxon_name_no_author, scrubbed_author, scrubbed_taxon_name_with_author, "speciesBinomialWithMorphospecies__@VegCore__@vegpath.org", "[growth_form=]habit__@SALVIAS__.Plot_data@vegpath.org", "reproductiveCondition__@DwC__@vegpath.org", threatened_bien, cultivated_bien, "cultivatedBasis_bien", "occurrenceRemarks__@DwC__@vegpath.org", "coverPercent__@VegX__.attribute.ordinal@vegpath.org", "stem_dbh[_cm]__@SALVIAS__.Plot_data@vegpath.org", "stemHeight[_m]__@VegBank__.stemCount@vegpath.org", "[tag=]identificationLabel__@VegX__.individual@vegpath.org", "relativeX[_m]__@VegX__.individualOrganismObs@vegpath.org", "relativeY[_m]__@VegX__.individualOrganismObs@vegpath.org", "taxonObservation[.id]__@VegBank__@vegpath.org", "taxonNameUsageConcept.authorCode__@VegX__@vegpath.org", "aggregateOrganismObservation.id__@VegX__@vegpath.org", "individualOrganismObservation.id__@VegX__@vegpath.org", "individualID__@DwC__@vegpath.org", "individualCount__@DwC__@vegpath.org", "stemCode__@VegBank__.stemLocation@vegpath.org", "TAXONOBSERVATION_ID__@VegBank__.taxonObservation@vegpath.org") FROM stdin;
|
|
8752 |
COPY analytical_stem ("datasource__@Brad__.identifier_examples@vegpath.org", "country__@DwC__@vegpath.org", "stateProvince__@DwC__@vegpath.org", "county__@DwC__@vegpath.org", "locality__@DwC__@vegpath.org", "decimalLatitude__@DwC__@vegpath.org", "decimalLongitude__@DwC__@vegpath.org", "coordinateUncertaintyInMeters__@DwC__@vegpath.org", "georeferenceSources__@DwC__@vegpath.org", "georeferenceProtocol__@DwC__@vegpath.org", geovalid_bien, "isNewWorld_bien", "projectID__@VegX__.plotObservation@vegpath.org", "projectContributor[s]__@VegBank__@vegpath.org", "locationID__@DwC__@vegpath.org", "plotName__@VegX__.plot@vegpath.org", "subplot__@SALVIAS__.Plot_data@vegpath.org", location__cultivated__bien, "locationevent.locationevent_id__@VegBIEN__.public@vegpath.org", "eventDate__@DwC__@vegpath.org", "(-minimum-)ElevationInMeters__@DwC__@vegpath.org", "slopeAspect[_deg]__@VegX__.plot@vegpath.org", "slopeGradient[_deg]__@VegX__.plot@vegpath.org", "plot.area[_ha]__@VegX__@vegpath.org", "samplingProtocol__@DwC__@vegpath.org", "temperature[_C]__@VegX__.plotObs.obsCond@vegpath.org", "precip_mm__@SALVIAS__.Plot_metadata@vegpath.org", "stratumName__@VegX__.stratum@vegpath.org", "communityConcept.name__@VegX__.communityDet@vegpath.org", "observationContributor[s]__@VegBank__@vegpath.org", "[custodial_]institutionCode[s]__@DwC__@vegpath.org", "collectionCode__@DwC__@vegpath.org", "catalogNumber__@DwC__@vegpath.org", "occurrenceID__@DwC__@vegpath.org", "recordedBy__@DwC__@vegpath.org", "recordNumber__@DwC__@vegpath.org", "(-Earliest-)DateCollected__-2007-04-17__@DwC__.hist@vegpath.org", "[verbatim_]family__@DwC__@vegpath.org", "[verbatim_]scientificName__@DwC__@vegpath.org", "identifiedBy__@DwC__@vegpath.org", "dateIdentified__@DwC__@vegpath.org", "identificationRemarks__@DwC__@vegpath.org", "Family_matched__@TNRS__@vegpath.org", "Name_matched__@TNRS__@vegpath.org", "Name_matched_author__@TNRS__@vegpath.org", "[higher_plant_group~]higherClassification__@DwC__@vegpath.org", "taxonomicStatus__@DwC__@vegpath.org", scrubbed_family, scrubbed_genus, scrubbed_specific_epithet, scrubbed_species_binomial, scrubbed_taxon_name_no_author, scrubbed_author, scrubbed_taxon_name_with_author, "speciesBinomialWithMorphospecies__@VegCore__@vegpath.org", "[growth_form=]habit__@SALVIAS__.Plot_data@vegpath.org", "reproductiveCondition__@DwC__@vegpath.org", cultivated_bien, "cultivatedBasis_bien", "occurrenceRemarks__@DwC__@vegpath.org", "coverPercent__@VegX__.attribute.ordinal@vegpath.org", "stem_dbh[_cm]__@SALVIAS__.Plot_data@vegpath.org", "stemHeight[_m]__@VegBank__.stemCount@vegpath.org", "[tag=]identificationLabel__@VegX__.individual@vegpath.org", "relativeX[_m]__@VegX__.individualOrganismObs@vegpath.org", "relativeY[_m]__@VegX__.individualOrganismObs@vegpath.org", "taxonObservation[.id]__@VegBank__@vegpath.org", "taxonNameUsageConcept.authorCode__@VegX__@vegpath.org", "aggregateOrganismObservation.id__@VegX__@vegpath.org", "individualOrganismObservation.id__@VegX__@vegpath.org", "individualID__@DwC__@vegpath.org", "individualCount__@DwC__@vegpath.org", "stemCode__@VegBank__.stemLocation@vegpath.org", "TAXONOBSERVATION_ID__@VegBank__.taxonObservation@vegpath.org") FROM stdin; |
|
8761 | 8753 |
\. |
8762 | 8754 |
|
8763 | 8755 |
|
... | ... | |
10990 | 10982 |
-- |
10991 | 10983 |
|
10992 | 10984 |
COPY source (source_id, matched_source_id, parent_id, shortname, citation, sourcetype, accesslevel, accessconditions, observationtype, title, titlesuperior, volume, issue, pagerange, totalpages, publisher, publicationplace, isbn, edition, numberofvolumes, chapternumber, reportnumber, communicationtype, degree, url, doi, additionalinfo, pubdate, accessdate, conferencedate, datecreated, createdby, datelastmodified, lastmodifiedby, import_revision) FROM stdin; |
10993 |
1 \N \N TNRS \N aggregator \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N http://[TNRS_dev_server].iplantcollaborative.org/TNRSapp.html \N \N \N \N \N 2014-07-21 \N 2014-07-21 \N \N
|
|
10994 |
2 \N \N test_taxonomic_names \N personal communication \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N 2014-07-21 \N 2014-07-21 \N \N
|
|
10985 |
1 \N \N TNRS \N aggregator \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N http://[TNRS_dev_server].iplantcollaborative.org/TNRSapp.html \N \N \N \N \N 2014-07-22 \N 2014-07-22 \N \N
|
|
10986 |
2 \N \N test_taxonomic_names \N personal communication \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N \N 2014-07-22 \N 2014-07-22 \N \N
|
|
10995 | 10987 |
\. |
10996 | 10988 |
|
10997 | 10989 |
|
trunk/inputs/.TNRS/data.sql | ||
---|---|---|
21 | 21 |
-- Data for Name: batch; Type: TABLE DATA; Schema: TNRS; Owner: - |
22 | 22 |
-- |
23 | 23 |
|
24 |
INSERT INTO batch VALUES ('2014-07-21 16:31:50.48692-07', '2014-07-21 16:31:50.48692-07', '2014-07-21 16:31:50.48692-07', NULL);
|
|
24 |
INSERT INTO batch VALUES ('2014-07-22 03:05:20.316489-07', '2014-07-22 03:05:20.316489-07', '2014-07-22 03:05:20.316489-07', NULL);
|
|
25 | 25 |
|
26 | 26 |
|
27 | 27 |
-- |
... | ... | |
34 | 34 |
-- Data for Name: taxon_match; Type: TABLE DATA; Schema: TNRS; Owner: - |
35 | 35 |
-- |
36 | 36 |
|
37 |
INSERT INTO taxon_match VALUES ('2014-07-21 16:31:50.48692-07', 0, 0, 'Compositae indet. sp.1', 0.900000000000000022, 'Compositae', 'family', 1, NULL, 'http://www.theplantlist.org/1.1/browse/A/Compositae/', NULL, NULL, 'Compositae', 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'indet. sp.1', 'Accepted', 'Compositae', NULL, 'family', 'http://www.theplantlist.org/1.1/browse/A/Compositae/', NULL, NULL, 'true', 'tpl', ' [Ambiguous match] ', NULL, true, 'Compositae', NULL, 'Compositae', true, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Compositae', 'family', NULL, NULL, NULL, NULL, NULL, NULL, 'Compositae', NULL, 'Compositae', 'indet. sp.1', 'indet. sp.1');
|
|
38 |
INSERT INTO taxon_match VALUES ('2014-07-21 16:31:50.48692-07', 1, 0, 'Compositae indet. sp.1', 0.900000000000000022, 'Compositae', 'family', 1, NULL, NULL, NULL, NULL, 'Compositae', 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'indet. sp.1', 'Accepted', 'Compositae', NULL, 'family', NULL, NULL, NULL, 'false', 'tpl', ' [Ambiguous match] ', NULL, true, 'Compositae', NULL, 'Compositae', true, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Compositae', 'family', NULL, NULL, NULL, NULL, NULL, NULL, 'Compositae', NULL, 'Compositae', 'indet. sp.1', 'indet. sp.1');
|
|
39 |
INSERT INTO taxon_match VALUES ('2014-07-21 16:31:50.48692-07', 2, 0, 'Compositae indet. sp.1', 0.900000000000000022, 'Compositae', 'family', 1, 'Giseke', 'http://www.tropicos.org/Name/50255940', NULL, NULL, 'Compositae', 1, 'Compositae', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'indet. sp.1', 'Synonym', 'Asteraceae', 'Bercht. & J. Presl', 'family', 'http://www.tropicos.org/Name/50307371', NULL, 'Asteraceae', 'false', 'tropicos', ' ', NULL, true, 'Asteraceae Bercht. & J. Presl', NULL, 'Compositae Giseke', true, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Asteraceae Bercht. & J. Presl', 'family', 'Asteraceae', NULL, NULL, NULL, NULL, NULL, 'Asteraceae', 'Bercht. & J. Presl', 'Asteraceae Bercht. & J. Presl', 'indet. sp.1', 'Asteraceae indet. sp.1');
|
|
40 |
INSERT INTO taxon_match VALUES ('2014-07-21 16:31:50.48692-07', 3, 1, 'Fabaceae Boyle#6500', 0.839999999999999969, 'Fagaceae', 'family', 0.939999999999999947, NULL, ';http://plants.usda.gov/java/nameSearch', NULL, NULL, 'Fagaceae', 0.880000000000000004, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Boyle#6500', 'Accepted', 'Fagaceae', NULL, 'family', ';http://plants.usda.gov/java/nameSearch', NULL, NULL, 'true', 'tpl;usda', ' ', NULL, false, 'Fagaceae', NULL, 'Fagaceae', true, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Fagaceae', 'family', NULL, NULL, NULL, NULL, NULL, NULL, 'Fagaceae', NULL, 'Fagaceae', 'Boyle#6500', 'Boyle#6500');
|
|
41 |
INSERT INTO taxon_match VALUES ('2014-07-21 16:31:50.48692-07', 4, 1, 'Fabaceae Boyle#6500', 0.900000000000000022, 'Fabaceae', 'family', 1, 'Lindl.', 'http://www.tropicos.org/Name/42000184', NULL, NULL, 'Fabaceae', 1, 'Fabaceae', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Boyle#6500', 'Accepted', 'Fabaceae', 'Lindl.', 'family', 'http://www.tropicos.org/Name/42000184', NULL, 'Fabaceae', 'false', 'tropicos', ' ', NULL, true, 'Fabaceae Lindl.', NULL, 'Fabaceae Lindl.', true, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Fabaceae Lindl.', 'family', 'Fabaceae', NULL, NULL, NULL, NULL, NULL, 'Fabaceae', 'Lindl.', 'Fabaceae Lindl.', 'Boyle#6500', 'Fabaceae Boyle#6500');
|
|
42 |
INSERT INTO taxon_match VALUES ('2014-07-21 16:31:50.48692-07', 5, 1, 'Fabaceae Boyle#6500', 0.839999999999999969, 'Fagaceae', 'family', 0.939999999999999947, 'Dumort.', 'http://www.tropicos.org/Name/42000062', NULL, NULL, 'Fagaceae', 0.880000000000000004, 'Fagaceae', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Boyle#6500', 'Accepted', 'Fagaceae', 'Dumort.', 'family', 'http://www.tropicos.org/Name/42000062', NULL, 'Fagaceae', 'false', 'tropicos', ' ', NULL, false, 'Fagaceae Dumort.', NULL, 'Fagaceae Dumort.', true, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Fagaceae Dumort.', 'family', 'Fagaceae', NULL, NULL, NULL, NULL, NULL, 'Fagaceae', 'Dumort.', 'Fagaceae Dumort.', 'Boyle#6500', 'Fagaceae Boyle#6500');
|
|
43 |
INSERT INTO taxon_match VALUES ('2014-07-21 16:31:50.48692-07', 6, 1, 'Fabaceae Boyle#6500', 0.67000000000000004, 'Ficaceae', 'family', 0.770000000000000018, 'Bercht. & J. Presl', 'http://www.tropicos.org/Name/100353631', NULL, NULL, 'Ficaceae', 0.75, 'Ficaceae', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Boyle#6500', 'No opinion', NULL, NULL, NULL, NULL, NULL, NULL, 'false', 'tropicos', ' ', NULL, false, 'Ficaceae Bercht. & J. Presl', NULL, 'Ficaceae Bercht. & J. Presl', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'family', 'Ficaceae', NULL, NULL, NULL, NULL, NULL, 'Ficaceae', 'Bercht. & J. Presl', 'Ficaceae Bercht. & J. Presl', 'Boyle#6500', NULL);
|
|
44 |
INSERT INTO taxon_match VALUES ('2014-07-21 16:31:50.48692-07', 7, 1, 'Fabaceae Boyle#6500', 0.67000000000000004, 'Fucaceae', 'family', 0.770000000000000018, NULL, 'http://www.tropicos.org/Name/100371040', NULL, NULL, 'Fucaceae', 0.75, 'Fucaceae', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Boyle#6500', 'No opinion', NULL, NULL, NULL, NULL, NULL, NULL, 'false', 'tropicos', ' ', NULL, false, 'Fucaceae', NULL, 'Fucaceae', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'family', 'Fucaceae', NULL, NULL, NULL, NULL, NULL, 'Fucaceae', NULL, 'Fucaceae', 'Boyle#6500', NULL);
|
|
45 |
INSERT INTO taxon_match VALUES ('2014-07-21 16:31:50.48692-07', 8, 1, 'Fabaceae Boyle#6500', 0.900000000000000022, 'Fabaceae', 'family', 1, NULL, 'http://plants.usda.gov/java/nameSearch', NULL, NULL, 'Fabaceae', 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Boyle#6500', 'Accepted', 'Fabaceae', NULL, 'family', 'http://plants.usda.gov/java/nameSearch', NULL, NULL, 'false', 'usda', ' ', NULL, true, 'Fabaceae', NULL, 'Fabaceae', true, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Fabaceae', 'family', NULL, NULL, NULL, NULL, NULL, NULL, 'Fabaceae', NULL, 'Fabaceae', 'Boyle#6500', 'Boyle#6500');
|
|
46 |
INSERT INTO taxon_match VALUES ('2014-07-21 16:31:50.48692-07', 9, 2, 'Fabaceae Inga "fuzzy leaf"', 0.900000000000000022, 'Inga', 'genus', 1, NULL, 'http://www.theplantlist.org/1.1/browse/A/Leguminosae/Inga/;http://plants.usda.gov/java/profile?symbol=INGA', NULL, NULL, 'Fabaceae', 1, 'Fabaceae', 'Inga', 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '"fuzzy leaf"', 'Accepted', 'Inga', NULL, 'genus', 'http://www.theplantlist.org/1.1/browse/A/Leguminosae/Inga/;http://plants.usda.gov/java/profile?symbol=INGA', NULL, 'Fabaceae', 'true', 'tpl;usda', ' ', NULL, true, 'Fabaceae Inga', NULL, 'Inga', true, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Inga', 'genus', 'Fabaceae', NULL, NULL, NULL, NULL, NULL, 'Inga', NULL, 'Inga', '"fuzzy leaf"', 'Inga "fuzzy leaf"');
|
|
47 |
INSERT INTO taxon_match VALUES ('2014-07-21 16:31:50.48692-07', 10, 2, 'Fabaceae Inga "fuzzy leaf"', 0.900000000000000022, 'Inga', 'genus', 1, 'Mill.', 'http://www.tropicos.org/Name/40031040', NULL, NULL, 'Fabaceae', 1, 'Fabaceae', 'Inga', 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '"fuzzy leaf"', 'Accepted', 'Inga', 'Mill.', 'genus', 'http://www.tropicos.org/Name/40031040', NULL, 'Fabaceae', 'false', 'tropicos', ' ', NULL, true, 'Fabaceae Inga Mill.', NULL, 'Inga Mill.', true, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Inga Mill.', 'genus', 'Fabaceae', NULL, NULL, NULL, NULL, NULL, 'Inga', 'Mill.', 'Inga Mill.', '"fuzzy leaf"', 'Inga "fuzzy leaf"');
|
|
48 |
INSERT INTO taxon_match VALUES ('2014-07-21 16:31:50.48692-07', 11, 2, 'Fabaceae Inga "fuzzy leaf"', 0.900000000000000022, 'Inga', 'genus', 1, 'Scop.', 'http://www.tropicos.org/Name/50215121', NULL, NULL, 'Fabaceae', 1, 'Fabaceae', 'Inga', 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '"fuzzy leaf"', 'Illegitimate', NULL, NULL, NULL, NULL, NULL, NULL, 'false', 'tropicos', ' ', NULL, true, 'Fabaceae Inga Scop.', NULL, 'Inga Scop.', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'genus', 'Fabaceae', 'Inga', NULL, NULL, NULL, NULL, 'Inga', 'Scop.', 'Inga Scop.', '"fuzzy leaf"', NULL);
|
|
49 |
INSERT INTO taxon_match VALUES ('2014-07-21 16:31:50.48692-07', 12, 3, 'Fabaceae Inga sp.3', 0.900000000000000022, 'Inga', 'genus', 1, NULL, 'http://www.theplantlist.org/1.1/browse/A/Leguminosae/Inga/;http://plants.usda.gov/java/profile?symbol=INGA', NULL, NULL, 'Fabaceae', 1, 'Fabaceae', 'Inga', 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'sp.3', 'Accepted', 'Inga', NULL, 'genus', 'http://www.theplantlist.org/1.1/browse/A/Leguminosae/Inga/;http://plants.usda.gov/java/profile?symbol=INGA', NULL, 'Fabaceae', 'true', 'tpl;usda', ' ', NULL, true, 'Fabaceae Inga', NULL, 'Inga', true, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Inga', 'genus', 'Fabaceae', NULL, NULL, NULL, NULL, NULL, 'Inga', NULL, 'Inga', 'sp.3', 'Inga sp.3');
|
|
50 |
INSERT INTO taxon_match VALUES ('2014-07-21 16:31:50.48692-07', 13, 3, 'Fabaceae Inga sp.3', 0.900000000000000022, 'Inga', 'genus', 1, 'Mill.', 'http://www.tropicos.org/Name/40031040', NULL, NULL, 'Fabaceae', 1, 'Fabaceae', 'Inga', 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'sp.3', 'Accepted', 'Inga', 'Mill.', 'genus', 'http://www.tropicos.org/Name/40031040', NULL, 'Fabaceae', 'false', 'tropicos', ' ', NULL, true, 'Fabaceae Inga Mill.', NULL, 'Inga Mill.', true, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Inga Mill.', 'genus', 'Fabaceae', NULL, NULL, NULL, NULL, NULL, 'Inga', 'Mill.', 'Inga Mill.', 'sp.3', 'Inga sp.3');
|
|
51 |
INSERT INTO taxon_match VALUES ('2014-07-21 16:31:50.48692-07', 14, 3, 'Fabaceae Inga sp.3', 0.900000000000000022, 'Inga', 'genus', 1, 'Scop.', 'http://www.tropicos.org/Name/50215121', NULL, NULL, 'Fabaceae', 1, 'Fabaceae', 'Inga', 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'sp.3', 'Illegitimate', NULL, NULL, NULL, NULL, NULL, NULL, 'false', 'tropicos', ' ', NULL, true, 'Fabaceae Inga Scop.', NULL, 'Inga Scop.', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'genus', 'Fabaceae', 'Inga', NULL, NULL, NULL, NULL, 'Inga', 'Scop.', 'Inga Scop.', 'sp.3', NULL);
|
|
52 |
INSERT INTO taxon_match VALUES ('2014-07-21 16:31:50.48692-07', 15, 4, 'Fabaceae unknown #2', 0.839999999999999969, 'Fagaceae', 'family', 0.939999999999999947, NULL, ';http://plants.usda.gov/java/nameSearch', NULL, NULL, 'Fagaceae', 0.880000000000000004, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'unknown #2', 'Accepted', 'Fagaceae', NULL, 'family', ';http://plants.usda.gov/java/nameSearch', NULL, NULL, 'true', 'tpl;usda', ' ', NULL, false, 'Fagaceae', NULL, 'Fagaceae', true, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Fagaceae', 'family', NULL, NULL, NULL, NULL, NULL, NULL, 'Fagaceae', NULL, 'Fagaceae', 'unknown #2', 'unknown #2');
|
|
53 |
INSERT INTO taxon_match VALUES ('2014-07-21 16:31:50.48692-07', 16, 4, 'Fabaceae unknown #2', 0.900000000000000022, 'Fabaceae', 'family', 1, 'Lindl.', 'http://www.tropicos.org/Name/42000184', NULL, NULL, 'Fabaceae', 1, 'Fabaceae', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'unknown #2', 'Accepted', 'Fabaceae', 'Lindl.', 'family', 'http://www.tropicos.org/Name/42000184', NULL, 'Fabaceae', 'false', 'tropicos', ' ', NULL, true, 'Fabaceae Lindl.', NULL, 'Fabaceae Lindl.', true, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Fabaceae Lindl.', 'family', 'Fabaceae', NULL, NULL, NULL, NULL, NULL, 'Fabaceae', 'Lindl.', 'Fabaceae Lindl.', 'unknown #2', 'Fabaceae unknown #2');
|
|
54 |
INSERT INTO taxon_match VALUES ('2014-07-21 16:31:50.48692-07', 17, 4, 'Fabaceae unknown #2', 0.839999999999999969, 'Fagaceae', 'family', 0.939999999999999947, 'Dumort.', 'http://www.tropicos.org/Name/42000062', NULL, NULL, 'Fagaceae', 0.880000000000000004, 'Fagaceae', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'unknown #2', 'Accepted', 'Fagaceae', 'Dumort.', 'family', 'http://www.tropicos.org/Name/42000062', NULL, 'Fagaceae', 'false', 'tropicos', ' ', NULL, false, 'Fagaceae Dumort.', NULL, 'Fagaceae Dumort.', true, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Fagaceae Dumort.', 'family', 'Fagaceae', NULL, NULL, NULL, NULL, NULL, 'Fagaceae', 'Dumort.', 'Fagaceae Dumort.', 'unknown #2', 'Fagaceae unknown #2');
|
|
55 |
INSERT INTO taxon_match VALUES ('2014-07-21 16:31:50.48692-07', 18, 4, 'Fabaceae unknown #2', 0.67000000000000004, 'Ficaceae', 'family', 0.770000000000000018, 'Bercht. & J. Presl', 'http://www.tropicos.org/Name/100353631', NULL, NULL, 'Ficaceae', 0.75, 'Ficaceae', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'unknown #2', 'No opinion', NULL, NULL, NULL, NULL, NULL, NULL, 'false', 'tropicos', ' ', NULL, false, 'Ficaceae Bercht. & J. Presl', NULL, 'Ficaceae Bercht. & J. Presl', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'family', 'Ficaceae', NULL, NULL, NULL, NULL, NULL, 'Ficaceae', 'Bercht. & J. Presl', 'Ficaceae Bercht. & J. Presl', 'unknown #2', NULL);
|
|
56 |
INSERT INTO taxon_match VALUES ('2014-07-21 16:31:50.48692-07', 19, 4, 'Fabaceae unknown #2', 0.67000000000000004, 'Fucaceae', 'family', 0.770000000000000018, NULL, 'http://www.tropicos.org/Name/100371040', NULL, NULL, 'Fucaceae', 0.75, 'Fucaceae', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'unknown #2', 'No opinion', NULL, NULL, NULL, NULL, NULL, NULL, 'false', 'tropicos', ' ', NULL, false, 'Fucaceae', NULL, 'Fucaceae', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'family', 'Fucaceae', NULL, NULL, NULL, NULL, NULL, 'Fucaceae', NULL, 'Fucaceae', 'unknown #2', NULL);
|
|
57 |
INSERT INTO taxon_match VALUES ('2014-07-21 16:31:50.48692-07', 20, 4, 'Fabaceae unknown #2', 0.900000000000000022, 'Fabaceae', 'family', 1, NULL, 'http://plants.usda.gov/java/nameSearch', NULL, NULL, 'Fabaceae', 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'unknown #2', 'Accepted', 'Fabaceae', NULL, 'family', 'http://plants.usda.gov/java/nameSearch', NULL, NULL, 'false', 'usda', ' ', NULL, true, 'Fabaceae', NULL, 'Fabaceae', true, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Fabaceae', 'family', NULL, NULL, NULL, NULL, NULL, NULL, 'Fabaceae', NULL, 'Fabaceae', 'unknown #2', 'unknown #2');
|
|
58 |
INSERT INTO taxon_match VALUES ('2014-07-21 16:31:50.48692-07', 21, 5, 'Fam_indet. Boyle#6501', 0, 'No suitable matches found.', NULL, 0, NULL, NULL, NULL, 0, NULL, 0, NULL, NULL, 0, NULL, 0, NULL, NULL, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'true', NULL, ' ', NULL, false, NULL, NULL, 'No suitable matches found.', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'No suitable matches found.', NULL, 'No suitable matches found.', NULL, NULL);
|
|
59 |
INSERT INTO taxon_match VALUES ('2014-07-21 16:31:50.48692-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', NULL, NULL, NULL, NULL, 'Poaceae', 'Poa', 1, 'annua', 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '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', ' ', NULL, true, 'Poaceae Poa annua L.', 'Poa annua', 'Poa annua L.', true, '{Poa,annua}', 'Poa', 'annua', NULL, NULL, NULL, NULL, 'Poa annua L.', 'species', 'Poaceae', 'Poa', 'annua', 'Poa annua', NULL, 'annua', 'Poa annua', 'L.', 'Poa annua L.', NULL, 'Poa annua');
|
|
60 |
INSERT INTO taxon_match VALUES ('2014-07-21 16:31:50.48692-07', 23, 6, 'Poa annua', 1, 'Poa annua', 'species', 1, 'Cham. & Schltdl.', 'http://www.theplantlist.org/tpl1.1/record/kew-435195', NULL, NULL, NULL, NULL, 'Poaceae', 'Poa', 1, 'annua', 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Synonym', 'Poa infirma', 'Kunth', 'species', 'http://www.theplantlist.org/tpl1.1/record/kew-436189', 'Poa infirma', 'Poaceae', 'false', 'tpl', ' ', NULL, true, 'Poaceae Poa infirma Kunth', 'Poa annua', 'Poa annua Cham. & Schltdl.', true, '{Poa,infirma}', 'Poa', 'infirma', NULL, NULL, NULL, NULL, 'Poa infirma Kunth', 'species', 'Poaceae', 'Poa', 'infirma', 'Poa infirma', NULL, 'infirma', 'Poa infirma', 'Kunth', 'Poa infirma Kunth', NULL, 'Poa infirma');
|
|
61 |
INSERT INTO taxon_match VALUES ('2014-07-21 16:31:50.48692-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, NULL, NULL, 'Poaceae', 'Poa', 1, 'annua', 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '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', ' ', NULL, true, 'Poaceae Poa annua L.', 'Poa annua', 'Poa annua L.', true, '{Poa,annua}', 'Poa', 'annua', NULL, NULL, NULL, NULL, 'Poa annua L.', 'species', 'Poaceae', 'Poa', 'annua', 'Poa annua', NULL, 'annua', 'Poa annua', 'L.', 'Poa annua L.', NULL, 'Poa annua');
|
|
62 |
INSERT INTO taxon_match VALUES ('2014-07-21 16:31:50.48692-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, NULL, NULL, 'Poaceae', 'Poa', 1, 'annua', 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Synonym', 'Poa infirma', 'Kunth', 'species', 'http://www.theplantlist.org/tpl1.1/record/kew-436189', 'Poa infirma', 'Poaceae', 'false', 'tpl', ' ', NULL, true, 'Poaceae Poa infirma Kunth', 'Poa annua', 'Poa annua Cham. & Schltdl.', true, '{Poa,infirma}', 'Poa', 'infirma', NULL, NULL, NULL, NULL, 'Poa infirma Kunth', 'species', 'Poaceae', 'Poa', 'infirma', 'Poa infirma', NULL, 'infirma', 'Poa infirma', 'Kunth', 'Poa infirma Kunth', NULL, 'Poa infirma');
|
|
63 |
INSERT INTO taxon_match VALUES ('2014-07-21 16:31:50.48692-07', 26, 8, 'Poa annua fo. lanuginosa', 1, 'Poa annua fo. lanuginosa', 'fo.', 1, 'Sennen', 'http://www.theplantlist.org/tpl1.1/record/tro-50267771', NULL, NULL, NULL, NULL, NULL, 'Poa', 1, 'annua', 1, 'fo.', 'lanuginosa', 1, NULL, NULL, NULL, NULL, NULL, 'Synonym', 'Poa annua', 'L.', 'species', 'http://www.theplantlist.org/tpl1.1/record/kew-435194', 'Poa annua', 'Poaceae', 'true', 'tpl', ' ', NULL, true, 'Poaceae Poa annua L.', 'Poa annua', 'Poa annua fo. lanuginosa Sennen', true, '{Poa,annua}', 'Poa', 'annua', NULL, NULL, NULL, NULL, 'Poa annua L.', 'species', 'Poaceae', 'Poa', 'annua', 'Poa annua', NULL, 'annua', 'Poa annua', 'L.', 'Poa annua L.', NULL, 'Poa annua');
|
|
64 |
INSERT INTO taxon_match VALUES ('2014-07-21 16:31:50.48692-07', 27, 8, 'Poa annua fo. lanuginosa', 1, 'Poa annua fo. lanuginosa', 'forma', 1, 'Sennen', 'http://www.tropicos.org/Name/50267771', NULL, NULL, NULL, NULL, 'Poaceae', 'Poa', 1, 'annua', 1, 'fo.', 'lanuginosa', 1, NULL, NULL, NULL, NULL, NULL, 'Synonym', 'Poa annua var. annua', NULL, 'variety', 'http://www.tropicos.org/Name/25517736', 'Poa annua', 'Poaceae', 'false', 'tropicos', ' ', NULL, true, 'Poaceae Poa annua var. annua', 'Poa annua', 'Poa annua fo. lanuginosa Sennen', true, '{Poa,annua}', 'Poa', 'annua', 'var. annua', '{var.,annua}', 'var.', 'annua', 'Poa annua var. annua', 'variety', 'Poaceae', 'Poa', 'annua', 'Poa annua', 'var.', 'annua', 'Poa annua var. annua', NULL, 'Poa annua var. annua', NULL, 'Poa annua');
|
|
65 |
INSERT INTO taxon_match VALUES ('2014-07-21 16:31:50.48692-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', NULL, NULL, NULL, NULL, 'Poaceae', 'Poa', 1, 'annua', 1, 'subsp.', 'exilis', 1, NULL, NULL, NULL, NULL, NULL, 'Synonym', 'Poa infirma', 'Kunth', 'species', 'http://www.tropicos.org/Name/25514158', 'Poa infirma', 'Poaceae', 'true', 'tropicos', ' ', NULL, true, 'Poaceae Poa infirma Kunth', 'Poa annua', 'Poa annua subsp. exilis (Tomm. ex Freyn) Asch. & Graebn.', true, '{Poa,infirma}', 'Poa', 'infirma', NULL, NULL, NULL, NULL, 'Poa infirma Kunth', 'species', 'Poaceae', 'Poa', 'infirma', 'Poa infirma', NULL, 'infirma', 'Poa infirma', 'Kunth', 'Poa infirma Kunth', NULL, 'Poa infirma');
|
|
66 |
INSERT INTO taxon_match VALUES ('2014-07-21 16:31:50.48692-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', NULL, NULL, NULL, NULL, 'Poaceae', 'Poa', 1, 'annua', 1, 'var.', 'exilis', 0.699999999999999956, NULL, NULL, NULL, NULL, NULL, 'Synonym', 'Poa infirma', 'Kunth', 'species', 'http://www.tropicos.org/Name/25514158', 'Poa infirma', 'Poaceae', 'false', 'tropicos', ' ', NULL, true, 'Poaceae Poa infirma Kunth', 'Poa annua', 'Poa annua var. exilis Tomm. ex Freyn', true, '{Poa,infirma}', 'Poa', 'infirma', NULL, NULL, NULL, NULL, 'Poa infirma Kunth', 'species', 'Poaceae', 'Poa', 'infirma', 'Poa infirma', NULL, 'infirma', 'Poa infirma', 'Kunth', 'Poa infirma Kunth', NULL, 'Poa infirma');
|
|
67 |
INSERT INTO taxon_match VALUES ('2014-07-21 16:31:50.48692-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', NULL, NULL, NULL, NULL, NULL, 'Poa', 1, 'annua', 1, 'subsp.', 'exilis', 1, NULL, NULL, NULL, NULL, NULL, 'Synonym', 'Poa infirma', 'Kunth', 'species', 'http://www.theplantlist.org/tpl1.1/record/kew-436189', 'Poa infirma', 'Poaceae', 'true', 'tpl', ' ', NULL, true, 'Poaceae Poa infirma Kunth', 'Poa annua', 'Poa annua subsp. exilis (Tomm. ex Freyn.) Asch. & Graebn.', true, '{Poa,infirma}', 'Poa', 'infirma', NULL, NULL, NULL, NULL, 'Poa infirma Kunth', 'species', 'Poaceae', 'Poa', 'infirma', 'Poa infirma', NULL, 'infirma', 'Poa infirma', 'Kunth', 'Poa infirma Kunth', NULL, 'Poa infirma');
|
|
68 |
INSERT INTO taxon_match VALUES ('2014-07-21 16:31:50.48692-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', NULL, NULL, NULL, NULL, 'Poaceae', 'Poa', 1, 'annua', 1, 'subsp.', 'exilis', 1, NULL, NULL, NULL, NULL, NULL, 'Synonym', 'Poa infirma', 'Kunth', 'species', 'http://www.tropicos.org/Name/25514158', 'Poa infirma', 'Poaceae', 'false', 'tropicos', ' ', NULL, true, 'Poaceae Poa infirma Kunth', 'Poa annua', 'Poa annua subsp. exilis (Tomm. ex Freyn) Asch. & Graebn.', true, '{Poa,infirma}', 'Poa', 'infirma', NULL, NULL, NULL, NULL, 'Poa infirma Kunth', 'species', 'Poaceae', 'Poa', 'infirma', 'Poa infirma', NULL, 'infirma', 'Poa infirma', 'Kunth', 'Poa infirma Kunth', NULL, 'Poa infirma');
|
|
69 |
INSERT INTO taxon_match VALUES ('2014-07-21 16:31:50.48692-07', 32, 11, 'Poa annua subvar. minima', 1, 'Poa annua subvar. minima', 'subvariety', 1, '(Schur) Asch. & Graebn.', 'http://www.tropicos.org/Name/50158097', NULL, NULL, NULL, NULL, 'Poaceae', 'Poa', 1, 'annua', 1, 'subvar.', 'minima', 1, NULL, NULL, NULL, NULL, NULL, 'Accepted', 'Poa annua subvar. minima', '(Schur) Asch. & Graebn.', 'subvariety', 'http://www.tropicos.org/Name/50158097', 'Poa annua', 'Poaceae', 'true', 'tropicos', ' ', NULL, true, 'Poaceae Poa annua subvar. minima (Schur) Asch. & Graebn.', 'Poa annua', 'Poa annua subvar. minima (Schur) Asch. & Graebn.', true, '{Poa,annua}', 'Poa', 'annua', 'subvar. minima', '{subvar.,minima}', 'subvar.', 'minima', 'Poa annua subvar. minima (Schur) Asch. & Graebn.', 'subvariety', 'Poaceae', 'Poa', 'annua', 'Poa annua', 'subvar.', 'annua', 'Poa annua subvar. minima', '(Schur) Asch. & Graebn.', 'Poa annua subvar. minima (Schur) Asch. & Graebn.', NULL, 'Poa annua');
|
|
70 |
INSERT INTO taxon_match VALUES ('2014-07-21 16:31:50.48692-07', 33, 12, 'Poa annua var. eriolepis', 1, 'Poa annua var. eriolepis', 'var.', 1, '̉ۡ.Desv.', 'http://www.theplantlist.org/tpl1.1/record/kew-435206', NULL, NULL, NULL, NULL, NULL, 'Poa', 1, 'annua', 1, 'var.', 'eriolepis', 1, NULL, NULL, NULL, NULL, NULL, 'Synonym', 'Poa annua', 'L.', 'species', 'http://www.theplantlist.org/tpl1.1/record/kew-435194', 'Poa annua', 'Poaceae', 'true', 'tpl', ' ', NULL, true, 'Poaceae Poa annua L.', 'Poa annua', 'Poa annua var. eriolepis ̉ۡ.Desv.', true, '{Poa,annua}', 'Poa', 'annua', NULL, NULL, NULL, NULL, 'Poa annua L.', 'species', 'Poaceae', 'Poa', 'annua', 'Poa annua', NULL, 'annua', 'Poa annua', 'L.', 'Poa annua L.', NULL, 'Poa annua');
|
|
71 |
INSERT INTO taxon_match VALUES ('2014-07-21 16:31:50.48692-07', 34, 12, 'Poa annua var. eriolepis', 1, 'Poa annua var. eriolepis', 'variety', 1, 'E. Desv.', 'http://www.tropicos.org/Name/50119145', NULL, NULL, NULL, NULL, 'Poaceae', 'Poa', 1, 'annua', 1, 'var.', 'eriolepis', 1, NULL, NULL, NULL, NULL, NULL, 'Synonym', 'Poa annua', 'L.', 'species', 'http://www.tropicos.org/Name/25509881', 'Poa annua', 'Poaceae', 'false', 'tropicos', ' ', NULL, true, 'Poaceae Poa annua L.', 'Poa annua', 'Poa annua var. eriolepis E. Desv.', true, '{Poa,annua}', 'Poa', 'annua', NULL, NULL, NULL, NULL, 'Poa annua L.', 'species', 'Poaceae', 'Poa', 'annua', 'Poa annua', NULL, 'annua', 'Poa annua', 'L.', 'Poa annua L.', NULL, 'Poa annua');
|
|
72 |
INSERT INTO taxon_match VALUES ('2014-07-21 16:31:50.48692-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', NULL, NULL, NULL, NULL, 'Caryophyllaceae', 'Silene', 1, 'scouleri', 1, 'subsp.', 'pringlei', 1, NULL, NULL, NULL, NULL, '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] ', NULL, true, 'Caryophyllaceae Silene scouleri subsp. pringlei (S. Watson) C.L. Hitchc. & Maguire', 'Silene scouleri', 'Silene scouleri subsp. pringlei (S. Watson) C.L. Hitchc. & Maguire', true, '{Silene,scouleri}', 'Silene', 'scouleri', 'subsp. pringlei', '{subsp.,pringlei}', 'subsp.', 'pringlei', 'Silene scouleri subsp. pringlei (S. Watson) C.L. Hitchc. & Maguire', 'subsp.', 'Caryophyllaceae', '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', 'var. grisea', 'Silene scouleri');
|
|
73 |
INSERT INTO taxon_match VALUES ('2014-07-21 16:31:50.48692-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', NULL, NULL, NULL, NULL, 'Caryophyllaceae', 'Silene', 1, 'scouleri', 1, 'subsp.', 'pringlei', 1, NULL, NULL, NULL, NULL, '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] ', NULL, true, 'Caryophyllaceae Silene scouleri subsp. pringlei (S. Watson) C.L. Hitchc. & Maguire', 'Silene scouleri', 'Silene scouleri subsp. pringlei (S. Watson) C.L. Hitchc. & Maguire', true, '{Silene,scouleri}', 'Silene', 'scouleri', 'subsp. pringlei', '{subsp.,pringlei}', 'subsp.', 'pringlei', 'Silene scouleri subsp. pringlei (S. Watson) C.L. Hitchc. & Maguire', 'subspecies', 'Caryophyllaceae', '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', 'var. grisea', 'Silene scouleri');
|
|
74 |
INSERT INTO taxon_match VALUES ('2014-07-21 16:31:50.48692-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', NULL, NULL, NULL, NULL, 'Caryophyllaceae', 'Silene', 1, 'scouleri', 1, 'subsp.', 'pringlei', 1, NULL, NULL, NULL, NULL, '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] ', NULL, true, 'Caryophyllaceae Silene scouleri ssp. pringlei (S. Watson) C.L. Hitchc. & Maguire', 'Silene scouleri', 'Silene scouleri subsp. pringlei (S. Watson) C.L. Hitchc. & Maguire', true, '{Silene,scouleri}', 'Silene', 'scouleri', 'ssp. pringlei', '{ssp.,pringlei}', 'ssp.', 'pringlei', 'Silene scouleri ssp. pringlei (S. Watson) C.L. Hitchc. & Maguire', 'subspecies', 'Caryophyllaceae', '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', 'var. grisea', 'Silene scouleri');
|
|
75 |
INSERT INTO taxon_match VALUES ('2014-07-21 16:31:50.48692-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', NULL, NULL, NULL, NULL, 'Caryophyllaceae', 'Silene', 1, 'scouleri', 1, 'subsp.', 'pringlei', 1, NULL, NULL, NULL, NULL, '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] ', NULL, true, 'Caryophyllaceae Silene scouleri subsp. pringlei (S. Watson) C.L. Hitchc. & Maguire', 'Silene scouleri', 'Silene scouleri subsp. pringlei (S. Watson) C.L. Hitchc. & Maguire', true, '{Silene,scouleri}', 'Silene', 'scouleri', 'subsp. pringlei', '{subsp.,pringlei}', 'subsp.', 'pringlei', 'Silene scouleri subsp. pringlei (S. Watson) C.L. Hitchc. & Maguire', 'subsp.', 'Caryophyllaceae', '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', 'var. grisea', 'Silene scouleri');
|
|
76 |
INSERT INTO taxon_match VALUES ('2014-07-21 16:31:50.48692-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', NULL, NULL, NULL, NULL, 'Caryophyllaceae', 'Silene', 1, 'scouleri', 1, 'subsp.', 'pringlei', 1, NULL, NULL, NULL, NULL, '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] ', NULL, true, 'Caryophyllaceae Silene scouleri subsp. pringlei (S. Watson) C.L. Hitchc. & Maguire', 'Silene scouleri', 'Silene scouleri subsp. pringlei (S. Watson) C.L. Hitchc. & Maguire', true, '{Silene,scouleri}', 'Silene', 'scouleri', 'subsp. pringlei', '{subsp.,pringlei}', 'subsp.', 'pringlei', 'Silene scouleri subsp. pringlei (S. Watson) C.L. Hitchc. & Maguire', 'subspecies', 'Caryophyllaceae', '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', 'var. grisea', 'Silene scouleri');
|
|
77 |
INSERT INTO taxon_match VALUES ('2014-07-21 16:31:50.48692-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', NULL, NULL, NULL, NULL, 'Caryophyllaceae', 'Silene', 1, 'scouleri', 1, 'subsp.', 'pringlei', 1, NULL, NULL, NULL, NULL, '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] ', NULL, true, 'Caryophyllaceae Silene scouleri ssp. pringlei (S. Watson) C.L. Hitchc. & Maguire', 'Silene scouleri', 'Silene scouleri subsp. pringlei (S. Watson) C.L. Hitchc. & Maguire', true, '{Silene,scouleri}', 'Silene', 'scouleri', 'ssp. pringlei', '{ssp.,pringlei}', 'ssp.', 'pringlei', 'Silene scouleri ssp. pringlei (S. Watson) C.L. Hitchc. & Maguire', 'subspecies', 'Caryophyllaceae', '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', 'var. grisea', 'Silene scouleri');
|
|
37 |
INSERT INTO taxon_match VALUES ('2014-07-22 03:05:20.316489-07', 0, 0, 'Compositae indet. sp.1', 0.900000000000000022, 'Compositae', 'family', 1, NULL, 'http://www.theplantlist.org/1.1/browse/A/Compositae/', NULL, NULL, 'Compositae', 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'indet. sp.1', 'Accepted', 'Compositae', NULL, 'family', 'http://www.theplantlist.org/1.1/browse/A/Compositae/', NULL, NULL, 'true', 'tpl', ' [Ambiguous match] ', NULL, true, 'Compositae', 'indet. sp.1', NULL, 'Compositae', true, NULL, NULL, NULL, 'indet. sp.1', NULL, NULL, NULL, NULL, 'Compositae', 'family', NULL, NULL, NULL, NULL, NULL, NULL, 'Compositae', NULL, 'Compositae');
|
|
38 |
INSERT INTO taxon_match VALUES ('2014-07-22 03:05:20.316489-07', 1, 0, 'Compositae indet. sp.1', 0.900000000000000022, 'Compositae', 'family', 1, NULL, NULL, NULL, NULL, 'Compositae', 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'indet. sp.1', 'Accepted', 'Compositae', NULL, 'family', NULL, NULL, NULL, 'false', 'tpl', ' [Ambiguous match] ', NULL, true, 'Compositae', 'indet. sp.1', NULL, 'Compositae', true, NULL, NULL, NULL, 'indet. sp.1', NULL, NULL, NULL, NULL, 'Compositae', 'family', NULL, NULL, NULL, NULL, NULL, NULL, 'Compositae', NULL, 'Compositae');
|
|
39 |
INSERT INTO taxon_match VALUES ('2014-07-22 03:05:20.316489-07', 2, 0, 'Compositae indet. sp.1', 0.900000000000000022, 'Compositae', 'family', 1, 'Giseke', 'http://www.tropicos.org/Name/50255940', NULL, NULL, 'Compositae', 1, 'Compositae', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'indet. sp.1', 'Synonym', 'Asteraceae', 'Bercht. & J. Presl', 'family', 'http://www.tropicos.org/Name/50307371', NULL, 'Asteraceae', 'false', 'tropicos', ' ', NULL, true, 'Asteraceae Bercht. & J. Presl', 'indet. sp.1', NULL, 'Compositae Giseke', true, NULL, NULL, NULL, 'Asteraceae indet. sp.1', NULL, NULL, NULL, NULL, 'Asteraceae Bercht. & J. Presl', 'family', 'Asteraceae', NULL, NULL, NULL, NULL, NULL, 'Asteraceae', 'Bercht. & J. Presl', 'Asteraceae Bercht. & J. Presl');
|
|
40 |
INSERT INTO taxon_match VALUES ('2014-07-22 03:05:20.316489-07', 3, 1, 'Fabaceae Boyle#6500', 0.839999999999999969, 'Fagaceae', 'family', 0.939999999999999947, NULL, ';http://plants.usda.gov/java/nameSearch', NULL, NULL, 'Fagaceae', 0.880000000000000004, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Boyle#6500', 'Accepted', 'Fagaceae', NULL, 'family', ';http://plants.usda.gov/java/nameSearch', NULL, NULL, 'true', 'tpl;usda', ' ', NULL, false, 'Fagaceae', 'Boyle#6500', NULL, 'Fagaceae', true, NULL, NULL, NULL, 'Boyle#6500', NULL, NULL, NULL, NULL, 'Fagaceae', 'family', NULL, NULL, NULL, NULL, NULL, NULL, 'Fagaceae', NULL, 'Fagaceae');
|
|
41 |
INSERT INTO taxon_match VALUES ('2014-07-22 03:05:20.316489-07', 4, 1, 'Fabaceae Boyle#6500', 0.900000000000000022, 'Fabaceae', 'family', 1, 'Lindl.', 'http://www.tropicos.org/Name/42000184', NULL, NULL, 'Fabaceae', 1, 'Fabaceae', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Boyle#6500', 'Accepted', 'Fabaceae', 'Lindl.', 'family', 'http://www.tropicos.org/Name/42000184', NULL, 'Fabaceae', 'false', 'tropicos', ' ', NULL, true, 'Fabaceae Lindl.', 'Boyle#6500', NULL, 'Fabaceae Lindl.', true, NULL, NULL, NULL, 'Fabaceae Boyle#6500', NULL, NULL, NULL, NULL, 'Fabaceae Lindl.', 'family', 'Fabaceae', NULL, NULL, NULL, NULL, NULL, 'Fabaceae', 'Lindl.', 'Fabaceae Lindl.');
|
|
42 |
INSERT INTO taxon_match VALUES ('2014-07-22 03:05:20.316489-07', 5, 1, 'Fabaceae Boyle#6500', 0.839999999999999969, 'Fagaceae', 'family', 0.939999999999999947, 'Dumort.', 'http://www.tropicos.org/Name/42000062', NULL, NULL, 'Fagaceae', 0.880000000000000004, 'Fagaceae', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Boyle#6500', 'Accepted', 'Fagaceae', 'Dumort.', 'family', 'http://www.tropicos.org/Name/42000062', NULL, 'Fagaceae', 'false', 'tropicos', ' ', NULL, false, 'Fagaceae Dumort.', 'Boyle#6500', NULL, 'Fagaceae Dumort.', true, NULL, NULL, NULL, 'Fagaceae Boyle#6500', NULL, NULL, NULL, NULL, 'Fagaceae Dumort.', 'family', 'Fagaceae', NULL, NULL, NULL, NULL, NULL, 'Fagaceae', 'Dumort.', 'Fagaceae Dumort.');
|
|
43 |
INSERT INTO taxon_match VALUES ('2014-07-22 03:05:20.316489-07', 6, 1, 'Fabaceae Boyle#6500', 0.67000000000000004, 'Ficaceae', 'family', 0.770000000000000018, 'Bercht. & J. Presl', 'http://www.tropicos.org/Name/100353631', NULL, NULL, 'Ficaceae', 0.75, 'Ficaceae', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Boyle#6500', 'No opinion', NULL, NULL, NULL, NULL, NULL, NULL, 'false', 'tropicos', ' ', NULL, false, 'Ficaceae Bercht. & J. Presl', 'Boyle#6500', NULL, 'Ficaceae Bercht. & J. Presl', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'family', 'Ficaceae', NULL, NULL, NULL, NULL, NULL, 'Ficaceae', 'Bercht. & J. Presl', 'Ficaceae Bercht. & J. Presl');
|
|
44 |
INSERT INTO taxon_match VALUES ('2014-07-22 03:05:20.316489-07', 7, 1, 'Fabaceae Boyle#6500', 0.67000000000000004, 'Fucaceae', 'family', 0.770000000000000018, NULL, 'http://www.tropicos.org/Name/100371040', NULL, NULL, 'Fucaceae', 0.75, 'Fucaceae', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Boyle#6500', 'No opinion', NULL, NULL, NULL, NULL, NULL, NULL, 'false', 'tropicos', ' ', NULL, false, 'Fucaceae', 'Boyle#6500', NULL, 'Fucaceae', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'family', 'Fucaceae', NULL, NULL, NULL, NULL, NULL, 'Fucaceae', NULL, 'Fucaceae');
|
|
45 |
INSERT INTO taxon_match VALUES ('2014-07-22 03:05:20.316489-07', 8, 1, 'Fabaceae Boyle#6500', 0.900000000000000022, 'Fabaceae', 'family', 1, NULL, 'http://plants.usda.gov/java/nameSearch', NULL, NULL, 'Fabaceae', 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Boyle#6500', 'Accepted', 'Fabaceae', NULL, 'family', 'http://plants.usda.gov/java/nameSearch', NULL, NULL, 'false', 'usda', ' ', NULL, true, 'Fabaceae', 'Boyle#6500', NULL, 'Fabaceae', true, NULL, NULL, NULL, 'Boyle#6500', NULL, NULL, NULL, NULL, 'Fabaceae', 'family', NULL, NULL, NULL, NULL, NULL, NULL, 'Fabaceae', NULL, 'Fabaceae');
|
|
46 |
INSERT INTO taxon_match VALUES ('2014-07-22 03:05:20.316489-07', 9, 2, 'Fabaceae Inga "fuzzy leaf"', 0.900000000000000022, 'Inga', 'genus', 1, NULL, 'http://www.theplantlist.org/1.1/browse/A/Leguminosae/Inga/;http://plants.usda.gov/java/profile?symbol=INGA', NULL, NULL, 'Fabaceae', 1, 'Fabaceae', 'Inga', 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '"fuzzy leaf"', 'Accepted', 'Inga', NULL, 'genus', 'http://www.theplantlist.org/1.1/browse/A/Leguminosae/Inga/;http://plants.usda.gov/java/profile?symbol=INGA', NULL, 'Fabaceae', 'true', 'tpl;usda', ' ', NULL, true, 'Fabaceae Inga', '"fuzzy leaf"', NULL, 'Inga', true, NULL, NULL, NULL, 'Inga "fuzzy leaf"', NULL, NULL, NULL, NULL, 'Inga', 'genus', 'Fabaceae', NULL, NULL, NULL, NULL, NULL, 'Inga', NULL, 'Inga');
|
|
47 |
INSERT INTO taxon_match VALUES ('2014-07-22 03:05:20.316489-07', 10, 2, 'Fabaceae Inga "fuzzy leaf"', 0.900000000000000022, 'Inga', 'genus', 1, 'Mill.', 'http://www.tropicos.org/Name/40031040', NULL, NULL, 'Fabaceae', 1, 'Fabaceae', 'Inga', 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '"fuzzy leaf"', 'Accepted', 'Inga', 'Mill.', 'genus', 'http://www.tropicos.org/Name/40031040', NULL, 'Fabaceae', 'false', 'tropicos', ' ', NULL, true, 'Fabaceae Inga Mill.', '"fuzzy leaf"', NULL, 'Inga Mill.', true, NULL, NULL, NULL, 'Inga "fuzzy leaf"', NULL, NULL, NULL, NULL, 'Inga Mill.', 'genus', 'Fabaceae', NULL, NULL, NULL, NULL, NULL, 'Inga', 'Mill.', 'Inga Mill.');
|
|
48 |
INSERT INTO taxon_match VALUES ('2014-07-22 03:05:20.316489-07', 11, 2, 'Fabaceae Inga "fuzzy leaf"', 0.900000000000000022, 'Inga', 'genus', 1, 'Scop.', 'http://www.tropicos.org/Name/50215121', NULL, NULL, 'Fabaceae', 1, 'Fabaceae', 'Inga', 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '"fuzzy leaf"', 'Illegitimate', NULL, NULL, NULL, NULL, NULL, NULL, 'false', 'tropicos', ' ', NULL, true, 'Fabaceae Inga Scop.', '"fuzzy leaf"', NULL, 'Inga Scop.', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'genus', 'Fabaceae', 'Inga', NULL, NULL, NULL, NULL, 'Inga', 'Scop.', 'Inga Scop.');
|
|
49 |
INSERT INTO taxon_match VALUES ('2014-07-22 03:05:20.316489-07', 12, 3, 'Fabaceae Inga sp.3', 0.900000000000000022, 'Inga', 'genus', 1, NULL, 'http://www.theplantlist.org/1.1/browse/A/Leguminosae/Inga/;http://plants.usda.gov/java/profile?symbol=INGA', NULL, NULL, 'Fabaceae', 1, 'Fabaceae', 'Inga', 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'sp.3', 'Accepted', 'Inga', NULL, 'genus', 'http://www.theplantlist.org/1.1/browse/A/Leguminosae/Inga/;http://plants.usda.gov/java/profile?symbol=INGA', NULL, 'Fabaceae', 'true', 'tpl;usda', ' ', NULL, true, 'Fabaceae Inga', 'sp.3', NULL, 'Inga', true, NULL, NULL, NULL, 'Inga sp.3', NULL, NULL, NULL, NULL, 'Inga', 'genus', 'Fabaceae', NULL, NULL, NULL, NULL, NULL, 'Inga', NULL, 'Inga');
|
|
50 |
INSERT INTO taxon_match VALUES ('2014-07-22 03:05:20.316489-07', 13, 3, 'Fabaceae Inga sp.3', 0.900000000000000022, 'Inga', 'genus', 1, 'Mill.', 'http://www.tropicos.org/Name/40031040', NULL, NULL, 'Fabaceae', 1, 'Fabaceae', 'Inga', 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'sp.3', 'Accepted', 'Inga', 'Mill.', 'genus', 'http://www.tropicos.org/Name/40031040', NULL, 'Fabaceae', 'false', 'tropicos', ' ', NULL, true, 'Fabaceae Inga Mill.', 'sp.3', NULL, 'Inga Mill.', true, NULL, NULL, NULL, 'Inga sp.3', NULL, NULL, NULL, NULL, 'Inga Mill.', 'genus', 'Fabaceae', NULL, NULL, NULL, NULL, NULL, 'Inga', 'Mill.', 'Inga Mill.');
|
|
51 |
INSERT INTO taxon_match VALUES ('2014-07-22 03:05:20.316489-07', 14, 3, 'Fabaceae Inga sp.3', 0.900000000000000022, 'Inga', 'genus', 1, 'Scop.', 'http://www.tropicos.org/Name/50215121', NULL, NULL, 'Fabaceae', 1, 'Fabaceae', 'Inga', 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'sp.3', 'Illegitimate', NULL, NULL, NULL, NULL, NULL, NULL, 'false', 'tropicos', ' ', NULL, true, 'Fabaceae Inga Scop.', 'sp.3', NULL, 'Inga Scop.', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'genus', 'Fabaceae', 'Inga', NULL, NULL, NULL, NULL, 'Inga', 'Scop.', 'Inga Scop.');
|
|
52 |
INSERT INTO taxon_match VALUES ('2014-07-22 03:05:20.316489-07', 15, 4, 'Fabaceae unknown #2', 0.839999999999999969, 'Fagaceae', 'family', 0.939999999999999947, NULL, ';http://plants.usda.gov/java/nameSearch', NULL, NULL, 'Fagaceae', 0.880000000000000004, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'unknown #2', 'Accepted', 'Fagaceae', NULL, 'family', ';http://plants.usda.gov/java/nameSearch', NULL, NULL, 'true', 'tpl;usda', ' ', NULL, false, 'Fagaceae', 'unknown #2', NULL, 'Fagaceae', true, NULL, NULL, NULL, 'unknown #2', NULL, NULL, NULL, NULL, 'Fagaceae', 'family', NULL, NULL, NULL, NULL, NULL, NULL, 'Fagaceae', NULL, 'Fagaceae');
|
|
53 |
INSERT INTO taxon_match VALUES ('2014-07-22 03:05:20.316489-07', 16, 4, 'Fabaceae unknown #2', 0.900000000000000022, 'Fabaceae', 'family', 1, 'Lindl.', 'http://www.tropicos.org/Name/42000184', NULL, NULL, 'Fabaceae', 1, 'Fabaceae', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'unknown #2', 'Accepted', 'Fabaceae', 'Lindl.', 'family', 'http://www.tropicos.org/Name/42000184', NULL, 'Fabaceae', 'false', 'tropicos', ' ', NULL, true, 'Fabaceae Lindl.', 'unknown #2', NULL, 'Fabaceae Lindl.', true, NULL, NULL, NULL, 'Fabaceae unknown #2', NULL, NULL, NULL, NULL, 'Fabaceae Lindl.', 'family', 'Fabaceae', NULL, NULL, NULL, NULL, NULL, 'Fabaceae', 'Lindl.', 'Fabaceae Lindl.');
|
|
54 |
INSERT INTO taxon_match VALUES ('2014-07-22 03:05:20.316489-07', 17, 4, 'Fabaceae unknown #2', 0.839999999999999969, 'Fagaceae', 'family', 0.939999999999999947, 'Dumort.', 'http://www.tropicos.org/Name/42000062', NULL, NULL, 'Fagaceae', 0.880000000000000004, 'Fagaceae', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'unknown #2', 'Accepted', 'Fagaceae', 'Dumort.', 'family', 'http://www.tropicos.org/Name/42000062', NULL, 'Fagaceae', 'false', 'tropicos', ' ', NULL, false, 'Fagaceae Dumort.', 'unknown #2', NULL, 'Fagaceae Dumort.', true, NULL, NULL, NULL, 'Fagaceae unknown #2', NULL, NULL, NULL, NULL, 'Fagaceae Dumort.', 'family', 'Fagaceae', NULL, NULL, NULL, NULL, NULL, 'Fagaceae', 'Dumort.', 'Fagaceae Dumort.');
|
|
55 |
INSERT INTO taxon_match VALUES ('2014-07-22 03:05:20.316489-07', 18, 4, 'Fabaceae unknown #2', 0.67000000000000004, 'Ficaceae', 'family', 0.770000000000000018, 'Bercht. & J. Presl', 'http://www.tropicos.org/Name/100353631', NULL, NULL, 'Ficaceae', 0.75, 'Ficaceae', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'unknown #2', 'No opinion', NULL, NULL, NULL, NULL, NULL, NULL, 'false', 'tropicos', ' ', NULL, false, 'Ficaceae Bercht. & J. Presl', 'unknown #2', NULL, 'Ficaceae Bercht. & J. Presl', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'family', 'Ficaceae', NULL, NULL, NULL, NULL, NULL, 'Ficaceae', 'Bercht. & J. Presl', 'Ficaceae Bercht. & J. Presl');
|
|
56 |
INSERT INTO taxon_match VALUES ('2014-07-22 03:05:20.316489-07', 19, 4, 'Fabaceae unknown #2', 0.67000000000000004, 'Fucaceae', 'family', 0.770000000000000018, NULL, 'http://www.tropicos.org/Name/100371040', NULL, NULL, 'Fucaceae', 0.75, 'Fucaceae', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'unknown #2', 'No opinion', NULL, NULL, NULL, NULL, NULL, NULL, 'false', 'tropicos', ' ', NULL, false, 'Fucaceae', 'unknown #2', NULL, 'Fucaceae', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'family', 'Fucaceae', NULL, NULL, NULL, NULL, NULL, 'Fucaceae', NULL, 'Fucaceae');
|
|
57 |
INSERT INTO taxon_match VALUES ('2014-07-22 03:05:20.316489-07', 20, 4, 'Fabaceae unknown #2', 0.900000000000000022, 'Fabaceae', 'family', 1, NULL, 'http://plants.usda.gov/java/nameSearch', NULL, NULL, 'Fabaceae', 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'unknown #2', 'Accepted', 'Fabaceae', NULL, 'family', 'http://plants.usda.gov/java/nameSearch', NULL, NULL, 'false', 'usda', ' ', NULL, true, 'Fabaceae', 'unknown #2', NULL, 'Fabaceae', true, NULL, NULL, NULL, 'unknown #2', NULL, NULL, NULL, NULL, 'Fabaceae', 'family', NULL, NULL, NULL, NULL, NULL, NULL, 'Fabaceae', NULL, 'Fabaceae');
|
|
58 |
INSERT INTO taxon_match VALUES ('2014-07-22 03:05:20.316489-07', 21, 5, 'Fam_indet. Boyle#6501', 0, 'No suitable matches found.', NULL, 0, NULL, NULL, NULL, 0, NULL, 0, NULL, NULL, 0, NULL, 0, NULL, NULL, 0, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'true', NULL, ' ', NULL, false, NULL, NULL, NULL, 'No suitable matches found.', false, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'No suitable matches found.', NULL, 'No suitable matches found.');
|
|
59 |
INSERT INTO taxon_match VALUES ('2014-07-22 03:05:20.316489-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', NULL, NULL, NULL, NULL, 'Poaceae', 'Poa', 1, 'annua', 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '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', ' ', NULL, true, 'Poaceae Poa annua L.', NULL, 'Poa annua', 'Poa annua L.', true, '{Poa,annua}', 'Poa', 'annua', 'Poa annua', NULL, NULL, NULL, NULL, 'Poa annua L.', 'species', 'Poaceae', 'Poa', 'annua', 'Poa annua', NULL, 'annua', 'Poa annua', 'L.', 'Poa annua L.');
|
|
60 |
INSERT INTO taxon_match VALUES ('2014-07-22 03:05:20.316489-07', 23, 6, 'Poa annua', 1, 'Poa annua', 'species', 1, 'Cham. & Schltdl.', 'http://www.theplantlist.org/tpl1.1/record/kew-435195', NULL, NULL, NULL, NULL, 'Poaceae', 'Poa', 1, 'annua', 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Synonym', 'Poa infirma', 'Kunth', 'species', 'http://www.theplantlist.org/tpl1.1/record/kew-436189', 'Poa infirma', 'Poaceae', 'false', 'tpl', ' ', NULL, true, 'Poaceae Poa infirma Kunth', NULL, 'Poa annua', 'Poa annua Cham. & Schltdl.', true, '{Poa,infirma}', 'Poa', 'infirma', 'Poa infirma', NULL, NULL, NULL, NULL, 'Poa infirma Kunth', 'species', 'Poaceae', 'Poa', 'infirma', 'Poa infirma', NULL, 'infirma', 'Poa infirma', 'Kunth', 'Poa infirma Kunth');
|
|
61 |
INSERT INTO taxon_match VALUES ('2014-07-22 03:05:20.316489-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, NULL, NULL, 'Poaceae', 'Poa', 1, 'annua', 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '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', ' ', NULL, true, 'Poaceae Poa annua L.', NULL, 'Poa annua', 'Poa annua L.', true, '{Poa,annua}', 'Poa', 'annua', 'Poa annua', NULL, NULL, NULL, NULL, 'Poa annua L.', 'species', 'Poaceae', 'Poa', 'annua', 'Poa annua', NULL, 'annua', 'Poa annua', 'L.', 'Poa annua L.');
|
|
62 |
INSERT INTO taxon_match VALUES ('2014-07-22 03:05:20.316489-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, NULL, NULL, 'Poaceae', 'Poa', 1, 'annua', 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'Synonym', 'Poa infirma', 'Kunth', 'species', 'http://www.theplantlist.org/tpl1.1/record/kew-436189', 'Poa infirma', 'Poaceae', 'false', 'tpl', ' ', NULL, true, 'Poaceae Poa infirma Kunth', NULL, 'Poa annua', 'Poa annua Cham. & Schltdl.', true, '{Poa,infirma}', 'Poa', 'infirma', 'Poa infirma', NULL, NULL, NULL, NULL, 'Poa infirma Kunth', 'species', 'Poaceae', 'Poa', 'infirma', 'Poa infirma', NULL, 'infirma', 'Poa infirma', 'Kunth', 'Poa infirma Kunth');
|
|
63 |
INSERT INTO taxon_match VALUES ('2014-07-22 03:05:20.316489-07', 26, 8, 'Poa annua fo. lanuginosa', 1, 'Poa annua fo. lanuginosa', 'fo.', 1, 'Sennen', 'http://www.theplantlist.org/tpl1.1/record/tro-50267771', NULL, NULL, NULL, NULL, NULL, 'Poa', 1, 'annua', 1, 'fo.', 'lanuginosa', 1, NULL, NULL, NULL, NULL, NULL, 'Synonym', 'Poa annua', 'L.', 'species', 'http://www.theplantlist.org/tpl1.1/record/kew-435194', 'Poa annua', 'Poaceae', 'true', 'tpl', ' ', NULL, true, 'Poaceae Poa annua L.', NULL, 'Poa annua', 'Poa annua fo. lanuginosa Sennen', true, '{Poa,annua}', 'Poa', 'annua', 'Poa annua', NULL, NULL, NULL, NULL, 'Poa annua L.', 'species', 'Poaceae', 'Poa', 'annua', 'Poa annua', NULL, 'annua', 'Poa annua', 'L.', 'Poa annua L.');
|
|
64 |
INSERT INTO taxon_match VALUES ('2014-07-22 03:05:20.316489-07', 27, 8, 'Poa annua fo. lanuginosa', 1, 'Poa annua fo. lanuginosa', 'forma', 1, 'Sennen', 'http://www.tropicos.org/Name/50267771', NULL, NULL, NULL, NULL, 'Poaceae', 'Poa', 1, 'annua', 1, 'fo.', 'lanuginosa', 1, NULL, NULL, NULL, NULL, NULL, 'Synonym', 'Poa annua var. annua', NULL, 'variety', 'http://www.tropicos.org/Name/25517736', 'Poa annua', 'Poaceae', 'false', 'tropicos', ' ', NULL, true, 'Poaceae Poa annua var. annua', NULL, 'Poa annua', 'Poa annua fo. lanuginosa Sennen', true, '{Poa,annua}', 'Poa', 'annua', 'Poa annua', 'var. annua', '{var.,annua}', 'var.', 'annua', 'Poa annua var. annua', 'variety', 'Poaceae', 'Poa', 'annua', 'Poa annua', 'var.', 'annua', 'Poa annua var. annua', NULL, 'Poa annua var. annua');
|
|
65 |
INSERT INTO taxon_match VALUES ('2014-07-22 03:05:20.316489-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', NULL, NULL, NULL, NULL, 'Poaceae', 'Poa', 1, 'annua', 1, 'subsp.', 'exilis', 1, NULL, NULL, NULL, NULL, NULL, 'Synonym', 'Poa infirma', 'Kunth', 'species', 'http://www.tropicos.org/Name/25514158', 'Poa infirma', 'Poaceae', 'true', 'tropicos', ' ', NULL, true, 'Poaceae Poa infirma Kunth', NULL, 'Poa annua', 'Poa annua subsp. exilis (Tomm. ex Freyn) Asch. & Graebn.', true, '{Poa,infirma}', 'Poa', 'infirma', 'Poa infirma', NULL, NULL, NULL, NULL, 'Poa infirma Kunth', 'species', 'Poaceae', 'Poa', 'infirma', 'Poa infirma', NULL, 'infirma', 'Poa infirma', 'Kunth', 'Poa infirma Kunth');
|
|
66 |
INSERT INTO taxon_match VALUES ('2014-07-22 03:05:20.316489-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', NULL, NULL, NULL, NULL, 'Poaceae', 'Poa', 1, 'annua', 1, 'var.', 'exilis', 0.699999999999999956, NULL, NULL, NULL, NULL, NULL, 'Synonym', 'Poa infirma', 'Kunth', 'species', 'http://www.tropicos.org/Name/25514158', 'Poa infirma', 'Poaceae', 'false', 'tropicos', ' ', NULL, true, 'Poaceae Poa infirma Kunth', NULL, 'Poa annua', 'Poa annua var. exilis Tomm. ex Freyn', true, '{Poa,infirma}', 'Poa', 'infirma', 'Poa infirma', NULL, NULL, NULL, NULL, 'Poa infirma Kunth', 'species', 'Poaceae', 'Poa', 'infirma', 'Poa infirma', NULL, 'infirma', 'Poa infirma', 'Kunth', 'Poa infirma Kunth');
|
|
67 |
INSERT INTO taxon_match VALUES ('2014-07-22 03:05:20.316489-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', NULL, NULL, NULL, NULL, NULL, 'Poa', 1, 'annua', 1, 'subsp.', 'exilis', 1, NULL, NULL, NULL, NULL, NULL, 'Synonym', 'Poa infirma', 'Kunth', 'species', 'http://www.theplantlist.org/tpl1.1/record/kew-436189', 'Poa infirma', 'Poaceae', 'true', 'tpl', ' ', NULL, true, 'Poaceae Poa infirma Kunth', NULL, 'Poa annua', 'Poa annua subsp. exilis (Tomm. ex Freyn.) Asch. & Graebn.', true, '{Poa,infirma}', 'Poa', 'infirma', 'Poa infirma', NULL, NULL, NULL, NULL, 'Poa infirma Kunth', 'species', 'Poaceae', 'Poa', 'infirma', 'Poa infirma', NULL, 'infirma', 'Poa infirma', 'Kunth', 'Poa infirma Kunth');
|
|
68 |
INSERT INTO taxon_match VALUES ('2014-07-22 03:05:20.316489-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', NULL, NULL, NULL, NULL, 'Poaceae', 'Poa', 1, 'annua', 1, 'subsp.', 'exilis', 1, NULL, NULL, NULL, NULL, NULL, 'Synonym', 'Poa infirma', 'Kunth', 'species', 'http://www.tropicos.org/Name/25514158', 'Poa infirma', 'Poaceae', 'false', 'tropicos', ' ', NULL, true, 'Poaceae Poa infirma Kunth', NULL, 'Poa annua', 'Poa annua subsp. exilis (Tomm. ex Freyn) Asch. & Graebn.', true, '{Poa,infirma}', 'Poa', 'infirma', 'Poa infirma', NULL, NULL, NULL, NULL, 'Poa infirma Kunth', 'species', 'Poaceae', 'Poa', 'infirma', 'Poa infirma', NULL, 'infirma', 'Poa infirma', 'Kunth', 'Poa infirma Kunth');
|
|
69 |
INSERT INTO taxon_match VALUES ('2014-07-22 03:05:20.316489-07', 32, 11, 'Poa annua subvar. minima', 1, 'Poa annua subvar. minima', 'subvariety', 1, '(Schur) Asch. & Graebn.', 'http://www.tropicos.org/Name/50158097', NULL, NULL, NULL, NULL, 'Poaceae', 'Poa', 1, 'annua', 1, 'subvar.', 'minima', 1, NULL, NULL, NULL, NULL, NULL, 'Accepted', 'Poa annua subvar. minima', '(Schur) Asch. & Graebn.', 'subvariety', 'http://www.tropicos.org/Name/50158097', 'Poa annua', 'Poaceae', 'true', 'tropicos', ' ', NULL, true, 'Poaceae Poa annua subvar. minima (Schur) Asch. & Graebn.', NULL, 'Poa annua', 'Poa annua subvar. minima (Schur) Asch. & Graebn.', true, '{Poa,annua}', 'Poa', 'annua', 'Poa annua', 'subvar. minima', '{subvar.,minima}', 'subvar.', 'minima', 'Poa annua subvar. minima (Schur) Asch. & Graebn.', 'subvariety', 'Poaceae', 'Poa', 'annua', 'Poa annua', 'subvar.', 'annua', 'Poa annua subvar. minima', '(Schur) Asch. & Graebn.', 'Poa annua subvar. minima (Schur) Asch. & Graebn.');
|
|
70 |
INSERT INTO taxon_match VALUES ('2014-07-22 03:05:20.316489-07', 33, 12, 'Poa annua var. eriolepis', 1, 'Poa annua var. eriolepis', 'var.', 1, '̉ۡ.Desv.', 'http://www.theplantlist.org/tpl1.1/record/kew-435206', NULL, NULL, NULL, NULL, NULL, 'Poa', 1, 'annua', 1, 'var.', 'eriolepis', 1, NULL, NULL, NULL, NULL, NULL, 'Synonym', 'Poa annua', 'L.', 'species', 'http://www.theplantlist.org/tpl1.1/record/kew-435194', 'Poa annua', 'Poaceae', 'true', 'tpl', ' ', NULL, true, 'Poaceae Poa annua L.', NULL, 'Poa annua', 'Poa annua var. eriolepis ̉ۡ.Desv.', true, '{Poa,annua}', 'Poa', 'annua', 'Poa annua', NULL, NULL, NULL, NULL, 'Poa annua L.', 'species', 'Poaceae', 'Poa', 'annua', 'Poa annua', NULL, 'annua', 'Poa annua', 'L.', 'Poa annua L.');
|
|
71 |
INSERT INTO taxon_match VALUES ('2014-07-22 03:05:20.316489-07', 34, 12, 'Poa annua var. eriolepis', 1, 'Poa annua var. eriolepis', 'variety', 1, 'E. Desv.', 'http://www.tropicos.org/Name/50119145', NULL, NULL, NULL, NULL, 'Poaceae', 'Poa', 1, 'annua', 1, 'var.', 'eriolepis', 1, NULL, NULL, NULL, NULL, NULL, 'Synonym', 'Poa annua', 'L.', 'species', 'http://www.tropicos.org/Name/25509881', 'Poa annua', 'Poaceae', 'false', 'tropicos', ' ', NULL, true, 'Poaceae Poa annua L.', NULL, 'Poa annua', 'Poa annua var. eriolepis E. Desv.', true, '{Poa,annua}', 'Poa', 'annua', 'Poa annua', NULL, NULL, NULL, NULL, 'Poa annua L.', 'species', 'Poaceae', 'Poa', 'annua', 'Poa annua', NULL, 'annua', 'Poa annua', 'L.', 'Poa annua L.');
|
|
72 |
INSERT INTO taxon_match VALUES ('2014-07-22 03:05:20.316489-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', NULL, NULL, NULL, NULL, 'Caryophyllaceae', 'Silene', 1, 'scouleri', 1, 'subsp.', 'pringlei', 1, NULL, NULL, NULL, NULL, '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] ', NULL, true, 'Caryophyllaceae Silene scouleri subsp. pringlei (S. Watson) C.L. Hitchc. & Maguire', 'var. grisea', 'Silene scouleri', 'Silene scouleri subsp. pringlei (S. Watson) C.L. Hitchc. & Maguire', true, '{Silene,scouleri}', 'Silene', 'scouleri', 'Silene scouleri', 'subsp. pringlei', '{subsp.,pringlei}', 'subsp.', 'pringlei', 'Silene scouleri subsp. pringlei (S. Watson) C.L. Hitchc. & Maguire', 'subsp.', 'Caryophyllaceae', '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');
|
|
73 |
INSERT INTO taxon_match VALUES ('2014-07-22 03:05:20.316489-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', NULL, NULL, NULL, NULL, 'Caryophyllaceae', 'Silene', 1, 'scouleri', 1, 'subsp.', 'pringlei', 1, NULL, NULL, NULL, NULL, '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] ', NULL, true, 'Caryophyllaceae Silene scouleri subsp. pringlei (S. Watson) C.L. Hitchc. & Maguire', 'var. grisea', 'Silene scouleri', 'Silene scouleri subsp. pringlei (S. Watson) C.L. Hitchc. & Maguire', true, '{Silene,scouleri}', 'Silene', 'scouleri', 'Silene scouleri', 'subsp. pringlei', '{subsp.,pringlei}', 'subsp.', 'pringlei', 'Silene scouleri subsp. pringlei (S. Watson) C.L. Hitchc. & Maguire', 'subspecies', 'Caryophyllaceae', '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');
|
|
74 |
INSERT INTO taxon_match VALUES ('2014-07-22 03:05:20.316489-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', NULL, NULL, NULL, NULL, 'Caryophyllaceae', 'Silene', 1, 'scouleri', 1, 'subsp.', 'pringlei', 1, NULL, NULL, NULL, NULL, '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] ', NULL, true, 'Caryophyllaceae Silene scouleri ssp. pringlei (S. Watson) C.L. Hitchc. & Maguire', 'var. grisea', 'Silene scouleri', 'Silene scouleri subsp. pringlei (S. Watson) C.L. Hitchc. & Maguire', true, '{Silene,scouleri}', 'Silene', 'scouleri', 'Silene scouleri', 'ssp. pringlei', '{ssp.,pringlei}', 'ssp.', 'pringlei', 'Silene scouleri ssp. pringlei (S. Watson) C.L. Hitchc. & Maguire', 'subspecies', 'Caryophyllaceae', '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');
|
|
75 |
INSERT INTO taxon_match VALUES ('2014-07-22 03:05:20.316489-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', NULL, NULL, NULL, NULL, 'Caryophyllaceae', 'Silene', 1, 'scouleri', 1, 'subsp.', 'pringlei', 1, NULL, NULL, NULL, NULL, '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] ', NULL, true, 'Caryophyllaceae Silene scouleri subsp. pringlei (S. Watson) C.L. Hitchc. & Maguire', 'var. grisea', 'Silene scouleri', 'Silene scouleri subsp. pringlei (S. Watson) C.L. Hitchc. & Maguire', true, '{Silene,scouleri}', 'Silene', 'scouleri', 'Silene scouleri', 'subsp. pringlei', '{subsp.,pringlei}', 'subsp.', 'pringlei', 'Silene scouleri subsp. pringlei (S. Watson) C.L. Hitchc. & Maguire', 'subsp.', 'Caryophyllaceae', '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');
|
|
76 |
INSERT INTO taxon_match VALUES ('2014-07-22 03:05:20.316489-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', NULL, NULL, NULL, NULL, 'Caryophyllaceae', 'Silene', 1, 'scouleri', 1, 'subsp.', 'pringlei', 1, NULL, NULL, NULL, NULL, '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] ', NULL, true, 'Caryophyllaceae Silene scouleri subsp. pringlei (S. Watson) C.L. Hitchc. & Maguire', 'var. grisea', 'Silene scouleri', 'Silene scouleri subsp. pringlei (S. Watson) C.L. Hitchc. & Maguire', true, '{Silene,scouleri}', 'Silene', 'scouleri', 'Silene scouleri', 'subsp. pringlei', '{subsp.,pringlei}', 'subsp.', 'pringlei', 'Silene scouleri subsp. pringlei (S. Watson) C.L. Hitchc. & Maguire', 'subspecies', 'Caryophyllaceae', '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');
|
|
77 |
INSERT INTO taxon_match VALUES ('2014-07-22 03:05:20.316489-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', NULL, NULL, NULL, NULL, 'Caryophyllaceae', 'Silene', 1, 'scouleri', 1, 'subsp.', 'pringlei', 1, NULL, NULL, NULL, NULL, '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] ', NULL, true, 'Caryophyllaceae Silene scouleri ssp. pringlei (S. Watson) C.L. Hitchc. & Maguire', 'var. grisea', 'Silene scouleri', 'Silene scouleri subsp. pringlei (S. Watson) C.L. Hitchc. & Maguire', true, '{Silene,scouleri}', 'Silene', 'scouleri', 'Silene scouleri', 'ssp. pringlei', '{ssp.,pringlei}', 'ssp.', 'pringlei', 'Silene scouleri ssp. pringlei (S. Watson) C.L. Hitchc. & Maguire', 'subspecies', 'Caryophyllaceae', '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');
|
|
78 | 78 |
|
79 | 79 |
|
80 | 80 |
-- |
trunk/inputs/.TNRS/schema.sql | ||
---|---|---|
409 | 409 |
"*Accepted_name_lsid" text, |
410 | 410 |
is_valid_match boolean NOT NULL, |
411 | 411 |
scrubbed_unique_taxon_name text, |
412 |
"[parsed_]morphospecies[_suffix]__@Brad__.morphosp@vegpath.org" text, |
|
412 | 413 |
"[matched_]species[_binomial]~(-Accepted_-)__@TNRS__@vegpath.org" text, |
413 | 414 |
"[matched_]scientificName[_with_author]__@DwC__@vegpath.org" text, |
414 | 415 |
matched_has_accepted boolean, |
415 | 416 |
"__accepted_{genus,specific_epithet}" text[], |
416 | 417 |
"[accepted_]genus__@DwC__@vegpath.org" text, |
417 | 418 |
"[accepted_]specificEpithet__@DwC__@vegpath.org" text, |
419 |
"[accepted_]morphospecies[_binomial]__@Brad__.TNRS@vegpath.org" text, |
|
418 | 420 |
__accepted_infraspecific_label text, |
419 | 421 |
"__accepted_infraspecific_{rank,epithet}" text[], |
420 | 422 |
"[accepted_]Infraspecific_rank[_abbr]__@TNRS__@vegpath.org" text, |
... | ... | |
430 | 432 |
"[scrubbed_]name[_no_author]~(-Accepted_-)__@TNRS__@vegpath.org" text, |
431 | 433 |
"[scrubbed_]author~(-Accepted_-)__@TNRS__@vegpath.org" text, |
432 | 434 |
"[scrubbed_]scientificName[_with_author]__@DwC__@vegpath.org" text, |
433 |
"[parsed_]morphospecies[_suffix]__@Brad__.morphosp@vegpath.org" text, |
|
434 |
"[accepted_]morphospecies[_binomial]__@Brad__.TNRS@vegpath.org" text, |
|
435 | 435 |
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]))), |
436 | 436 |
CONSTRAINT "[accepted_]genus__@DwC__@vegpath.org" CHECK ((NOT ("[accepted_]genus__@DwC__@vegpath.org" IS DISTINCT FROM "__accepted_{genus,specific_epithet}"[1]))), |
437 | 437 |
CONSTRAINT "[accepted_]infraspecificEpithet__@DwC__@vegpath.org" CHECK ((NOT ("[accepted_]infraspecificEpithet__@DwC__@vegpath.org" IS DISTINCT FROM "__accepted_infraspecific_{rank,epithet}"[2]))), |
Also available in: Unified diff
inputs/.TNRS/schema.sql: reordered derived columns in dependency order