Revision 14459
Added by Aaron Marcuse-Kubitza over 10 years ago
vegbien.sql | ||
---|---|---|
5500 | 5500 |
SET search_path = public, pg_catalog; |
5501 | 5501 |
|
5502 | 5502 |
-- |
5503 |
-- Name: analytical_stem; Type: TABLE; Schema: public; Owner: -; Tablespace:
|
|
5503 |
-- Name: stemobservation; Type: TABLE; Schema: public; Owner: -; Tablespace:
|
|
5504 | 5504 |
-- |
5505 | 5505 |
|
5506 |
CREATE TABLE analytical_stem ( |
|
5506 |
CREATE TABLE stemobservation ( |
|
5507 |
stemobservation_id integer NOT NULL, |
|
5508 |
source_id integer NOT NULL, |
|
5509 |
sourceaccessioncode text, |
|
5510 |
plantobservation_id integer NOT NULL, |
|
5511 |
authorstemcode text, |
|
5512 |
tag text, |
|
5513 |
tags text, |
|
5514 |
xposition_m double precision, |
|
5515 |
yposition_m double precision, |
|
5516 |
diameterbreastheight_m double precision, |
|
5517 |
basaldiameter_m double precision, |
|
5518 |
diameteraccuracy_m double precision, |
|
5519 |
height_m double precision, |
|
5520 |
heightfirstbranch_m double precision, |
|
5521 |
heightaccuracy_m double precision, |
|
5522 |
health text, |
|
5523 |
age double precision, |
|
5524 |
CONSTRAINT stemobservation_non_empty CHECK (((((((((sourceaccessioncode IS NOT NULL) OR (authorstemcode IS NOT NULL)) OR (tag IS NOT NULL)) OR (xposition_m IS NOT NULL)) OR (diameterbreastheight_m IS NOT NULL)) OR (basaldiameter_m IS NOT NULL)) OR (height_m IS NOT NULL)) OR (heightfirstbranch_m IS NOT NULL))) |
|
5525 |
); |
|
5526 |
|
|
5527 |
|
|
5528 |
-- |
|
5529 |
-- Name: TABLE stemobservation; Type: COMMENT; Schema: public; Owner: - |
|
5530 |
-- |
|
5531 |
|
|
5532 |
COMMENT ON TABLE stemobservation IS ' |
|
5533 |
Equivalent to VegBank''s stemlocation table. |
|
5534 |
'; |
|
5535 |
|
|
5536 |
|
|
5537 |
-- |
|
5538 |
-- Name: COLUMN stemobservation.tags; Type: COMMENT; Schema: public; Owner: - |
|
5539 |
-- |
|
5540 |
|
|
5541 |
COMMENT ON COLUMN stemobservation.tags IS ' |
|
5542 |
Stores all tags when multiple tags provided. Older tags go first. |
|
5543 |
'; |
|
5544 |
|
|
5545 |
|
|
5546 |
-- |
|
5547 |
-- Name: viewFullOccurrence_individual; Type: TABLE; Schema: public; Owner: -; Tablespace: |
|
5548 |
-- |
|
5549 |
|
|
5550 |
CREATE TABLE "viewFullOccurrence_individual" ( |
|
5507 | 5551 |
"datasource__@Brad__.identifier_examples@vegpath.org" text NOT NULL, |
5508 | 5552 |
"country__@DwC__@vegpath.org" text, |
5509 | 5553 |
"stateProvince__@DwC__@vegpath.org" text, |
... | ... | |
5572 | 5616 |
"individualID__@DwC__@vegpath.org" text, |
5573 | 5617 |
"individualCount__@DwC__@vegpath.org" integer, |
5574 | 5618 |
"plantobservation.""_id__@VegBIEN__.public@vegpath.org" integer, |
5575 |
"stem_dbh[_cm]__@SALVIAS__.Plot_data@vegpath.org" double precision, |
|
5576 |
"stemHeight[_m]__@VegBank__.stemCount@vegpath.org" double precision, |
|
5577 |
"[tag=]identificationLabel__@VegX__.individual@vegpath.org" text, |
|
5578 |
"relativeX[_m]__@VegX__.individualOrganismObs@vegpath.org" double precision, |
|
5579 |
"relativeY[_m]__@VegX__.individualOrganismObs@vegpath.org" double precision, |
|
5580 |
"stemCode__@VegBank__.stemLocation@vegpath.org" text, |
|
5581 | 5619 |
"TAXONOBSERVATION_ID__@VegBank__.taxonObservation@vegpath.org" integer NOT NULL |
5582 | 5620 |
); |
5583 | 5621 |
|
5584 | 5622 |
|
5585 | 5623 |
-- |
5586 |
-- Name: COLUMN analytical_stem."datasource__@Brad__.identifier_examples@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
5624 |
-- Name: COLUMN "viewFullOccurrence_individual"."datasource__@Brad__.identifier_examples@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
5587 | 5625 |
-- |
5588 | 5626 |
|
5589 |
COMMENT ON COLUMN analytical_stem."datasource__@Brad__.identifier_examples@vegpath.org" IS '"the person [or] institution that provided the data [to this database] (the *proximate* data provider)"';
|
|
5627 |
COMMENT ON COLUMN "viewFullOccurrence_individual"."datasource__@Brad__.identifier_examples@vegpath.org" IS '"the person [or] institution that provided the data [to this database] (the *proximate* data provider)"';
|
|
5590 | 5628 |
|
5591 | 5629 |
|
5592 | 5630 |
-- |
5593 |
-- Name: COLUMN analytical_stem."country__@DwC__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
5631 |
-- Name: COLUMN "viewFullOccurrence_individual"."country__@DwC__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
5594 | 5632 |
-- |
5595 | 5633 |
|
5596 |
COMMENT ON COLUMN analytical_stem."country__@DwC__@vegpath.org" IS 'http://geoscrub.geoscrub_output.acceptedCountry__@VegBIEN__@vegpath.org;
|
|
5634 |
COMMENT ON COLUMN "viewFullOccurrence_individual"."country__@DwC__@vegpath.org" IS 'http://geoscrub.geoscrub_output.acceptedCountry__@VegBIEN__@vegpath.org;
|
|
5597 | 5635 |
"The name of the country or major administrative unit in which the Location occurs"'; |
5598 | 5636 |
|
5599 | 5637 |
|
5600 | 5638 |
-- |
5601 |
-- Name: COLUMN analytical_stem."stateProvince__@DwC__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
5639 |
-- Name: COLUMN "viewFullOccurrence_individual"."stateProvince__@DwC__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
5602 | 5640 |
-- |
5603 | 5641 |
|
5604 |
COMMENT ON COLUMN analytical_stem."stateProvince__@DwC__@vegpath.org" IS '"The name of the next smaller administrative region than country (state, province, canton, department, region, etc.) in which the Location occurs"';
|
|
5642 |
COMMENT ON COLUMN "viewFullOccurrence_individual"."stateProvince__@DwC__@vegpath.org" IS '"The name of the next smaller administrative region than country (state, province, canton, department, region, etc.) in which the Location occurs"';
|
|
5605 | 5643 |
|
5606 | 5644 |
|
5607 | 5645 |
-- |
5608 |
-- Name: COLUMN analytical_stem."county__@DwC__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
5646 |
-- Name: COLUMN "viewFullOccurrence_individual"."county__@DwC__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
5609 | 5647 |
-- |
5610 | 5648 |
|
5611 |
COMMENT ON COLUMN analytical_stem."county__@DwC__@vegpath.org" IS '"The full, unabbreviated name of the next smaller administrative region than stateProvince (county, shire, department, etc.) in which the Location occurs"';
|
|
5649 |
COMMENT ON COLUMN "viewFullOccurrence_individual"."county__@DwC__@vegpath.org" IS '"The full, unabbreviated name of the next smaller administrative region than stateProvince (county, shire, department, etc.) in which the Location occurs"';
|
|
5612 | 5650 |
|
5613 | 5651 |
|
5614 | 5652 |
-- |
5615 |
-- Name: COLUMN analytical_stem."locality__@DwC__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
5653 |
-- Name: COLUMN "viewFullOccurrence_individual"."locality__@DwC__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
5616 | 5654 |
-- |
5617 | 5655 |
|
5618 |
COMMENT ON COLUMN analytical_stem."locality__@DwC__@vegpath.org" IS '"The specific description of the place"';
|
|
5656 |
COMMENT ON COLUMN "viewFullOccurrence_individual"."locality__@DwC__@vegpath.org" IS '"The specific description of the place"';
|
|
5619 | 5657 |
|
5620 | 5658 |
|
5621 | 5659 |
-- |
5622 |
-- Name: COLUMN analytical_stem."decimalLatitude__@DwC__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
5660 |
-- Name: COLUMN "viewFullOccurrence_individual"."decimalLatitude__@DwC__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
5623 | 5661 |
-- |
5624 | 5662 |
|
5625 |
COMMENT ON COLUMN analytical_stem."decimalLatitude__@DwC__@vegpath.org" IS '"The geographic latitude (in decimal degrees, using the spatial reference system given in geodeticDatum) of the geographic center of a Location"';
|
|
5663 |
COMMENT ON COLUMN "viewFullOccurrence_individual"."decimalLatitude__@DwC__@vegpath.org" IS '"The geographic latitude (in decimal degrees, using the spatial reference system given in geodeticDatum) of the geographic center of a Location"';
|
|
5626 | 5664 |
|
5627 | 5665 |
|
5628 | 5666 |
-- |
5629 |
-- Name: COLUMN analytical_stem."decimalLongitude__@DwC__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
5667 |
-- Name: COLUMN "viewFullOccurrence_individual"."decimalLongitude__@DwC__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
5630 | 5668 |
-- |
5631 | 5669 |
|
5632 |
COMMENT ON COLUMN analytical_stem."decimalLongitude__@DwC__@vegpath.org" IS '"The geographic longitude (in decimal degrees, using the spatial reference system given in geodeticDatum) of the geographic center of a Location"';
|
|
5670 |
COMMENT ON COLUMN "viewFullOccurrence_individual"."decimalLongitude__@DwC__@vegpath.org" IS '"The geographic longitude (in decimal degrees, using the spatial reference system given in geodeticDatum) of the geographic center of a Location"';
|
|
5633 | 5671 |
|
5634 | 5672 |
|
5635 | 5673 |
-- |
5636 |
-- Name: COLUMN analytical_stem."coordinateUncertaintyInMeters__@DwC__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
5674 |
-- Name: COLUMN "viewFullOccurrence_individual"."coordinateUncertaintyInMeters__@DwC__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
5637 | 5675 |
-- |
5638 | 5676 |
|
5639 |
COMMENT ON COLUMN analytical_stem."coordinateUncertaintyInMeters__@DwC__@vegpath.org" IS 'for a point observation, this is the fuzziness of the coordinates. for a plot (or other shape), this is the radius of the circle that circumscribes the entire plot, or the fuzziness, whichever is greater. note that the DwC definition is confusingly worded: it uses the ambiguous term Location, which sometimes refers to the asserted named place, but which they intended to refer to the plot or point.';
|
|
5677 |
COMMENT ON COLUMN "viewFullOccurrence_individual"."coordinateUncertaintyInMeters__@DwC__@vegpath.org" IS 'for a point observation, this is the fuzziness of the coordinates. for a plot (or other shape), this is the radius of the circle that circumscribes the entire plot, or the fuzziness, whichever is greater. note that the DwC definition is confusingly worded: it uses the ambiguous term Location, which sometimes refers to the asserted named place, but which they intended to refer to the plot or point.';
|
|
5640 | 5678 |
|
5641 | 5679 |
|
5642 | 5680 |
-- |
5643 |
-- Name: COLUMN analytical_stem."georeferenceSources__@DwC__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
5681 |
-- Name: COLUMN "viewFullOccurrence_individual"."georeferenceSources__@DwC__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
5644 | 5682 |
-- |
5645 | 5683 |
|
5646 |
COMMENT ON COLUMN analytical_stem."georeferenceSources__@DwC__@vegpath.org" IS '"A list (concatenated and separated) of maps, gazetteers, or other resources used to georeference the Location, described specifically enough to allow anyone in the future to use the same resources"';
|
|
5684 |
COMMENT ON COLUMN "viewFullOccurrence_individual"."georeferenceSources__@DwC__@vegpath.org" IS '"A list (concatenated and separated) of maps, gazetteers, or other resources used to georeference the Location, described specifically enough to allow anyone in the future to use the same resources"';
|
|
5647 | 5685 |
|
5648 | 5686 |
|
5649 | 5687 |
-- |
5650 |
-- Name: COLUMN analytical_stem."georeferenceProtocol__@DwC__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
5688 |
-- Name: COLUMN "viewFullOccurrence_individual"."georeferenceProtocol__@DwC__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
5651 | 5689 |
-- |
5652 | 5690 |
|
5653 |
COMMENT ON COLUMN analytical_stem."georeferenceProtocol__@DwC__@vegpath.org" IS '"A description or reference to the methods used to determine the spatial footprint, coordinates, and uncertainties"';
|
|
5691 |
COMMENT ON COLUMN "viewFullOccurrence_individual"."georeferenceProtocol__@DwC__@vegpath.org" IS '"A description or reference to the methods used to determine the spatial footprint, coordinates, and uncertainties"';
|
|
5654 | 5692 |
|
5655 | 5693 |
|
5656 | 5694 |
-- |
5657 |
-- Name: COLUMN analytical_stem.geovalid_bien; Type: COMMENT; Schema: public; Owner: -
|
|
5695 |
-- Name: COLUMN "viewFullOccurrence_individual".geovalid_bien; Type: COMMENT; Schema: public; Owner: -
|
|
5658 | 5696 |
-- |
5659 | 5697 |
|
5660 |
COMMENT ON COLUMN analytical_stem.geovalid_bien IS 'whether the coordinates are within the boundary of the asserted named places';
|
|
5698 |
COMMENT ON COLUMN "viewFullOccurrence_individual".geovalid_bien IS 'whether the coordinates are within the boundary of the asserted named places';
|
|
5661 | 5699 |
|
5662 | 5700 |
|
5663 | 5701 |
-- |
5664 |
-- Name: COLUMN analytical_stem."isNewWorld_bien"; Type: COMMENT; Schema: public; Owner: -
|
|
5702 |
-- Name: COLUMN "viewFullOccurrence_individual"."isNewWorld_bien"; Type: COMMENT; Schema: public; Owner: -
|
|
5665 | 5703 |
-- |
5666 | 5704 |
|
5667 |
COMMENT ON COLUMN analytical_stem."isNewWorld_bien" IS 'whether the country is in the Americas';
|
|
5705 |
COMMENT ON COLUMN "viewFullOccurrence_individual"."isNewWorld_bien" IS 'whether the country is in the Americas';
|
|
5668 | 5706 |
|
5669 | 5707 |
|
5670 | 5708 |
-- |
5671 |
-- Name: COLUMN analytical_stem."projectID__@VegX__.plotObservation@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
5709 |
-- Name: COLUMN "viewFullOccurrence_individual"."projectID__@VegX__.plotObservation@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
5672 | 5710 |
-- |
5673 | 5711 |
|
5674 |
COMMENT ON COLUMN analytical_stem."projectID__@VegX__.plotObservation@vegpath.org" IS 'http://project.sourceaccessioncode__@VegBIEN__.public@vegpath.org;
|
|
5712 |
COMMENT ON COLUMN "viewFullOccurrence_individual"."projectID__@VegX__.plotObservation@vegpath.org" IS 'http://project.sourceaccessioncode__@VegBIEN__.public@vegpath.org;
|
|
5675 | 5713 |
"A reference to a specific ''project''"'; |
5676 | 5714 |
|
5677 | 5715 |
|
5678 | 5716 |
-- |
5679 |
-- Name: COLUMN analytical_stem."projectContributor[s]__@VegBank__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
5717 |
-- Name: COLUMN "viewFullOccurrence_individual"."projectContributor[s]__@VegBank__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
5680 | 5718 |
-- |
5681 | 5719 |
|
5682 |
COMMENT ON COLUMN analytical_stem."projectContributor[s]__@VegBank__@vegpath.org" IS '"intersection entit[ies] used to ''link'' a party with a specific project wherein vegetation plots are described"';
|
|
5720 |
COMMENT ON COLUMN "viewFullOccurrence_individual"."projectContributor[s]__@VegBank__@vegpath.org" IS '"intersection entit[ies] used to ''link'' a party with a specific project wherein vegetation plots are described"';
|
|
5683 | 5721 |
|
5684 | 5722 |
|
5685 | 5723 |
-- |
5686 |
-- Name: COLUMN analytical_stem."locationID__@DwC__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
5724 |
-- Name: COLUMN "viewFullOccurrence_individual"."locationID__@DwC__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
5687 | 5725 |
-- |
5688 | 5726 |
|
5689 |
COMMENT ON COLUMN analytical_stem."locationID__@DwC__@vegpath.org" IS '"An identifier for the set of location information (data associated with dcterms:Location)"';
|
|
5727 |
COMMENT ON COLUMN "viewFullOccurrence_individual"."locationID__@DwC__@vegpath.org" IS '"An identifier for the set of location information (data associated with dcterms:Location)"';
|
|
5690 | 5728 |
|
5691 | 5729 |
|
5692 | 5730 |
-- |
5693 |
-- Name: COLUMN analytical_stem."plotName__@VegX__.plot@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
5731 |
-- Name: COLUMN "viewFullOccurrence_individual"."plotName__@VegX__.plot@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
5694 | 5732 |
-- |
5695 | 5733 |
|
5696 |
COMMENT ON COLUMN analytical_stem."plotName__@VegX__.plot@vegpath.org" IS '"Name or label for a plot"';
|
|
5734 |
COMMENT ON COLUMN "viewFullOccurrence_individual"."plotName__@VegX__.plot@vegpath.org" IS '"Name or label for a plot"';
|
|
5697 | 5735 |
|
5698 | 5736 |
|
5699 | 5737 |
-- |
5700 |
-- Name: COLUMN analytical_stem."subplot__@SALVIAS__.Plot_data@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
5738 |
-- Name: COLUMN "viewFullOccurrence_individual"."subplot__@SALVIAS__.Plot_data@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
5701 | 5739 |
-- |
5702 | 5740 |
|
5703 |
COMMENT ON COLUMN analytical_stem."subplot__@SALVIAS__.Plot_data@vegpath.org" IS 'http://location.authorlocationcode__@VegBIEN__.public@vegpath.org;
|
|
5741 |
COMMENT ON COLUMN "viewFullOccurrence_individual"."subplot__@SALVIAS__.Plot_data@vegpath.org" IS 'http://location.authorlocationcode__@VegBIEN__.public@vegpath.org;
|
|
5704 | 5742 |
"Code for subplot, line, or any other subsample or subdivision of plot"'; |
5705 | 5743 |
|
5706 | 5744 |
|
5707 | 5745 |
-- |
5708 |
-- Name: COLUMN analytical_stem.location__cultivated__bien; Type: COMMENT; Schema: public; Owner: -
|
|
5746 |
-- Name: COLUMN "viewFullOccurrence_individual".location__cultivated__bien; Type: COMMENT; Schema: public; Owner: -
|
|
5709 | 5747 |
-- |
5710 | 5748 |
|
5711 |
COMMENT ON COLUMN analytical_stem.location__cultivated__bien IS 'whether the occurrence''s *location* was flagged as cultivated. note that this refers just to the cultivated status of the *location*; the occurrence may be cultivated even if the location isn''t.';
|
|
5749 |
COMMENT ON COLUMN "viewFullOccurrence_individual".location__cultivated__bien IS 'whether the occurrence''s *location* was flagged as cultivated. note that this refers just to the cultivated status of the *location*; the occurrence may be cultivated even if the location isn''t.';
|
|
5712 | 5750 |
|
5713 | 5751 |
|
5714 | 5752 |
-- |
5715 |
-- Name: COLUMN analytical_stem."locationevent.locationevent_id__@VegBIEN__.public@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
5753 |
-- Name: COLUMN "viewFullOccurrence_individual"."locationevent.locationevent_id__@VegBIEN__.public@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
5716 | 5754 |
-- |
5717 | 5755 |
|
5718 |
COMMENT ON COLUMN analytical_stem."locationevent.locationevent_id__@VegBIEN__.public@vegpath.org" IS 'http://locationevent.locationevent_id__@VegBIEN__.public@vegpath.org;
|
|
5756 |
COMMENT ON COLUMN "viewFullOccurrence_individual"."locationevent.locationevent_id__@VegBIEN__.public@vegpath.org" IS 'http://locationevent.locationevent_id__@VegBIEN__.public@vegpath.org;
|
|
5719 | 5757 |
autogenerated ID for locationevent'; |
5720 | 5758 |
|
5721 | 5759 |
|
5722 | 5760 |
-- |
5723 |
-- Name: COLUMN analytical_stem."eventDate__@DwC__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
5761 |
-- Name: COLUMN "viewFullOccurrence_individual"."eventDate__@DwC__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
5724 | 5762 |
-- |
5725 | 5763 |
|
5726 |
COMMENT ON COLUMN analytical_stem."eventDate__@DwC__@vegpath.org" IS '"The date-time or interval during which an Event occurred. For occurrences, this is the date-time when the event was recorded."';
|
|
5764 |
COMMENT ON COLUMN "viewFullOccurrence_individual"."eventDate__@DwC__@vegpath.org" IS '"The date-time or interval during which an Event occurred. For occurrences, this is the date-time when the event was recorded."';
|
|
5727 | 5765 |
|
5728 | 5766 |
|
5729 | 5767 |
-- |
5730 |
-- Name: COLUMN analytical_stem."(-minimum-)ElevationInMeters__@DwC__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
5768 |
-- Name: COLUMN "viewFullOccurrence_individual"."(-minimum-)ElevationInMeters__@DwC__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
5731 | 5769 |
-- |
5732 | 5770 |
|
5733 |
COMMENT ON COLUMN analytical_stem."(-minimum-)ElevationInMeters__@DwC__@vegpath.org" IS 'the "elevation (altitude, usually above sea level), in meters"';
|
|
5771 |
COMMENT ON COLUMN "viewFullOccurrence_individual"."(-minimum-)ElevationInMeters__@DwC__@vegpath.org" IS 'the "elevation (altitude, usually above sea level), in meters"';
|
|
5734 | 5772 |
|
5735 | 5773 |
|
5736 | 5774 |
-- |
5737 |
-- Name: COLUMN analytical_stem."slopeAspect[_deg]__@VegX__.plot@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
5775 |
-- Name: COLUMN "viewFullOccurrence_individual"."slopeAspect[_deg]__@VegX__.plot@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
5738 | 5776 |
-- |
5739 | 5777 |
|
5740 |
COMMENT ON COLUMN analytical_stem."slopeAspect[_deg]__@VegX__.plot@vegpath.org" IS '"Representative azimuth of slope gradient (0-360 degrees) or as a cardinal direction (e.g. N, S, NE)"';
|
|
5778 |
COMMENT ON COLUMN "viewFullOccurrence_individual"."slopeAspect[_deg]__@VegX__.plot@vegpath.org" IS '"Representative azimuth of slope gradient (0-360 degrees) or as a cardinal direction (e.g. N, S, NE)"';
|
|
5741 | 5779 |
|
5742 | 5780 |
|
5743 | 5781 |
-- |
5744 |
-- Name: COLUMN analytical_stem."slopeGradient[_deg]__@VegX__.plot@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
5782 |
-- Name: COLUMN "viewFullOccurrence_individual"."slopeGradient[_deg]__@VegX__.plot@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
5745 | 5783 |
-- |
5746 | 5784 |
|
5747 |
COMMENT ON COLUMN analytical_stem."slopeGradient[_deg]__@VegX__.plot@vegpath.org" IS '"Representative inclination of slope in degrees"';
|
|
5785 |
COMMENT ON COLUMN "viewFullOccurrence_individual"."slopeGradient[_deg]__@VegX__.plot@vegpath.org" IS '"Representative inclination of slope in degrees"';
|
|
5748 | 5786 |
|
5749 | 5787 |
|
5750 | 5788 |
-- |
5751 |
-- Name: COLUMN analytical_stem."plot.area[_ha]__@VegX__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
5789 |
-- Name: COLUMN "viewFullOccurrence_individual"."plot.area[_ha]__@VegX__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
5752 | 5790 |
-- |
5753 | 5791 |
|
5754 |
COMMENT ON COLUMN analytical_stem."plot.area[_ha]__@VegX__@vegpath.org" IS '"Total area of the plot"';
|
|
5792 |
COMMENT ON COLUMN "viewFullOccurrence_individual"."plot.area[_ha]__@VegX__@vegpath.org" IS '"Total area of the plot"';
|
|
5755 | 5793 |
|
5756 | 5794 |
|
5757 | 5795 |
-- |
5758 |
-- Name: COLUMN analytical_stem."samplingProtocol__@DwC__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
5796 |
-- Name: COLUMN "viewFullOccurrence_individual"."samplingProtocol__@DwC__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
5759 | 5797 |
-- |
5760 | 5798 |
|
5761 |
COMMENT ON COLUMN analytical_stem."samplingProtocol__@DwC__@vegpath.org" IS '"The name of, reference to, or description of the method or protocol used during an Event"';
|
|
5799 |
COMMENT ON COLUMN "viewFullOccurrence_individual"."samplingProtocol__@DwC__@vegpath.org" IS '"The name of, reference to, or description of the method or protocol used during an Event"';
|
|
5762 | 5800 |
|
5763 | 5801 |
|
5764 | 5802 |
-- |
5765 |
-- Name: COLUMN analytical_stem."temperature[_C]__@VegX__.plotObs.obsCond@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
5803 |
-- Name: COLUMN "viewFullOccurrence_individual"."temperature[_C]__@VegX__.plotObs.obsCond@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
5766 | 5804 |
-- |
5767 | 5805 |
|
5768 |
COMMENT ON COLUMN analytical_stem."temperature[_C]__@VegX__.plotObs.obsCond@vegpath.org" IS '"Temperature during observation [...] [in] Celsius"';
|
|
5806 |
COMMENT ON COLUMN "viewFullOccurrence_individual"."temperature[_C]__@VegX__.plotObs.obsCond@vegpath.org" IS '"Temperature during observation [...] [in] Celsius"';
|
|
5769 | 5807 |
|
5770 | 5808 |
|
5771 | 5809 |
-- |
5772 |
-- Name: COLUMN analytical_stem."precip_mm__@SALVIAS__.Plot_metadata@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
5810 |
-- Name: COLUMN "viewFullOccurrence_individual"."precip_mm__@SALVIAS__.Plot_metadata@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
5773 | 5811 |
-- |
5774 | 5812 |
|
5775 |
COMMENT ON COLUMN analytical_stem."precip_mm__@SALVIAS__.Plot_metadata@vegpath.org" IS '"Total annual precipitation, in mm"';
|
|
5813 |
COMMENT ON COLUMN "viewFullOccurrence_individual"."precip_mm__@SALVIAS__.Plot_metadata@vegpath.org" IS '"Total annual precipitation, in mm"';
|
|
5776 | 5814 |
|
5777 | 5815 |
|
5778 | 5816 |
-- |
5779 |
-- Name: COLUMN analytical_stem."stratumName__@VegX__.stratum@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
5817 |
-- Name: COLUMN "viewFullOccurrence_individual"."stratumName__@VegX__.stratum@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
5780 | 5818 |
-- |
5781 | 5819 |
|
5782 |
COMMENT ON COLUMN analytical_stem."stratumName__@VegX__.stratum@vegpath.org" IS '"Name associated with this stratum"';
|
|
5820 |
COMMENT ON COLUMN "viewFullOccurrence_individual"."stratumName__@VegX__.stratum@vegpath.org" IS '"Name associated with this stratum"';
|
|
5783 | 5821 |
|
5784 | 5822 |
|
5785 | 5823 |
-- |
5786 |
-- Name: COLUMN analytical_stem."communityConcept.name__@VegX__.communityDet@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
5824 |
-- Name: COLUMN "viewFullOccurrence_individual"."communityConcept.name__@VegX__.communityDet@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
5787 | 5825 |
-- |
5788 | 5826 |
|
5789 |
COMMENT ON COLUMN analytical_stem."communityConcept.name__@VegX__.communityDet@vegpath.org" IS '"A textual label for a community type. A community type is an abstract grouping of organisms that tend to co-occur on the landscape due to shared ecological requirements or preferences."';
|
|
5827 |
COMMENT ON COLUMN "viewFullOccurrence_individual"."communityConcept.name__@VegX__.communityDet@vegpath.org" IS '"A textual label for a community type. A community type is an abstract grouping of organisms that tend to co-occur on the landscape due to shared ecological requirements or preferences."';
|
|
5790 | 5828 |
|
5791 | 5829 |
|
5792 | 5830 |
-- |
5793 |
-- Name: COLUMN analytical_stem."observationContributor[s]__@VegBank__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
5831 |
-- Name: COLUMN "viewFullOccurrence_individual"."observationContributor[s]__@VegBank__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
5794 | 5832 |
-- |
5795 | 5833 |
|
5796 |
COMMENT ON COLUMN analytical_stem."observationContributor[s]__@VegBank__@vegpath.org" IS '"intersection[s] that link[] a party with a specific plot observation event"';
|
|
5834 |
COMMENT ON COLUMN "viewFullOccurrence_individual"."observationContributor[s]__@VegBank__@vegpath.org" IS '"intersection[s] that link[] a party with a specific plot observation event"';
|
|
5797 | 5835 |
|
5798 | 5836 |
|
5799 | 5837 |
-- |
5800 |
-- Name: COLUMN analytical_stem."[custodial_]institutionCode[s]__@DwC__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
5838 |
-- Name: COLUMN "viewFullOccurrence_individual"."[custodial_]institutionCode[s]__@DwC__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
5801 | 5839 |
-- |
5802 | 5840 |
|
5803 |
COMMENT ON COLUMN analytical_stem."[custodial_]institutionCode[s]__@DwC__@vegpath.org" IS '"The name[s] (or acronym[s]) in use by the institution[s] having custody of the object(s) or information referred to in the record"';
|
|
5841 |
COMMENT ON COLUMN "viewFullOccurrence_individual"."[custodial_]institutionCode[s]__@DwC__@vegpath.org" IS '"The name[s] (or acronym[s]) in use by the institution[s] having custody of the object(s) or information referred to in the record"';
|
|
5804 | 5842 |
|
5805 | 5843 |
|
5806 | 5844 |
-- |
5807 |
-- Name: COLUMN analytical_stem."collectionCode__@DwC__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
5845 |
-- Name: COLUMN "viewFullOccurrence_individual"."collectionCode__@DwC__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
5808 | 5846 |
-- |
5809 | 5847 |
|
5810 |
COMMENT ON COLUMN analytical_stem."collectionCode__@DwC__@vegpath.org" IS '"The name, acronym, coden, or initialism identifying the collection or data set from which the record was derived"';
|
|
5848 |
COMMENT ON COLUMN "viewFullOccurrence_individual"."collectionCode__@DwC__@vegpath.org" IS '"The name, acronym, coden, or initialism identifying the collection or data set from which the record was derived"';
|
|
5811 | 5849 |
|
5812 | 5850 |
|
5813 | 5851 |
-- |
5814 |
-- Name: COLUMN analytical_stem."catalogNumber__@DwC__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
5852 |
-- Name: COLUMN "viewFullOccurrence_individual"."catalogNumber__@DwC__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
5815 | 5853 |
-- |
5816 | 5854 |
|
5817 |
COMMENT ON COLUMN analytical_stem."catalogNumber__@DwC__@vegpath.org" IS '"An identifier (preferably unique) for the record within the data set or collection"';
|
|
5855 |
COMMENT ON COLUMN "viewFullOccurrence_individual"."catalogNumber__@DwC__@vegpath.org" IS '"An identifier (preferably unique) for the record within the data set or collection"';
|
|
5818 | 5856 |
|
5819 | 5857 |
|
5820 | 5858 |
-- |
5821 |
-- Name: COLUMN analytical_stem."occurrenceID__@DwC__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
5859 |
-- Name: COLUMN "viewFullOccurrence_individual"."occurrenceID__@DwC__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
5822 | 5860 |
-- |
5823 | 5861 |
|
5824 |
COMMENT ON COLUMN analytical_stem."occurrenceID__@DwC__@vegpath.org" IS '"An identifier for the Occurrence (as opposed to a particular digital record of the occurrence). In the absence of a persistent global unique identifier, construct one from a combination of identifiers in the record that will most closely make the occurrenceID globally unique."';
|
|
5862 |
COMMENT ON COLUMN "viewFullOccurrence_individual"."occurrenceID__@DwC__@vegpath.org" IS '"An identifier for the Occurrence (as opposed to a particular digital record of the occurrence). In the absence of a persistent global unique identifier, construct one from a combination of identifiers in the record that will most closely make the occurrenceID globally unique."';
|
|
5825 | 5863 |
|
5826 | 5864 |
|
5827 | 5865 |
-- |
5828 |
-- Name: COLUMN analytical_stem."recordedBy__@DwC__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
5866 |
-- Name: COLUMN "viewFullOccurrence_individual"."recordedBy__@DwC__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
5829 | 5867 |
-- |
5830 | 5868 |
|
5831 |
COMMENT ON COLUMN analytical_stem."recordedBy__@DwC__@vegpath.org" IS '"A list (concatenated and separated) of names of people, groups, or organizations responsible for recording the original Occurrence. The primary collector or observer, especially one who applies a personal identifier (recordNumber), should be listed first."';
|
|
5869 |
COMMENT ON COLUMN "viewFullOccurrence_individual"."recordedBy__@DwC__@vegpath.org" IS '"A list (concatenated and separated) of names of people, groups, or organizations responsible for recording the original Occurrence. The primary collector or observer, especially one who applies a personal identifier (recordNumber), should be listed first."';
|
|
5832 | 5870 |
|
5833 | 5871 |
|
5834 | 5872 |
-- |
5835 |
-- Name: COLUMN analytical_stem."recordNumber__@DwC__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
5873 |
-- Name: COLUMN "viewFullOccurrence_individual"."recordNumber__@DwC__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
5836 | 5874 |
-- |
5837 | 5875 |
|
5838 |
COMMENT ON COLUMN analytical_stem."recordNumber__@DwC__@vegpath.org" IS '"An identifier given to the Occurrence at the time it was recorded. Often serves as a link between field notes and an Occurrence record, such as a specimen collector''s number."';
|
|
5876 |
COMMENT ON COLUMN "viewFullOccurrence_individual"."recordNumber__@DwC__@vegpath.org" IS '"An identifier given to the Occurrence at the time it was recorded. Often serves as a link between field notes and an Occurrence record, such as a specimen collector''s number."';
|
|
5839 | 5877 |
|
5840 | 5878 |
|
5841 | 5879 |
-- |
5842 |
-- Name: COLUMN analytical_stem."(-Earliest-)DateCollected__-2007-04-17__@DwC__.hist@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
5880 |
-- Name: COLUMN "viewFullOccurrence_individual"."(-Earliest-)DateCollected__-2007-04-17__@DwC__.hist@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
5843 | 5881 |
-- |
5844 | 5882 |
|
5845 |
COMMENT ON COLUMN analytical_stem."(-Earliest-)DateCollected__-2007-04-17__@DwC__.hist@vegpath.org" IS 'the "date-time (Common Era calendar) in a date-time period during which an organism or group of organisms was collected or observed"';
|
|
5883 |
COMMENT ON COLUMN "viewFullOccurrence_individual"."(-Earliest-)DateCollected__-2007-04-17__@DwC__.hist@vegpath.org" IS 'the "date-time (Common Era calendar) in a date-time period during which an organism or group of organisms was collected or observed"';
|
|
5846 | 5884 |
|
5847 | 5885 |
|
5848 | 5886 |
-- |
5849 |
-- Name: COLUMN analytical_stem."[verbatim_]family__@DwC__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
5887 |
-- Name: COLUMN "viewFullOccurrence_individual"."[verbatim_]family__@DwC__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
5850 | 5888 |
-- |
5851 | 5889 |
|
5852 |
COMMENT ON COLUMN analytical_stem."[verbatim_]family__@DwC__@vegpath.org" IS '"The full scientific name of the family in which the taxon is classified [*before* any TNRS scrubbing]"';
|
|
5890 |
COMMENT ON COLUMN "viewFullOccurrence_individual"."[verbatim_]family__@DwC__@vegpath.org" IS '"The full scientific name of the family in which the taxon is classified [*before* any TNRS scrubbing]"';
|
|
5853 | 5891 |
|
5854 | 5892 |
|
5855 | 5893 |
-- |
5856 |
-- Name: COLUMN analytical_stem."[verbatim_]scientificName__@DwC__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
5894 |
-- Name: COLUMN "viewFullOccurrence_individual"."[verbatim_]scientificName__@DwC__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
5857 | 5895 |
-- |
5858 | 5896 |
|
5859 |
COMMENT ON COLUMN analytical_stem."[verbatim_]scientificName__@DwC__@vegpath.org" IS '"The full scientific name [*before* any TNRS scrubbing], with authorship and date information if known. When forming part of an Identification, this should be the name in lowest level taxonomic rank that can be determined."';
|
|
5897 |
COMMENT ON COLUMN "viewFullOccurrence_individual"."[verbatim_]scientificName__@DwC__@vegpath.org" IS '"The full scientific name [*before* any TNRS scrubbing], with authorship and date information if known. When forming part of an Identification, this should be the name in lowest level taxonomic rank that can be determined."';
|
|
5860 | 5898 |
|
5861 | 5899 |
|
5862 | 5900 |
-- |
5863 |
-- Name: COLUMN analytical_stem."identifiedBy__@DwC__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
5901 |
-- Name: COLUMN "viewFullOccurrence_individual"."identifiedBy__@DwC__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
5864 | 5902 |
-- |
5865 | 5903 |
|
5866 |
COMMENT ON COLUMN analytical_stem."identifiedBy__@DwC__@vegpath.org" IS '"A list (concatenated and separated) of names of people, groups, or organizations who assigned the Taxon to the subject"';
|
|
5904 |
COMMENT ON COLUMN "viewFullOccurrence_individual"."identifiedBy__@DwC__@vegpath.org" IS '"A list (concatenated and separated) of names of people, groups, or organizations who assigned the Taxon to the subject"';
|
|
5867 | 5905 |
|
5868 | 5906 |
|
5869 | 5907 |
-- |
5870 |
-- Name: COLUMN analytical_stem."dateIdentified__@DwC__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
5908 |
-- Name: COLUMN "viewFullOccurrence_individual"."dateIdentified__@DwC__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
5871 | 5909 |
-- |
5872 | 5910 |
|
5873 |
COMMENT ON COLUMN analytical_stem."dateIdentified__@DwC__@vegpath.org" IS '"The date on which the subject was identified as representing the Taxon"';
|
|
5911 |
COMMENT ON COLUMN "viewFullOccurrence_individual"."dateIdentified__@DwC__@vegpath.org" IS '"The date on which the subject was identified as representing the Taxon"';
|
|
5874 | 5912 |
|
5875 | 5913 |
|
5876 | 5914 |
-- |
5877 |
-- Name: COLUMN analytical_stem."identificationRemarks__@DwC__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
5915 |
-- Name: COLUMN "viewFullOccurrence_individual"."identificationRemarks__@DwC__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
5878 | 5916 |
-- |
5879 | 5917 |
|
5880 |
COMMENT ON COLUMN analytical_stem."identificationRemarks__@DwC__@vegpath.org" IS '"Comments or notes about the Identification"';
|
|
5918 |
COMMENT ON COLUMN "viewFullOccurrence_individual"."identificationRemarks__@DwC__@vegpath.org" IS '"Comments or notes about the Identification"';
|
|
5881 | 5919 |
|
5882 | 5920 |
|
5883 | 5921 |
-- |
5884 |
-- Name: COLUMN analytical_stem."Family_matched__@TNRS__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
5922 |
-- Name: COLUMN "viewFullOccurrence_individual"."Family_matched__@TNRS__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
5885 | 5923 |
-- |
5886 | 5924 |
|
5887 |
COMMENT ON COLUMN analytical_stem."Family_matched__@TNRS__@vegpath.org" IS 'http://TNRS.taxon_scrub.matchedFamily__@VegBIEN__.public@vegpath.org;
|
|
5925 |
COMMENT ON COLUMN "viewFullOccurrence_individual"."Family_matched__@TNRS__@vegpath.org" IS 'http://TNRS.taxon_scrub.matchedFamily__@VegBIEN__.public@vegpath.org;
|
|
5888 | 5926 |
"The closest matching family in the TNRS database to the family submitted"'; |
5889 | 5927 |
|
5890 | 5928 |
|
5891 | 5929 |
-- |
5892 |
-- Name: COLUMN analytical_stem."Name_matched__@TNRS__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
5930 |
-- Name: COLUMN "viewFullOccurrence_individual"."Name_matched__@TNRS__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
5893 | 5931 |
-- |
5894 | 5932 |
|
5895 |
COMMENT ON COLUMN analytical_stem."Name_matched__@TNRS__@vegpath.org" IS '"Scientific name with the highest match score. May be an exact match or a fuzzy match."';
|
|
5933 |
COMMENT ON COLUMN "viewFullOccurrence_individual"."Name_matched__@TNRS__@vegpath.org" IS '"Scientific name with the highest match score. May be an exact match or a fuzzy match."';
|
|
5896 | 5934 |
|
5897 | 5935 |
|
5898 | 5936 |
-- |
5899 |
-- Name: COLUMN analytical_stem."Name_matched_author__@TNRS__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
5937 |
-- Name: COLUMN "viewFullOccurrence_individual"."Name_matched_author__@TNRS__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
5900 | 5938 |
-- |
5901 | 5939 |
|
5902 |
COMMENT ON COLUMN analytical_stem."Name_matched_author__@TNRS__@vegpath.org" IS '"Standard authority for the matched name"';
|
|
5940 |
COMMENT ON COLUMN "viewFullOccurrence_individual"."Name_matched_author__@TNRS__@vegpath.org" IS '"Standard authority for the matched name"';
|
|
5903 | 5941 |
|
5904 | 5942 |
|
5905 | 5943 |
-- |
5906 |
-- Name: COLUMN analytical_stem."[higher_plant_group~]higherClassification__@DwC__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
5944 |
-- Name: COLUMN "viewFullOccurrence_individual"."[higher_plant_group~]higherClassification__@DwC__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
5907 | 5945 |
-- |
5908 | 5946 |
|
5909 |
COMMENT ON COLUMN analytical_stem."[higher_plant_group~]higherClassification__@DwC__@vegpath.org" IS 'closed list derived from higher taxa';
|
|
5947 |
COMMENT ON COLUMN "viewFullOccurrence_individual"."[higher_plant_group~]higherClassification__@DwC__@vegpath.org" IS 'closed list derived from higher taxa';
|
|
5910 | 5948 |
|
5911 | 5949 |
|
5912 | 5950 |
-- |
5913 |
-- Name: COLUMN analytical_stem."taxonomicStatus__@DwC__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
5951 |
-- Name: COLUMN "viewFullOccurrence_individual"."taxonomicStatus__@DwC__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
5914 | 5952 |
-- |
5915 | 5953 |
|
5916 |
COMMENT ON COLUMN analytical_stem."taxonomicStatus__@DwC__@vegpath.org" IS '"The status of the use of the scientificName as a label for a taxon. Requires taxonomic opinion to define the scope of a taxon. [...] Examples: "invalid", "misapplied", "homotypic synonym", "accepted"."';
|
|
5954 |
COMMENT ON COLUMN "viewFullOccurrence_individual"."taxonomicStatus__@DwC__@vegpath.org" IS '"The status of the use of the scientificName as a label for a taxon. Requires taxonomic opinion to define the scope of a taxon. [...] Examples: "invalid", "misapplied", "homotypic synonym", "accepted"."';
|
|
5917 | 5955 |
|
5918 | 5956 |
|
5919 | 5957 |
-- |
5920 |
-- Name: COLUMN analytical_stem.scrubbed_family; Type: COMMENT; Schema: public; Owner: -
|
|
5958 |
-- Name: COLUMN "viewFullOccurrence_individual".scrubbed_family; Type: COMMENT; Schema: public; Owner: -
|
|
5921 | 5959 |
-- |
5922 | 5960 |
|
5923 |
COMMENT ON COLUMN analytical_stem.scrubbed_family IS 'the family of the TNRS accepted or matched name';
|
|
5961 |
COMMENT ON COLUMN "viewFullOccurrence_individual".scrubbed_family IS 'the family of the TNRS accepted or matched name';
|
|
5924 | 5962 |
|
5925 | 5963 |
|
5926 | 5964 |
-- |
5927 |
-- Name: COLUMN analytical_stem.scrubbed_genus; Type: COMMENT; Schema: public; Owner: -
|
|
5965 |
-- Name: COLUMN "viewFullOccurrence_individual".scrubbed_genus; Type: COMMENT; Schema: public; Owner: -
|
|
5928 | 5966 |
-- |
5929 | 5967 |
|
5930 |
COMMENT ON COLUMN analytical_stem.scrubbed_genus IS 'the genus of the TNRS accepted or matched name';
|
|
5968 |
COMMENT ON COLUMN "viewFullOccurrence_individual".scrubbed_genus IS 'the genus of the TNRS accepted or matched name';
|
|
5931 | 5969 |
|
5932 | 5970 |
|
5933 | 5971 |
-- |
5934 |
-- Name: COLUMN analytical_stem.scrubbed_specific_epithet; Type: COMMENT; Schema: public; Owner: -
|
|
5972 |
-- Name: COLUMN "viewFullOccurrence_individual".scrubbed_specific_epithet; Type: COMMENT; Schema: public; Owner: -
|
|
5935 | 5973 |
-- |
5936 | 5974 |
|
5937 |
COMMENT ON COLUMN analytical_stem.scrubbed_specific_epithet IS 'the specific epithet of the TNRS accepted or matched name';
|
|
5975 |
COMMENT ON COLUMN "viewFullOccurrence_individual".scrubbed_specific_epithet IS 'the specific epithet of the TNRS accepted or matched name';
|
|
5938 | 5976 |
|
5939 | 5977 |
|
5940 | 5978 |
-- |
5941 |
-- Name: COLUMN analytical_stem.scrubbed_species_binomial; Type: COMMENT; Schema: public; Owner: -
|
|
5979 |
-- Name: COLUMN "viewFullOccurrence_individual".scrubbed_species_binomial; Type: COMMENT; Schema: public; Owner: -
|
|
5942 | 5980 |
-- |
5943 | 5981 |
|
5944 |
COMMENT ON COLUMN analytical_stem.scrubbed_species_binomial IS 'the species binomial of the TNRS accepted or matched name';
|
|
5982 |
COMMENT ON COLUMN "viewFullOccurrence_individual".scrubbed_species_binomial IS 'the species binomial of the TNRS accepted or matched name';
|
|
5945 | 5983 |
|
5946 | 5984 |
|
5947 | 5985 |
-- |
5948 |
-- Name: COLUMN analytical_stem.scrubbed_taxon_name_no_author; Type: COMMENT; Schema: public; Owner: -
|
|
5986 |
-- Name: COLUMN "viewFullOccurrence_individual".scrubbed_taxon_name_no_author; Type: COMMENT; Schema: public; Owner: -
|
|
5949 | 5987 |
-- |
5950 | 5988 |
|
5951 |
COMMENT ON COLUMN analytical_stem.scrubbed_taxon_name_no_author IS 'the taxon name without author of the TNRS accepted or matched name';
|
|
5989 |
COMMENT ON COLUMN "viewFullOccurrence_individual".scrubbed_taxon_name_no_author IS 'the taxon name without author of the TNRS accepted or matched name';
|
|
5952 | 5990 |
|
5953 | 5991 |
|
5954 | 5992 |
-- |
5955 |
-- Name: COLUMN analytical_stem.scrubbed_author; Type: COMMENT; Schema: public; Owner: -
|
|
5993 |
-- Name: COLUMN "viewFullOccurrence_individual".scrubbed_author; Type: COMMENT; Schema: public; Owner: -
|
|
5956 | 5994 |
-- |
5957 | 5995 |
|
5958 |
COMMENT ON COLUMN analytical_stem.scrubbed_author IS 'the author of the TNRS accepted or matched name';
|
|
5996 |
COMMENT ON COLUMN "viewFullOccurrence_individual".scrubbed_author IS 'the author of the TNRS accepted or matched name';
|
|
5959 | 5997 |
|
5960 | 5998 |
|
5961 | 5999 |
-- |
5962 |
-- Name: COLUMN analytical_stem.scrubbed_taxon_name_with_author; Type: COMMENT; Schema: public; Owner: -
|
|
6000 |
-- Name: COLUMN "viewFullOccurrence_individual".scrubbed_taxon_name_with_author; Type: COMMENT; Schema: public; Owner: -
|
|
5963 | 6001 |
-- |
5964 | 6002 |
|
5965 |
COMMENT ON COLUMN analytical_stem.scrubbed_taxon_name_with_author IS 'the taxon name with author of the TNRS accepted or matched name';
|
|
6003 |
COMMENT ON COLUMN "viewFullOccurrence_individual".scrubbed_taxon_name_with_author IS 'the taxon name with author of the TNRS accepted or matched name';
|
|
5966 | 6004 |
|
5967 | 6005 |
|
5968 | 6006 |
-- |
5969 |
-- Name: COLUMN analytical_stem."speciesBinomialWithMorphospecies__@VegCore__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
6007 |
-- Name: COLUMN "viewFullOccurrence_individual"."speciesBinomialWithMorphospecies__@VegCore__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
5970 | 6008 |
-- |
5971 | 6009 |
|
5972 |
COMMENT ON COLUMN analytical_stem."speciesBinomialWithMorphospecies__@VegCore__@vegpath.org" IS 'http://TNRS.taxon_scrub.scrubbed_morphospecies_binomial__@VegBIEN__.public@vegpath.org;
|
|
6010 |
COMMENT ON COLUMN "viewFullOccurrence_individual"."speciesBinomialWithMorphospecies__@VegCore__@vegpath.org" IS 'http://TNRS.taxon_scrub.scrubbed_morphospecies_binomial__@VegBIEN__.public@vegpath.org;
|
|
5973 | 6011 |
"combine the `taxon` plus `morphospecies` to produce a unique string, `taxonMorphospecies`"; |
5974 | 6012 |
a morphospecies is a custom species name assigned in the field by the collector (which does not validate to anything in TNRS)'; |
5975 | 6013 |
|
5976 | 6014 |
|
5977 | 6015 |
-- |
5978 |
-- Name: COLUMN analytical_stem."[growth_form=]habit__@SALVIAS__.Plot_data@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
6016 |
-- Name: COLUMN "viewFullOccurrence_individual"."[growth_form=]habit__@SALVIAS__.Plot_data@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
5979 | 6017 |
-- |
5980 | 6018 |
|
5981 |
COMMENT ON COLUMN analytical_stem."[growth_form=]habit__@SALVIAS__.Plot_data@vegpath.org" IS '"Growth form"; "Closed pick list"';
|
|
6019 |
COMMENT ON COLUMN "viewFullOccurrence_individual"."[growth_form=]habit__@SALVIAS__.Plot_data@vegpath.org" IS '"Growth form"; "Closed pick list"';
|
|
5982 | 6020 |
|
5983 | 6021 |
|
5984 | 6022 |
-- |
5985 |
-- Name: COLUMN analytical_stem."reproductiveCondition__@DwC__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
6023 |
-- Name: COLUMN "viewFullOccurrence_individual"."reproductiveCondition__@DwC__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
5986 | 6024 |
-- |
5987 | 6025 |
|
5988 |
COMMENT ON COLUMN analytical_stem."reproductiveCondition__@DwC__@vegpath.org" IS '"The reproductive condition of the biological individual(s) represented in the Occurrence. Recommended best practice is to use a controlled vocabulary."';
|
|
6026 |
COMMENT ON COLUMN "viewFullOccurrence_individual"."reproductiveCondition__@DwC__@vegpath.org" IS '"The reproductive condition of the biological individual(s) represented in the Occurrence. Recommended best practice is to use a controlled vocabulary."';
|
|
5989 | 6027 |
|
5990 | 6028 |
|
5991 | 6029 |
-- |
5992 |
-- Name: COLUMN analytical_stem.cultivated_bien; Type: COMMENT; Schema: public; Owner: -
|
|
6030 |
-- Name: COLUMN "viewFullOccurrence_individual".cultivated_bien; Type: COMMENT; Schema: public; Owner: -
|
|
5993 | 6031 |
-- |
5994 | 6032 |
|
5995 |
COMMENT ON COLUMN analytical_stem.cultivated_bien IS 'whether the occurrence was flagged as cultivated';
|
|
6033 |
COMMENT ON COLUMN "viewFullOccurrence_individual".cultivated_bien IS 'whether the occurrence was flagged as cultivated';
|
|
5996 | 6034 |
|
5997 | 6035 |
|
5998 | 6036 |
-- |
5999 |
-- Name: COLUMN analytical_stem."cultivatedBasis_bien"; Type: COMMENT; Schema: public; Owner: -
|
|
6037 |
-- Name: COLUMN "viewFullOccurrence_individual"."cultivatedBasis_bien"; Type: COMMENT; Schema: public; Owner: -
|
|
6000 | 6038 |
-- |
6001 | 6039 |
|
6002 |
COMMENT ON COLUMN analytical_stem."cultivatedBasis_bien" IS 'why the occurrence was flagged as cultivated';
|
|
6040 |
COMMENT ON COLUMN "viewFullOccurrence_individual"."cultivatedBasis_bien" IS 'why the occurrence was flagged as cultivated';
|
|
6003 | 6041 |
|
6004 | 6042 |
|
6005 | 6043 |
-- |
6006 |
-- Name: COLUMN analytical_stem."occurrenceRemarks__@DwC__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
6044 |
-- Name: COLUMN "viewFullOccurrence_individual"."occurrenceRemarks__@DwC__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
6007 | 6045 |
-- |
6008 | 6046 |
|
6009 |
COMMENT ON COLUMN analytical_stem."occurrenceRemarks__@DwC__@vegpath.org" IS '"Comments or notes about the Occurrence"';
|
|
6047 |
COMMENT ON COLUMN "viewFullOccurrence_individual"."occurrenceRemarks__@DwC__@vegpath.org" IS '"Comments or notes about the Occurrence"';
|
|
6010 | 6048 |
|
6011 | 6049 |
|
6012 | 6050 |
-- |
6013 |
-- Name: COLUMN analytical_stem."coverPercent__@VegX__.attribute.ordinal@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
6051 |
-- Name: COLUMN "viewFullOccurrence_individual"."coverPercent__@VegX__.attribute.ordinal@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
6014 | 6052 |
-- |
6015 | 6053 |
|
6016 |
COMMENT ON COLUMN analytical_stem."coverPercent__@VegX__.attribute.ordinal@vegpath.org" IS '"Average cover of the index in percent"';
|
|
6054 |
COMMENT ON COLUMN "viewFullOccurrence_individual"."coverPercent__@VegX__.attribute.ordinal@vegpath.org" IS '"Average cover of the index in percent"';
|
|
6017 | 6055 |
|
6018 | 6056 |
|
6019 | 6057 |
-- |
6020 |
-- Name: COLUMN analytical_stem."taxonObservation[.id]__@VegBank__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
6058 |
-- Name: COLUMN "viewFullOccurrence_individual"."taxonObservation[.id]__@VegBank__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
6021 | 6059 |
-- |
6022 | 6060 |
|
6023 |
COMMENT ON COLUMN analytical_stem."taxonObservation[.id]__@VegBank__@vegpath.org" IS '"identifier assigned [by the datasource] to each unique observation of a taxon in a plot"';
|
|
6061 |
COMMENT ON COLUMN "viewFullOccurrence_individual"."taxonObservation[.id]__@VegBank__@vegpath.org" IS '"identifier assigned [by the datasource] to each unique observation of a taxon in a plot"';
|
|
6024 | 6062 |
|
6025 | 6063 |
|
6026 | 6064 |
-- |
6027 |
-- Name: COLUMN analytical_stem."taxonNameUsageConcept.authorCode__@VegX__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
6065 |
-- Name: COLUMN "viewFullOccurrence_individual"."taxonNameUsageConcept.authorCode__@VegX__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
6028 | 6066 |
-- |
6029 | 6067 |
|
6030 |
COMMENT ON COLUMN analytical_stem."taxonNameUsageConcept.authorCode__@VegX__@vegpath.org" IS '"Verbatum short code used by the author to signify the species at time of observation"';
|
|
6068 |
COMMENT ON COLUMN "viewFullOccurrence_individual"."taxonNameUsageConcept.authorCode__@VegX__@vegpath.org" IS '"Verbatum short code used by the author to signify the species at time of observation"';
|
|
6031 | 6069 |
|
6032 | 6070 |
|
6033 | 6071 |
-- |
6034 |
-- Name: COLUMN analytical_stem."aggregateOrganismObservation.id__@VegX__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
6072 |
-- Name: COLUMN "viewFullOccurrence_individual"."aggregateOrganismObservation.id__@VegX__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
6035 | 6073 |
-- |
6036 | 6074 |
|
6037 |
COMMENT ON COLUMN analytical_stem."aggregateOrganismObservation.id__@VegX__@vegpath.org" IS 'the ID for "An observation applying to all occurrences of an organism based on an aggregation factor. It contains an AggregateValue, which is an assessment of the overall occurrence of an organism in a Plot (e.g. number of stems, percentage cover, total biomass, basal area)."';
|
|
6075 |
COMMENT ON COLUMN "viewFullOccurrence_individual"."aggregateOrganismObservation.id__@VegX__@vegpath.org" IS 'the ID for "An observation applying to all occurrences of an organism based on an aggregation factor. It contains an AggregateValue, which is an assessment of the overall occurrence of an organism in a Plot (e.g. number of stems, percentage cover, total biomass, basal area)."';
|
|
6038 | 6076 |
|
6039 | 6077 |
|
6040 | 6078 |
-- |
6041 |
-- Name: COLUMN analytical_stem."individualOrganismObservation.id__@VegX__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
6079 |
-- Name: COLUMN "viewFullOccurrence_individual"."individualOrganismObservation.id__@VegX__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
6042 | 6080 |
-- |
6043 | 6081 |
|
6044 |
COMMENT ON COLUMN analytical_stem."individualOrganismObservation.id__@VegX__@vegpath.org" IS 'the ID for "An observation applying to one occurrence of an organism (or part of an organism). It is a container for measurements made on the organism (e.g. diameter, height, crown dimensions, biomass, growth form, number of stems)."';
|
|
6082 |
COMMENT ON COLUMN "viewFullOccurrence_individual"."individualOrganismObservation.id__@VegX__@vegpath.org" IS 'the ID for "An observation applying to one occurrence of an organism (or part of an organism). It is a container for measurements made on the organism (e.g. diameter, height, crown dimensions, biomass, growth form, number of stems)."';
|
|
6045 | 6083 |
|
6046 | 6084 |
|
6047 | 6085 |
-- |
6048 |
-- Name: COLUMN analytical_stem."individualID__@DwC__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
6086 |
-- Name: COLUMN "viewFullOccurrence_individual"."individualID__@DwC__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
6049 | 6087 |
-- |
6050 | 6088 |
|
6051 |
COMMENT ON COLUMN analytical_stem."individualID__@DwC__@vegpath.org" IS '"An identifier for an individual or named group of individual organisms represented in the Occurrence"';
|
|
6089 |
COMMENT ON COLUMN "viewFullOccurrence_individual"."individualID__@DwC__@vegpath.org" IS '"An identifier for an individual or named group of individual organisms represented in the Occurrence"';
|
|
6052 | 6090 |
|
6053 | 6091 |
|
6054 | 6092 |
-- |
6055 |
-- Name: COLUMN analytical_stem."individualCount__@DwC__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
6093 |
-- Name: COLUMN "viewFullOccurrence_individual"."individualCount__@DwC__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
6056 | 6094 |
-- |
6057 | 6095 |
|
6058 |
COMMENT ON COLUMN analytical_stem."individualCount__@DwC__@vegpath.org" IS '"The number of individuals represented present at the time of the Occurrence"';
|
|
6096 |
COMMENT ON COLUMN "viewFullOccurrence_individual"."individualCount__@DwC__@vegpath.org" IS '"The number of individuals represented present at the time of the Occurrence"';
|
|
6059 | 6097 |
|
6060 | 6098 |
|
6061 | 6099 |
-- |
6062 |
-- Name: COLUMN analytical_stem."stem_dbh[_cm]__@SALVIAS__.Plot_data@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
6100 |
-- Name: COLUMN "viewFullOccurrence_individual"."plantobservation.""_id__@VegBIEN__.public@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
6063 | 6101 |
-- |
6064 | 6102 |
|
6065 |
COMMENT ON COLUMN analytical_stem."stem_dbh[_cm]__@SALVIAS__.Plot_data@vegpath.org" IS '"Diameter at breast height of this stem (usually taken at 1.3 meters, but may vary)"'; |
|
6103 |
COMMENT ON COLUMN "viewFullOccurrence_individual"."plantobservation.""_id__@VegBIEN__.public@vegpath.org" IS 'http://plantobservation.plantobservation_id__@VegBIEN__.public@vegpath.org; |
|
6104 |
autogenerated ID for plantobservation'; |
|
6066 | 6105 |
|
6067 | 6106 |
|
6068 | 6107 |
-- |
6069 |
-- Name: COLUMN analytical_stem."stemHeight[_m]__@VegBank__.stemCount@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
6108 |
-- Name: COLUMN "viewFullOccurrence_individual"."TAXONOBSERVATION_ID__@VegBank__.taxonObservation@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
6070 | 6109 |
-- |
6071 | 6110 |
|
6072 |
COMMENT ON COLUMN analytical_stem."stemHeight[_m]__@VegBank__.stemCount@vegpath.org" IS '"The measured height of the stem in meters"';
|
|
6111 |
COMMENT ON COLUMN "viewFullOccurrence_individual"."TAXONOBSERVATION_ID__@VegBank__.taxonObservation@vegpath.org" IS 'VegBIEN-autogenerated "identifier assigned to each unique observation of a taxon in a plot"';
|
|
6073 | 6112 |
|
6074 | 6113 |
|
6075 | 6114 |
-- |
6076 |
-- Name: COLUMN analytical_stem."[tag=]identificationLabel__@VegX__.individual@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
6115 |
-- Name: analytical_stem_view; Type: VIEW; Schema: public; Owner: -
|
|
6077 | 6116 |
-- |
6078 | 6117 |
|
6079 |
COMMENT ON COLUMN analytical_stem."[tag=]identificationLabel__@VegX__.individual@vegpath.org" IS '"A label that is associated with an individual (e.g. a numerical tree tag)"'; |
|
6118 |
CREATE VIEW analytical_stem_view AS |
|
6119 |
SELECT "viewFullOccurrence_individual"."datasource__@Brad__.identifier_examples@vegpath.org", |
|
6120 |
"viewFullOccurrence_individual"."country__@DwC__@vegpath.org", |
|
6121 |
"viewFullOccurrence_individual"."stateProvince__@DwC__@vegpath.org", |
|
6122 |
"viewFullOccurrence_individual"."county__@DwC__@vegpath.org", |
|
6123 |
"viewFullOccurrence_individual"."locality__@DwC__@vegpath.org", |
|
6124 |
"viewFullOccurrence_individual"."decimalLatitude__@DwC__@vegpath.org", |
|
6125 |
"viewFullOccurrence_individual"."decimalLongitude__@DwC__@vegpath.org", |
|
6126 |
"viewFullOccurrence_individual"."coordinateUncertaintyInMeters__@DwC__@vegpath.org", |
|
6127 |
"viewFullOccurrence_individual"."georeferenceSources__@DwC__@vegpath.org", |
|
6128 |
"viewFullOccurrence_individual"."georeferenceProtocol__@DwC__@vegpath.org", |
|
6129 |
"viewFullOccurrence_individual".geovalid_bien, |
|
6130 |
"viewFullOccurrence_individual"."isNewWorld_bien", |
|
6131 |
"viewFullOccurrence_individual"."projectID__@VegX__.plotObservation@vegpath.org", |
|
6132 |
"viewFullOccurrence_individual"."projectContributor[s]__@VegBank__@vegpath.org", |
|
6133 |
"viewFullOccurrence_individual"."locationID__@DwC__@vegpath.org", |
|
6134 |
"viewFullOccurrence_individual"."plotName__@VegX__.plot@vegpath.org", |
|
6135 |
"viewFullOccurrence_individual"."subplot__@SALVIAS__.Plot_data@vegpath.org", |
|
6136 |
"viewFullOccurrence_individual".location__cultivated__bien, |
|
6137 |
"viewFullOccurrence_individual"."locationevent.locationevent_id__@VegBIEN__.public@vegpath.org", |
|
6138 |
"viewFullOccurrence_individual"."eventDate__@DwC__@vegpath.org", |
|
6139 |
"viewFullOccurrence_individual"."(-minimum-)ElevationInMeters__@DwC__@vegpath.org", |
|
6140 |
"viewFullOccurrence_individual"."slopeAspect[_deg]__@VegX__.plot@vegpath.org", |
|
6141 |
"viewFullOccurrence_individual"."slopeGradient[_deg]__@VegX__.plot@vegpath.org", |
|
6142 |
"viewFullOccurrence_individual"."plot.area[_ha]__@VegX__@vegpath.org", |
|
6143 |
"viewFullOccurrence_individual"."samplingProtocol__@DwC__@vegpath.org", |
|
6144 |
"viewFullOccurrence_individual"."temperature[_C]__@VegX__.plotObs.obsCond@vegpath.org", |
|
6145 |
"viewFullOccurrence_individual"."precip_mm__@SALVIAS__.Plot_metadata@vegpath.org", |
|
6146 |
"viewFullOccurrence_individual"."stratumName__@VegX__.stratum@vegpath.org", |
|
6147 |
"viewFullOccurrence_individual"."communityConcept.name__@VegX__.communityDet@vegpath.org", |
|
6148 |
"viewFullOccurrence_individual"."observationContributor[s]__@VegBank__@vegpath.org", |
|
6149 |
"viewFullOccurrence_individual"."[custodial_]institutionCode[s]__@DwC__@vegpath.org", |
|
6150 |
"viewFullOccurrence_individual"."collectionCode__@DwC__@vegpath.org", |
|
6151 |
"viewFullOccurrence_individual"."catalogNumber__@DwC__@vegpath.org", |
|
6152 |
"viewFullOccurrence_individual"."occurrenceID__@DwC__@vegpath.org", |
|
6153 |
"viewFullOccurrence_individual"."recordedBy__@DwC__@vegpath.org", |
|
6154 |
"viewFullOccurrence_individual"."recordNumber__@DwC__@vegpath.org", |
|
6155 |
"viewFullOccurrence_individual"."(-Earliest-)DateCollected__-2007-04-17__@DwC__.hist@vegpath.org", |
|
6156 |
"viewFullOccurrence_individual"."[verbatim_]family__@DwC__@vegpath.org", |
|
6157 |
"viewFullOccurrence_individual"."[verbatim_]scientificName__@DwC__@vegpath.org", |
|
6158 |
"viewFullOccurrence_individual"."identifiedBy__@DwC__@vegpath.org", |
|
6159 |
"viewFullOccurrence_individual"."dateIdentified__@DwC__@vegpath.org", |
|
6160 |
"viewFullOccurrence_individual"."identificationRemarks__@DwC__@vegpath.org", |
|
6161 |
"viewFullOccurrence_individual"."Family_matched__@TNRS__@vegpath.org", |
|
6162 |
"viewFullOccurrence_individual"."Name_matched__@TNRS__@vegpath.org", |
|
6163 |
"viewFullOccurrence_individual"."Name_matched_author__@TNRS__@vegpath.org", |
|
6164 |
"viewFullOccurrence_individual"."[higher_plant_group~]higherClassification__@DwC__@vegpath.org", |
|
6165 |
"viewFullOccurrence_individual"."taxonomicStatus__@DwC__@vegpath.org", |
|
6166 |
"viewFullOccurrence_individual".scrubbed_family, |
|
6167 |
"viewFullOccurrence_individual".scrubbed_genus, |
|
6168 |
"viewFullOccurrence_individual".scrubbed_specific_epithet, |
|
6169 |
"viewFullOccurrence_individual".scrubbed_species_binomial, |
|
6170 |
"viewFullOccurrence_individual".scrubbed_taxon_name_no_author, |
|
6171 |
"viewFullOccurrence_individual".scrubbed_author, |
|
6172 |
"viewFullOccurrence_individual".scrubbed_taxon_name_with_author, |
|
6173 |
"viewFullOccurrence_individual"."speciesBinomialWithMorphospecies__@VegCore__@vegpath.org", |
|
6174 |
"viewFullOccurrence_individual"."[growth_form=]habit__@SALVIAS__.Plot_data@vegpath.org", |
|
6175 |
"viewFullOccurrence_individual"."reproductiveCondition__@DwC__@vegpath.org", |
|
6176 |
"viewFullOccurrence_individual".cultivated_bien, |
|
6177 |
"viewFullOccurrence_individual"."cultivatedBasis_bien", |
|
6178 |
"viewFullOccurrence_individual"."occurrenceRemarks__@DwC__@vegpath.org", |
|
6179 |
"viewFullOccurrence_individual"."coverPercent__@VegX__.attribute.ordinal@vegpath.org", |
|
6180 |
"viewFullOccurrence_individual"."taxonObservation[.id]__@VegBank__@vegpath.org", |
|
6181 |
"viewFullOccurrence_individual"."taxonNameUsageConcept.authorCode__@VegX__@vegpath.org", |
|
6182 |
"viewFullOccurrence_individual"."aggregateOrganismObservation.id__@VegX__@vegpath.org", |
|
6183 |
"viewFullOccurrence_individual"."individualOrganismObservation.id__@VegX__@vegpath.org", |
|
6184 |
"viewFullOccurrence_individual"."individualID__@DwC__@vegpath.org", |
|
6185 |
"viewFullOccurrence_individual"."individualCount__@DwC__@vegpath.org", |
|
6186 |
"viewFullOccurrence_individual"."plantobservation.""_id__@VegBIEN__.public@vegpath.org", |
|
6187 |
"viewFullOccurrence_individual"."TAXONOBSERVATION_ID__@VegBank__.taxonObservation@vegpath.org", |
|
6188 |
_m_to_cm(stemobservation.diameterbreastheight_m) AS "stem_dbh[_cm]__@SALVIAS__.Plot_data@vegpath.org", |
|
6189 |
stemobservation.height_m AS "stemHeight[_m]__@VegBank__.stemCount@vegpath.org", |
|
6190 |
stemobservation.tag AS "[tag=]identificationLabel__@VegX__.individual@vegpath.org", |
|
6191 |
stemobservation.xposition_m AS "relativeX[_m]__@VegX__.individualOrganismObs@vegpath.org", |
|
6192 |
stemobservation.yposition_m AS "relativeY[_m]__@VegX__.individualOrganismObs@vegpath.org", |
|
6193 |
stemobservation.authorstemcode AS "stemCode__@VegBank__.stemLocation@vegpath.org" |
|
6194 |
FROM ("viewFullOccurrence_individual" |
|
6195 |
LEFT JOIN stemobservation ON ((stemobservation.plantobservation_id = "viewFullOccurrence_individual"."plantobservation.""_id__@VegBIEN__.public@vegpath.org"))); |
|
6080 | 6196 |
|
6081 | 6197 |
|
6082 | 6198 |
-- |
6083 |
-- Name: COLUMN analytical_stem."relativeX[_m]__@VegX__.individualOrganismObs@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
6199 |
-- Name: VIEW analytical_stem_view; Type: COMMENT; Schema: public; Owner: -
|
|
6084 | 6200 |
-- |
6085 | 6201 |
|
6086 |
COMMENT ON COLUMN analytical_stem."relativeX[_m]__@VegX__.individualOrganismObs@vegpath.org" IS '"The X-coordinate of the related item position in m. The user will enter the relative position of related item with respect to the plot origin (in meters) with the x-axis defined by the plot azimuth."'; |
|
6202 |
COMMENT ON VIEW analytical_stem_view IS ' |
|
6203 |
after updating this: |
|
6204 |
SELECT analytical_stem_view_modify() |
|
6205 |
add applicable columns to analytical_specimen, analytical_plot |
|
6206 |
'; |
|
6087 | 6207 |
|
6088 | 6208 |
|
6089 | 6209 |
-- |
6090 |
-- Name: COLUMN analytical_stem."relativeY[_m]__@VegX__.individualOrganismObs@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
6210 |
-- Name: COLUMN analytical_stem_view."datasource__@Brad__.identifier_examples@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
6091 | 6211 |
-- |
6092 | 6212 |
|
6093 |
COMMENT ON COLUMN analytical_stem."relativeY[_m]__@VegX__.individualOrganismObs@vegpath.org" IS '"The Y-coordinate of the relatedSpatialItem position in m. The user will enter the relative position of relatedSpatialItems with respect to the plot origin (in meters) with the y-axis defined by the plot azimuth."';
|
|
6213 |
COMMENT ON COLUMN analytical_stem_view."datasource__@Brad__.identifier_examples@vegpath.org" IS '"the person [or] institution that provided the data [to this database] (the *proximate* data provider)"';
|
|
6094 | 6214 |
|
6095 | 6215 |
|
6096 | 6216 |
-- |
6097 |
-- Name: COLUMN analytical_stem."stemCode__@VegBank__.stemLocation@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
6217 |
-- Name: COLUMN analytical_stem_view."country__@DwC__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
6098 | 6218 |
-- |
6099 | 6219 |
|
6100 |
COMMENT ON COLUMN analytical_stem."stemCode__@VegBank__.stemLocation@vegpath.org" IS 'http://stemobservation.authorstemcode__@VegBIEN__.public@vegpath.org;
|
|
6101 |
"Name or code applied to a specific stem in the plot. This is generally a numeric label to associate a field data entry with a stem in the database."';
|
|
6220 |
COMMENT ON COLUMN analytical_stem_view."country__@DwC__@vegpath.org" IS 'http://geoscrub.geoscrub_output.acceptedCountry__@VegBIEN__@vegpath.org;
|
|
6221 |
"The name of the country or major administrative unit in which the Location occurs"';
|
|
6102 | 6222 |
|
6103 | 6223 |
|
6104 | 6224 |
-- |
6105 |
-- Name: COLUMN analytical_stem."TAXONOBSERVATION_ID__@VegBank__.taxonObservation@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
6225 |
-- Name: COLUMN analytical_stem_view."stateProvince__@DwC__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
6106 | 6226 |
-- |
6107 | 6227 |
|
6108 |
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"';
|
|
6228 |
COMMENT ON COLUMN analytical_stem_view."stateProvince__@DwC__@vegpath.org" IS '"The name of the next smaller administrative region than country (state, province, canton, department, region, etc.) in which the Location occurs"';
|
|
6109 | 6229 |
|
6110 | 6230 |
|
6111 | 6231 |
-- |
6112 |
-- Name: 2013-10-18.Brian_Enquist.Canadensys; Type: VIEW; Schema: public; Owner: -
|
|
6232 |
-- Name: COLUMN analytical_stem_view."county__@DwC__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
6113 | 6233 |
-- |
6114 | 6234 |
|
6115 |
CREATE VIEW "2013-10-18.Brian_Enquist.Canadensys" AS |
|
6116 |
SELECT analytical_stem."speciesBinomialWithMorphospecies__@VegCore__@vegpath.org" AS species, |
|
6117 |
analytical_stem."decimalLatitude__@DwC__@vegpath.org" AS latitude__deg, |
|
6118 |
analytical_stem."decimalLongitude__@DwC__@vegpath.org" AS longitude__deg, |
|
6119 |
analytical_stem."coordinateUncertaintyInMeters__@DwC__@vegpath.org" AS coords__uncertainty__m |
|
6120 |
FROM analytical_stem |
|
6121 |
WHERE (((((analytical_stem."speciesBinomialWithMorphospecies__@VegCore__@vegpath.org" = ANY (ARRAY['Juniperus scopulorum'::text, 'Picea engelmannii'::text, 'Pinus contorta'::text, 'Pinus edulis'::text, 'Pinus ponderosa'::text, 'Populus tremuloides'::text, 'Pseudotsuga menziesii'::text, 'Quercus gambelii'::text])) AND (NOT COALESCE((analytical_stem.cultivated_bien)::boolean, false))) AND COALESCE((analytical_stem.geovalid_bien)::boolean, true)) AND (analytical_stem."decimalLatitude__@DwC__@vegpath.org" IS NOT NULL)) AND (analytical_stem."decimalLongitude__@DwC__@vegpath.org" IS NOT NULL)) |
|
6122 |
ORDER BY analytical_stem."speciesBinomialWithMorphospecies__@VegCore__@vegpath.org"; |
|
6235 |
COMMENT ON COLUMN analytical_stem_view."county__@DwC__@vegpath.org" IS '"The full, unabbreviated name of the next smaller administrative region than stateProvince (county, shire, department, etc.) in which the Location occurs"'; |
|
6123 | 6236 |
|
6124 | 6237 |
|
6125 | 6238 |
-- |
6126 |
-- Name: 2013-7-10.Naia.range_limiting_factors; Type: VIEW; Schema: public; Owner: -
|
|
6239 |
-- Name: COLUMN analytical_stem_view."locality__@DwC__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
6127 | 6240 |
-- |
6128 | 6241 |
|
6129 |
CREATE VIEW "2013-7-10.Naia.range_limiting_factors" AS |
|
6130 |
SELECT analytical_stem."TAXONOBSERVATION_ID__@VegBank__.taxonObservation@vegpath.org" AS occurrence_id, |
|
6131 |
analytical_stem."speciesBinomialWithMorphospecies__@VegCore__@vegpath.org" AS species, |
|
6132 |
analytical_stem."decimalLatitude__@DwC__@vegpath.org" AS latitude__deg, |
|
6133 |
analytical_stem."decimalLongitude__@DwC__@vegpath.org" AS longitude__deg |
|
6134 |
FROM analytical_stem |
|
6135 |
WHERE ((((((NOT COALESCE((analytical_stem.cultivated_bien)::boolean, false)) AND COALESCE((analytical_stem.geovalid_bien)::boolean, true)) AND (analytical_stem."speciesBinomialWithMorphospecies__@VegCore__@vegpath.org" IS NOT NULL)) AND (analytical_stem."decimalLatitude__@DwC__@vegpath.org" IS NOT NULL)) AND (analytical_stem."decimalLongitude__@DwC__@vegpath.org" IS NOT NULL)) AND COALESCE((analytical_stem."coordinateUncertaintyInMeters__@DwC__@vegpath.org" <= _km_to_m((10)::double precision)), true)); |
|
6242 |
COMMENT ON COLUMN analytical_stem_view."locality__@DwC__@vegpath.org" IS '"The specific description of the place"'; |
|
6136 | 6243 |
|
6137 | 6244 |
|
6138 | 6245 |
-- |
6139 |
-- Name: 2014-3-11.Jeff_Ott.climatic_range_determinants; Type: VIEW; Schema: public; Owner: -
|
|
6246 |
-- Name: COLUMN analytical_stem_view."decimalLatitude__@DwC__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
6140 | 6247 |
-- |
6141 | 6248 |
|
6142 |
CREATE VIEW "2014-3-11.Jeff_Ott.climatic_range_determinants" AS |
|
6143 |
SELECT analytical_stem."datasource__@Brad__.identifier_examples@vegpath.org" AS datasource, |
|
6144 |
analytical_stem."decimalLatitude__@DwC__@vegpath.org" AS "decimalLatitude", |
|
6145 |
analytical_stem."decimalLongitude__@DwC__@vegpath.org" AS "decimalLongitude", |
|
6146 |
analytical_stem."[higher_plant_group~]higherClassification__@DwC__@vegpath.org" AS "higherPlantGroup", |
|
6147 |
analytical_stem.scrubbed_family AS family, |
|
6148 |
analytical_stem.scrubbed_genus AS genus, |
|
6149 |
analytical_stem.scrubbed_species_binomial AS "speciesBinomial", |
|
6150 |
analytical_stem.scrubbed_taxon_name_with_author AS "scientificName" |
|
6151 |
FROM analytical_stem |
|
6152 |
WHERE (((((COALESCE((analytical_stem.geovalid_bien)::boolean, true) AND COALESCE((analytical_stem."isNewWorld_bien")::boolean, false)) AND (NOT COALESCE((analytical_stem.cultivated_bien)::boolean, false))) AND (analytical_stem.scrubbed_taxon_name_with_author IS NOT NULL)) AND (analytical_stem."decimalLatitude__@DwC__@vegpath.org" IS NOT NULL)) AND (analytical_stem."decimalLongitude__@DwC__@vegpath.org" IS NOT NULL)); |
|
6249 |
COMMENT ON COLUMN analytical_stem_view."decimalLatitude__@DwC__@vegpath.org" IS '"The geographic latitude (in decimal degrees, using the spatial reference system given in geodeticDatum) of the geographic center of a Location"'; |
|
6153 | 6250 |
|
6154 | 6251 |
|
6155 | 6252 |
-- |
6156 |
-- Name: 2014-6-12.Jeff_Ott.climatic_range_determinants; Type: VIEW; Schema: public; Owner: -
|
|
6253 |
-- Name: COLUMN analytical_stem_view."decimalLongitude__@DwC__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
6157 | 6254 |
-- |
6158 | 6255 |
|
6159 |
CREATE VIEW "2014-6-12.Jeff_Ott.climatic_range_determinants" AS |
|
6160 |
SELECT analytical_stem."datasource__@Brad__.identifier_examples@vegpath.org" AS datasource, |
|
6161 |
analytical_stem."decimalLatitude__@DwC__@vegpath.org" AS "decimalLatitude", |
|
6162 |
analytical_stem."decimalLongitude__@DwC__@vegpath.org" AS "decimalLongitude", |
|
6163 |
analytical_stem."coordinateUncertaintyInMeters__@DwC__@vegpath.org" AS "coordinateUncertaintyInMeters", |
|
6164 |
analytical_stem.geovalid_bien, |
|
6165 |
analytical_stem."(-Earliest-)DateCollected__-2007-04-17__@DwC__.hist@vegpath.org" AS "dateCollected", |
|
6166 |
analytical_stem."[higher_plant_group~]higherClassification__@DwC__@vegpath.org" AS "higherPlantGroup", |
|
6167 |
analytical_stem.scrubbed_family AS family, |
|
6168 |
analytical_stem.scrubbed_genus AS genus, |
|
6169 |
analytical_stem.scrubbed_species_binomial AS "speciesBinomial", |
|
6170 |
analytical_stem.scrubbed_taxon_name_with_author AS "scientificName" |
|
6171 |
FROM analytical_stem |
|
6172 |
WHERE ((((((COALESCE((analytical_stem.geovalid_bien)::boolean, true) AND (COALESCE((analytical_stem."isNewWorld_bien")::boolean, false) OR in_new_world(analytical_stem."decimalLatitude__@DwC__@vegpath.org", analytical_stem."decimalLongitude__@DwC__@vegpath.org"))) AND (NOT COALESCE((analytical_stem.cultivated_bien)::boolean, false))) AND (analytical_stem.scrubbed_family IS NOT NULL)) AND (analytical_stem."decimalLatitude__@DwC__@vegpath.org" IS NOT NULL)) AND (analytical_stem."decimalLongitude__@DwC__@vegpath.org" IS NOT NULL)) AND COALESCE((analytical_stem."coordinateUncertaintyInMeters__@DwC__@vegpath.org" <= _km_to_m((10)::double precision)), true)); |
|
6256 |
COMMENT ON COLUMN analytical_stem_view."decimalLongitude__@DwC__@vegpath.org" IS '"The geographic longitude (in decimal degrees, using the spatial reference system given in geodeticDatum) of the geographic center of a Location"'; |
|
6173 | 6257 |
|
6174 | 6258 |
|
6175 | 6259 |
-- |
6176 |
-- Name: iucn_red_list; Type: TABLE; Schema: public; Owner: -; Tablespace:
|
|
6260 |
-- Name: COLUMN analytical_stem_view."coordinateUncertaintyInMeters__@DwC__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
6177 | 6261 |
-- |
6178 | 6262 |
|
6179 |
CREATE TABLE iucn_red_list ( |
|
6180 |
accepted_family text NOT NULL, |
|
6181 |
accepted_species_binomial text NOT NULL |
|
6182 |
); |
|
6263 |
COMMENT ON COLUMN analytical_stem_view."coordinateUncertaintyInMeters__@DwC__@vegpath.org" IS 'for a point observation, this is the fuzziness of the coordinates. for a plot (or other shape), this is the radius of the circle that circumscribes the entire plot, or the fuzziness, whichever is greater. note that the DwC definition is confusingly worded: it uses the ambiguous term Location, which sometimes refers to the asserted named place, but which they intended to refer to the plot or point.'; |
|
6183 | 6264 |
|
6184 | 6265 |
|
6185 | 6266 |
-- |
6186 |
-- Name: source; Type: TABLE; Schema: public; Owner: -; Tablespace:
|
|
6267 |
-- Name: COLUMN analytical_stem_view."georeferenceSources__@DwC__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
6187 | 6268 |
-- |
6188 | 6269 |
|
6189 |
CREATE TABLE source ( |
|
6190 |
source_id integer NOT NULL, |
|
6191 |
matched_source_id integer, |
|
6192 |
parent_id integer, |
|
6193 |
shortname text NOT NULL, |
|
6194 |
citation text, |
|
6195 |
sourcetype sourcetype, |
|
6196 |
accesslevel accesslevel, |
|
6197 |
accessconditions text, |
|
6198 |
observationtype observationtype, |
|
6199 |
title text, |
|
6200 |
titlesuperior text, |
|
6201 |
volume text, |
|
6202 |
issue text, |
|
6203 |
pagerange text, |
|
6204 |
totalpages integer, |
|
6205 |
publisher text, |
|
6206 |
publicationplace text, |
|
6207 |
isbn text, |
|
6208 |
edition text, |
|
6209 |
numberofvolumes integer, |
|
6210 |
chapternumber integer, |
|
6211 |
reportnumber integer, |
|
6212 |
communicationtype text, |
|
6213 |
degree text, |
|
6214 |
url text, |
|
6215 |
doi text, |
|
6216 |
additionalinfo text, |
|
6217 |
pubdate date, |
|
6218 |
accessdate date, |
|
6219 |
conferencedate date, |
|
6220 |
datecreated date DEFAULT now() NOT NULL, |
|
6221 |
createdby text, |
|
6222 |
datelastmodified date DEFAULT now() NOT NULL, |
|
6223 |
lastmodifiedby text, |
|
6224 |
import_revision text |
|
6225 |
); |
|
6270 |
COMMENT ON COLUMN analytical_stem_view."georeferenceSources__@DwC__@vegpath.org" IS '"A list (concatenated and separated) of maps, gazetteers, or other resources used to georeference the Location, described specifically enough to allow anyone in the future to use the same resources"'; |
|
6226 | 6271 |
|
6227 | 6272 |
|
6228 | 6273 |
-- |
6229 |
-- Name: 2014-6-4.Iara_Lacher.reserve_prioritization; Type: VIEW; Schema: public; Owner: -
|
|
6274 |
-- Name: COLUMN analytical_stem_view."georeferenceProtocol__@DwC__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
6230 | 6275 |
-- |
6231 | 6276 |
|
6232 |
CREATE VIEW "2014-6-4.Iara_Lacher.reserve_prioritization" AS |
|
6233 |
SELECT analytical_stem."country__@DwC__@vegpath.org" AS country, |
|
6234 |
analytical_stem."decimalLatitude__@DwC__@vegpath.org" AS "decimalLatitude", |
|
6235 |
analytical_stem."decimalLongitude__@DwC__@vegpath.org" AS "decimalLongitude", |
|
6236 |
analytical_stem."(-Earliest-)DateCollected__-2007-04-17__@DwC__.hist@vegpath.org" AS "dateCollected", |
|
6237 |
source.observationtype AS collection_type, |
|
6238 |
COALESCE(analytical_stem."[custodial_]institutionCode[s]__@DwC__@vegpath.org", analytical_stem."datasource__@Brad__.identifier_examples@vegpath.org") AS orig_datasource, |
|
6239 |
analytical_stem.scrubbed_family AS accepted_family, |
|
6240 |
analytical_stem.scrubbed_genus AS accepted_genus, |
|
6241 |
analytical_stem.scrubbed_species_binomial AS accepted_species_binomial, |
|
6242 |
subspecies(analytical_stem.scrubbed_taxon_name_no_author) AS accepted_subspecies, |
|
6243 |
analytical_stem."stem_dbh[_cm]__@SALVIAS__.Plot_data@vegpath.org" AS dbh_cm, |
|
6244 |
analytical_stem."stemHeight[_m]__@VegBank__.stemCount@vegpath.org" AS height_m, |
|
6245 |
analytical_stem."[growth_form=]habit__@SALVIAS__.Plot_data@vegpath.org" AS lifeform, |
|
6246 |
(iucn_red_list.accepted_family IS NOT NULL) AS is_threatened_iucn |
|
6247 |
FROM ((analytical_stem |
|
6248 |
LEFT JOIN source ON ((source.shortname = analytical_stem."datasource__@Brad__.identifier_examples@vegpath.org"))) |
|
6249 |
LEFT JOIN iucn_red_list ON (((iucn_red_list.accepted_family = analytical_stem.scrubbed_family) AND (iucn_red_list.accepted_species_binomial = analytical_stem.scrubbed_species_binomial)))) |
|
6250 |
WHERE (((((COALESCE((analytical_stem.geovalid_bien)::boolean, true) AND (NOT COALESCE((analytical_stem.cultivated_bien)::boolean, false))) AND (analytical_stem."decimalLatitude__@DwC__@vegpath.org" IS NOT NULL)) AND (analytical_stem."decimalLongitude__@DwC__@vegpath.org" IS NOT NULL)) AND in_south_america(analytical_stem."decimalLatitude__@DwC__@vegpath.org", analytical_stem."decimalLongitude__@DwC__@vegpath.org")) AND COALESCE((analytical_stem."taxonomicStatus__@DwC__@vegpath.org" = 'accepted'::text), false)); |
|
6277 |
COMMENT ON COLUMN analytical_stem_view."georeferenceProtocol__@DwC__@vegpath.org" IS '"A description or reference to the methods used to determine the spatial footprint, coordinates, and uncertainties"'; |
|
6251 | 6278 |
|
6252 | 6279 |
|
6253 | 6280 |
-- |
6254 |
-- Name: address; Type: TABLE; Schema: public; Owner: -; Tablespace:
|
|
6281 |
-- Name: COLUMN analytical_stem_view.geovalid_bien; Type: COMMENT; Schema: public; Owner: -
|
|
6255 | 6282 |
-- |
6256 | 6283 |
|
6257 |
CREATE TABLE address ( |
|
6258 |
address_id integer NOT NULL, |
|
6259 |
party_id integer NOT NULL, |
|
6260 |
organization_id integer, |
|
6261 |
orgposition text, |
|
6262 |
email text, |
|
6263 |
street text, |
|
6264 |
street2 text, |
|
6265 |
city text, |
|
6266 |
stateprovince text, |
|
6267 |
postalcode text, |
|
6268 |
country text, |
|
6269 |
currentflag boolean, |
|
6270 |
addressstartdate date |
|
6271 |
); |
|
6284 |
COMMENT ON COLUMN analytical_stem_view.geovalid_bien IS 'whether the coordinates are within the boundary of the asserted named places'; |
|
6272 | 6285 |
|
6273 | 6286 |
|
6274 | 6287 |
-- |
6275 |
-- Name: address_address_id_seq; Type: SEQUENCE; Schema: public; Owner: -
|
|
6288 |
-- Name: COLUMN analytical_stem_view."isNewWorld_bien"; Type: COMMENT; Schema: public; Owner: -
|
|
6276 | 6289 |
-- |
6277 | 6290 |
|
6278 |
CREATE SEQUENCE address_address_id_seq |
|
6279 |
START WITH 1 |
|
6280 |
INCREMENT BY 1 |
|
6281 |
NO MINVALUE |
|
6282 |
NO MAXVALUE |
|
6283 |
CACHE 1; |
|
6291 |
COMMENT ON COLUMN analytical_stem_view."isNewWorld_bien" IS 'whether the country is in the Americas'; |
|
6284 | 6292 |
|
6285 | 6293 |
|
6286 | 6294 |
-- |
6287 |
-- Name: address_address_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
|
|
6295 |
-- Name: COLUMN analytical_stem_view."projectID__@VegX__.plotObservation@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
6288 | 6296 |
-- |
6289 | 6297 |
|
6290 |
ALTER SEQUENCE address_address_id_seq OWNED BY address.address_id; |
|
6298 |
COMMENT ON COLUMN analytical_stem_view."projectID__@VegX__.plotObservation@vegpath.org" IS 'http://project.sourceaccessioncode__@VegBIEN__.public@vegpath.org; |
|
6299 |
"A reference to a specific ''project''"'; |
|
6291 | 6300 |
|
6292 | 6301 |
|
6293 | 6302 |
-- |
6294 |
-- Name: aggregateoccurrence; Type: TABLE; Schema: public; Owner: -; Tablespace:
|
|
6303 |
-- Name: COLUMN analytical_stem_view."projectContributor[s]__@VegBank__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
6295 | 6304 |
-- |
6296 | 6305 |
|
6297 |
CREATE TABLE aggregateoccurrence ( |
|
6298 |
aggregateoccurrence_id integer NOT NULL, |
|
6299 |
source_id integer NOT NULL, |
|
6300 |
sourceaccessioncode text, |
|
6301 |
taxonoccurrence_id integer, |
|
6302 |
collectiondate date, |
|
6303 |
cover_fraction double precision, |
|
6304 |
linecover_m double precision, |
|
6305 |
basalarea_m2 double precision, |
|
6306 |
biomass_kg_m2 double precision, |
|
6307 |
inferencearea_m2 double precision, |
|
6308 |
count integer, |
|
6309 |
stratum_id integer, |
|
6310 |
coverindex_id integer, |
|
6311 |
occurrencestatus_dwc occurrencestatus_dwc DEFAULT 'present'::occurrencestatus_dwc NOT NULL, |
|
6312 |
method_id integer, |
|
6313 |
notes text, |
|
6314 |
CONSTRAINT aggregateoccurrence_required_key CHECK (((sourceaccessioncode IS NOT NULL) OR (taxonoccurrence_id IS NOT NULL))) |
|
6315 |
); |
|
6306 |
COMMENT ON COLUMN analytical_stem_view."projectContributor[s]__@VegBank__@vegpath.org" IS '"intersection entit[ies] used to ''link'' a party with a specific project wherein vegetation plots are described"'; |
|
6316 | 6307 |
|
6317 | 6308 |
|
6318 | 6309 |
-- |
6319 |
-- Name: TABLE aggregateoccurrence; Type: COMMENT; Schema: public; Owner: -
|
|
6310 |
-- Name: COLUMN analytical_stem_view."locationID__@DwC__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
6320 | 6311 |
-- |
6321 | 6312 |
|
6322 |
COMMENT ON TABLE aggregateoccurrence IS ' |
|
6323 |
Equivalent to VegBank''s taxonimportance table. |
|
6324 |
'; |
|
6313 |
COMMENT ON COLUMN analytical_stem_view."locationID__@DwC__@vegpath.org" IS '"An identifier for the set of location information (data associated with dcterms:Location)"'; |
|
6325 | 6314 |
|
6326 | 6315 |
|
6327 | 6316 |
-- |
6328 |
-- Name: COLUMN aggregateoccurrence.linecover_m; Type: COMMENT; Schema: public; Owner: -
|
|
6317 |
-- Name: COLUMN analytical_stem_view."plotName__@VegX__.plot@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
6329 | 6318 |
-- |
6330 | 6319 |
|
6331 |
COMMENT ON COLUMN aggregateoccurrence.linecover_m IS ' |
|
6332 |
The distance in m along which this occurrence intercepts a line subplot. |
|
6333 |
'; |
|
6320 |
COMMENT ON COLUMN analytical_stem_view."plotName__@VegX__.plot@vegpath.org" IS '"Name or label for a plot"'; |
|
6334 | 6321 |
|
6335 | 6322 |
|
6336 | 6323 |
-- |
6337 |
-- Name: COLUMN aggregateoccurrence.occurrencestatus_dwc; Type: COMMENT; Schema: public; Owner: -
|
|
6324 |
-- Name: COLUMN analytical_stem_view."subplot__@SALVIAS__.Plot_data@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
6338 | 6325 |
-- |
6339 | 6326 |
|
6340 |
COMMENT ON COLUMN aggregateoccurrence.occurrencestatus_dwc IS ' |
|
6341 |
The extent to which the taxon is present. See <http://code.google.com/p/darwincore/wiki/Occurrence#occurrenceStatus>. |
|
6342 |
'; |
|
6327 |
COMMENT ON COLUMN analytical_stem_view."subplot__@SALVIAS__.Plot_data@vegpath.org" IS 'http://location.authorlocationcode__@VegBIEN__.public@vegpath.org; |
|
6328 |
"Code for subplot, line, or any other subsample or subdivision of plot"'; |
|
6343 | 6329 |
|
6344 | 6330 |
|
6345 | 6331 |
-- |
6346 |
-- Name: aggregateoccurrence_aggregateoccurrence_id_seq; Type: SEQUENCE; Schema: public; Owner: -
|
|
6332 |
-- Name: COLUMN analytical_stem_view.location__cultivated__bien; Type: COMMENT; Schema: public; Owner: -
|
|
6347 | 6333 |
-- |
6348 | 6334 |
|
6349 |
CREATE SEQUENCE aggregateoccurrence_aggregateoccurrence_id_seq |
|
6350 |
START WITH 1 |
|
6351 |
INCREMENT BY 1 |
|
6352 |
NO MINVALUE |
|
6353 |
NO MAXVALUE |
|
6354 |
CACHE 1; |
|
6335 |
COMMENT ON COLUMN analytical_stem_view.location__cultivated__bien IS 'whether the occurrence''s *location* was flagged as cultivated. note that this refers just to the cultivated status of the *location*; the occurrence may be cultivated even if the location isn''t.'; |
|
6355 | 6336 |
|
6356 | 6337 |
|
6357 | 6338 |
-- |
6358 |
-- Name: aggregateoccurrence_aggregateoccurrence_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
|
|
6339 |
-- Name: COLUMN analytical_stem_view."locationevent.locationevent_id__@VegBIEN__.public@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
6359 | 6340 |
-- |
6360 | 6341 |
|
6361 |
ALTER SEQUENCE aggregateoccurrence_aggregateoccurrence_id_seq OWNED BY aggregateoccurrence.aggregateoccurrence_id; |
|
6342 |
COMMENT ON COLUMN analytical_stem_view."locationevent.locationevent_id__@VegBIEN__.public@vegpath.org" IS 'http://locationevent.locationevent_id__@VegBIEN__.public@vegpath.org; |
|
6343 |
autogenerated ID for locationevent'; |
|
6362 | 6344 |
|
6363 | 6345 |
|
6364 | 6346 |
-- |
6365 |
-- Name: analytical_plot; Type: VIEW; Schema: public; Owner: -
|
|
6347 |
-- Name: COLUMN analytical_stem_view."eventDate__@DwC__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
6366 | 6348 |
-- |
6367 | 6349 |
|
6368 |
CREATE VIEW analytical_plot AS |
|
6369 |
SELECT analytical_stem."datasource__@Brad__.identifier_examples@vegpath.org", |
|
6370 |
analytical_stem."country__@DwC__@vegpath.org", |
|
6371 |
analytical_stem."stateProvince__@DwC__@vegpath.org", |
|
6372 |
analytical_stem."county__@DwC__@vegpath.org", |
|
6373 |
analytical_stem."locality__@DwC__@vegpath.org", |
|
6374 |
analytical_stem."decimalLatitude__@DwC__@vegpath.org", |
|
6375 |
analytical_stem."decimalLongitude__@DwC__@vegpath.org", |
|
6376 |
analytical_stem."coordinateUncertaintyInMeters__@DwC__@vegpath.org", |
|
6377 |
analytical_stem."georeferenceSources__@DwC__@vegpath.org", |
|
6378 |
analytical_stem."georeferenceProtocol__@DwC__@vegpath.org", |
|
6379 |
analytical_stem.geovalid_bien, |
|
6380 |
analytical_stem."isNewWorld_bien", |
|
6381 |
analytical_stem."projectID__@VegX__.plotObservation@vegpath.org", |
|
6382 |
analytical_stem."projectContributor[s]__@VegBank__@vegpath.org", |
|
6383 |
analytical_stem."locationID__@DwC__@vegpath.org", |
|
6384 |
analytical_stem."plotName__@VegX__.plot@vegpath.org", |
|
6385 |
analytical_stem."subplot__@SALVIAS__.Plot_data@vegpath.org", |
|
6386 |
analytical_stem.location__cultivated__bien, |
|
6387 |
analytical_stem."eventDate__@DwC__@vegpath.org", |
|
6388 |
analytical_stem."(-minimum-)ElevationInMeters__@DwC__@vegpath.org", |
|
6389 |
analytical_stem."slopeAspect[_deg]__@VegX__.plot@vegpath.org", |
|
6390 |
analytical_stem."slopeGradient[_deg]__@VegX__.plot@vegpath.org", |
|
6391 |
analytical_stem."plot.area[_ha]__@VegX__@vegpath.org", |
|
6392 |
analytical_stem."samplingProtocol__@DwC__@vegpath.org", |
|
6393 |
analytical_stem."temperature[_C]__@VegX__.plotObs.obsCond@vegpath.org", |
|
6394 |
analytical_stem."precip_mm__@SALVIAS__.Plot_metadata@vegpath.org", |
|
6395 |
analytical_stem."stratumName__@VegX__.stratum@vegpath.org", |
|
6396 |
analytical_stem."communityConcept.name__@VegX__.communityDet@vegpath.org", |
|
6397 |
analytical_stem."observationContributor[s]__@VegBank__@vegpath.org", |
|
6398 |
analytical_stem."recordedBy__@DwC__@vegpath.org", |
|
6399 |
analytical_stem."recordNumber__@DwC__@vegpath.org", |
|
6400 |
analytical_stem."(-Earliest-)DateCollected__-2007-04-17__@DwC__.hist@vegpath.org", |
|
6401 |
analytical_stem."[verbatim_]family__@DwC__@vegpath.org", |
|
6402 |
analytical_stem."[verbatim_]scientificName__@DwC__@vegpath.org", |
|
6403 |
analytical_stem."identifiedBy__@DwC__@vegpath.org", |
|
6404 |
analytical_stem."dateIdentified__@DwC__@vegpath.org", |
|
6405 |
analytical_stem."identificationRemarks__@DwC__@vegpath.org", |
|
6406 |
analytical_stem."Family_matched__@TNRS__@vegpath.org", |
|
6407 |
analytical_stem."Name_matched__@TNRS__@vegpath.org", |
|
6408 |
analytical_stem."Name_matched_author__@TNRS__@vegpath.org", |
|
6409 |
analytical_stem.scrubbed_family, |
|
6410 |
analytical_stem.scrubbed_genus, |
|
6411 |
analytical_stem."speciesBinomialWithMorphospecies__@VegCore__@vegpath.org", |
|
6412 |
analytical_stem.scrubbed_taxon_name_no_author, |
|
6413 |
analytical_stem.scrubbed_author, |
|
6414 |
analytical_stem."[growth_form=]habit__@SALVIAS__.Plot_data@vegpath.org", |
|
6415 |
analytical_stem."reproductiveCondition__@DwC__@vegpath.org", |
|
6416 |
analytical_stem.cultivated_bien, |
|
6417 |
analytical_stem."cultivatedBasis_bien", |
|
6418 |
analytical_stem."occurrenceRemarks__@DwC__@vegpath.org", |
|
6419 |
analytical_stem."coverPercent__@VegX__.attribute.ordinal@vegpath.org", |
|
6420 |
analytical_stem."stem_dbh[_cm]__@SALVIAS__.Plot_data@vegpath.org", |
|
6421 |
analytical_stem."stemHeight[_m]__@VegBank__.stemCount@vegpath.org", |
|
6422 |
analytical_stem."[tag=]identificationLabel__@VegX__.individual@vegpath.org", |
|
6423 |
analytical_stem."relativeX[_m]__@VegX__.individualOrganismObs@vegpath.org", |
|
6424 |
analytical_stem."relativeY[_m]__@VegX__.individualOrganismObs@vegpath.org", |
|
6425 |
analytical_stem."taxonObservation[.id]__@VegBank__@vegpath.org", |
|
6426 |
analytical_stem."taxonNameUsageConcept.authorCode__@VegX__@vegpath.org", |
|
6427 |
analytical_stem."aggregateOrganismObservation.id__@VegX__@vegpath.org", |
|
6428 |
analytical_stem."individualOrganismObservation.id__@VegX__@vegpath.org", |
|
6429 |
analytical_stem."individualID__@DwC__@vegpath.org", |
|
6430 |
analytical_stem."individualCount__@DwC__@vegpath.org", |
|
6431 |
analytical_stem."stemCode__@VegBank__.stemLocation@vegpath.org" |
|
6432 |
FROM analytical_stem; |
|
6350 |
COMMENT ON COLUMN analytical_stem_view."eventDate__@DwC__@vegpath.org" IS '"The date-time or interval during which an Event occurred. For occurrences, this is the date-time when the event was recorded."'; |
|
6433 | 6351 |
|
6434 | 6352 |
|
6435 | 6353 |
-- |
6436 |
-- Name: COLUMN analytical_plot."datasource__@Brad__.identifier_examples@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
6354 |
-- Name: COLUMN analytical_stem_view."(-minimum-)ElevationInMeters__@DwC__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
6437 | 6355 |
-- |
6438 | 6356 |
|
6439 |
COMMENT ON COLUMN analytical_plot."datasource__@Brad__.identifier_examples@vegpath.org" IS '"the person [or] institution that provided the data [to this database] (the *proximate* data provider)"';
|
|
6357 |
COMMENT ON COLUMN analytical_stem_view."(-minimum-)ElevationInMeters__@DwC__@vegpath.org" IS 'the "elevation (altitude, usually above sea level), in meters"';
|
|
6440 | 6358 |
|
6441 | 6359 |
|
6442 | 6360 |
-- |
6443 |
-- Name: COLUMN analytical_plot."country__@DwC__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
6361 |
-- Name: COLUMN analytical_stem_view."slopeAspect[_deg]__@VegX__.plot@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
6444 | 6362 |
-- |
6445 | 6363 |
|
6446 |
COMMENT ON COLUMN analytical_plot."country__@DwC__@vegpath.org" IS 'http://geoscrub.geoscrub_output.acceptedCountry__@VegBIEN__@vegpath.org; |
|
6447 |
"The name of the country or major administrative unit in which the Location occurs"'; |
|
6364 |
COMMENT ON COLUMN analytical_stem_view."slopeAspect[_deg]__@VegX__.plot@vegpath.org" IS '"Representative azimuth of slope gradient (0-360 degrees) or as a cardinal direction (e.g. N, S, NE)"'; |
|
6448 | 6365 |
|
6449 | 6366 |
|
6450 | 6367 |
-- |
6451 |
-- Name: COLUMN analytical_plot."stateProvince__@DwC__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
6368 |
-- Name: COLUMN analytical_stem_view."slopeGradient[_deg]__@VegX__.plot@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
6452 | 6369 |
-- |
6453 | 6370 |
|
6454 |
COMMENT ON COLUMN analytical_plot."stateProvince__@DwC__@vegpath.org" IS '"The name of the next smaller administrative region than country (state, province, canton, department, region, etc.) in which the Location occurs"';
|
|
6371 |
COMMENT ON COLUMN analytical_stem_view."slopeGradient[_deg]__@VegX__.plot@vegpath.org" IS '"Representative inclination of slope in degrees"';
|
|
6455 | 6372 |
|
6456 | 6373 |
|
6457 | 6374 |
-- |
6458 |
-- Name: COLUMN analytical_plot."county__@DwC__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
6375 |
-- Name: COLUMN analytical_stem_view."plot.area[_ha]__@VegX__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
6459 | 6376 |
-- |
6460 | 6377 |
|
6461 |
COMMENT ON COLUMN analytical_plot."county__@DwC__@vegpath.org" IS '"The full, unabbreviated name of the next smaller administrative region than stateProvince (county, shire, department, etc.) in which the Location occurs"';
|
|
6378 |
COMMENT ON COLUMN analytical_stem_view."plot.area[_ha]__@VegX__@vegpath.org" IS '"Total area of the plot"';
|
|
6462 | 6379 |
|
6463 | 6380 |
|
6464 | 6381 |
-- |
6465 |
-- Name: COLUMN analytical_plot."locality__@DwC__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
6382 |
-- Name: COLUMN analytical_stem_view."samplingProtocol__@DwC__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
6466 | 6383 |
-- |
6467 | 6384 |
|
6468 |
COMMENT ON COLUMN analytical_plot."locality__@DwC__@vegpath.org" IS '"The specific description of the place"';
|
|
6385 |
COMMENT ON COLUMN analytical_stem_view."samplingProtocol__@DwC__@vegpath.org" IS '"The name of, reference to, or description of the method or protocol used during an Event"';
|
|
6469 | 6386 |
|
6470 | 6387 |
|
6471 | 6388 |
-- |
6472 |
-- Name: COLUMN analytical_plot."decimalLatitude__@DwC__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
6389 |
-- Name: COLUMN analytical_stem_view."temperature[_C]__@VegX__.plotObs.obsCond@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
6473 | 6390 |
-- |
6474 | 6391 |
|
6475 |
COMMENT ON COLUMN analytical_plot."decimalLatitude__@DwC__@vegpath.org" IS '"The geographic latitude (in decimal degrees, using the spatial reference system given in geodeticDatum) of the geographic center of a Location"';
|
|
6392 |
COMMENT ON COLUMN analytical_stem_view."temperature[_C]__@VegX__.plotObs.obsCond@vegpath.org" IS '"Temperature during observation [...] [in] Celsius"';
|
|
6476 | 6393 |
|
6477 | 6394 |
|
6478 | 6395 |
-- |
6479 |
-- Name: COLUMN analytical_plot."decimalLongitude__@DwC__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
6396 |
-- Name: COLUMN analytical_stem_view."precip_mm__@SALVIAS__.Plot_metadata@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
6480 | 6397 |
-- |
6481 | 6398 |
|
6482 |
COMMENT ON COLUMN analytical_plot."decimalLongitude__@DwC__@vegpath.org" IS '"The geographic longitude (in decimal degrees, using the spatial reference system given in geodeticDatum) of the geographic center of a Location"';
|
|
6399 |
COMMENT ON COLUMN analytical_stem_view."precip_mm__@SALVIAS__.Plot_metadata@vegpath.org" IS '"Total annual precipitation, in mm"';
|
|
6483 | 6400 |
|
6484 | 6401 |
|
6485 | 6402 |
-- |
6486 |
-- Name: COLUMN analytical_plot."coordinateUncertaintyInMeters__@DwC__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
6403 |
-- Name: COLUMN analytical_stem_view."stratumName__@VegX__.stratum@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
6487 | 6404 |
-- |
6488 | 6405 |
|
6489 |
COMMENT ON COLUMN analytical_plot."coordinateUncertaintyInMeters__@DwC__@vegpath.org" IS 'for a point observation, this is the fuzziness of the coordinates. for a plot (or other shape), this is the radius of the circle that circumscribes the entire plot, or the fuzziness, whichever is greater. note that the DwC definition is confusingly worded: it uses the ambiguous term Location, which sometimes refers to the asserted named place, but which they intended to refer to the plot or point.';
|
|
6406 |
COMMENT ON COLUMN analytical_stem_view."stratumName__@VegX__.stratum@vegpath.org" IS '"Name associated with this stratum"';
|
|
6490 | 6407 |
|
6491 | 6408 |
|
6492 | 6409 |
-- |
6493 |
-- Name: COLUMN analytical_plot."georeferenceSources__@DwC__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
6410 |
-- Name: COLUMN analytical_stem_view."communityConcept.name__@VegX__.communityDet@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
6494 | 6411 |
-- |
6495 | 6412 |
|
6496 |
COMMENT ON COLUMN analytical_plot."georeferenceSources__@DwC__@vegpath.org" IS '"A list (concatenated and separated) of maps, gazetteers, or other resources used to georeference the Location, described specifically enough to allow anyone in the future to use the same resources"';
|
|
6413 |
COMMENT ON COLUMN analytical_stem_view."communityConcept.name__@VegX__.communityDet@vegpath.org" IS '"A textual label for a community type. A community type is an abstract grouping of organisms that tend to co-occur on the landscape due to shared ecological requirements or preferences."';
|
|
6497 | 6414 |
|
6498 | 6415 |
|
6499 | 6416 |
-- |
6500 |
-- Name: COLUMN analytical_plot."georeferenceProtocol__@DwC__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
6417 |
-- Name: COLUMN analytical_stem_view."observationContributor[s]__@VegBank__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
6501 | 6418 |
-- |
6502 | 6419 |
|
6503 |
COMMENT ON COLUMN analytical_plot."georeferenceProtocol__@DwC__@vegpath.org" IS '"A description or reference to the methods used to determine the spatial footprint, coordinates, and uncertainties"';
|
|
6420 |
COMMENT ON COLUMN analytical_stem_view."observationContributor[s]__@VegBank__@vegpath.org" IS '"intersection[s] that link[] a party with a specific plot observation event"';
|
|
6504 | 6421 |
|
6505 | 6422 |
|
6506 | 6423 |
-- |
6507 |
-- Name: COLUMN analytical_plot.geovalid_bien; Type: COMMENT; Schema: public; Owner: -
|
|
6424 |
-- Name: COLUMN analytical_stem_view."[custodial_]institutionCode[s]__@DwC__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
6508 | 6425 |
-- |
6509 | 6426 |
|
6510 |
COMMENT ON COLUMN analytical_plot.geovalid_bien IS 'whether the coordinates are within the boundary of the asserted named places';
|
|
6427 |
COMMENT ON COLUMN analytical_stem_view."[custodial_]institutionCode[s]__@DwC__@vegpath.org" IS '"The name[s] (or acronym[s]) in use by the institution[s] having custody of the object(s) or information referred to in the record"';
|
|
6511 | 6428 |
|
6512 | 6429 |
|
6513 | 6430 |
-- |
6514 |
-- Name: COLUMN analytical_plot."isNewWorld_bien"; Type: COMMENT; Schema: public; Owner: -
|
|
6431 |
-- Name: COLUMN analytical_stem_view."collectionCode__@DwC__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
6515 | 6432 |
-- |
6516 | 6433 |
|
6517 |
COMMENT ON COLUMN analytical_plot."isNewWorld_bien" IS 'whether the country is in the Americas';
|
|
6434 |
COMMENT ON COLUMN analytical_stem_view."collectionCode__@DwC__@vegpath.org" IS '"The name, acronym, coden, or initialism identifying the collection or data set from which the record was derived"';
|
|
6518 | 6435 |
|
6519 | 6436 |
|
6520 | 6437 |
-- |
6521 |
-- Name: COLUMN analytical_plot."projectID__@VegX__.plotObservation@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
6438 |
-- Name: COLUMN analytical_stem_view."catalogNumber__@DwC__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
6522 | 6439 |
-- |
6523 | 6440 |
|
6524 |
COMMENT ON COLUMN analytical_plot."projectID__@VegX__.plotObservation@vegpath.org" IS 'http://project.sourceaccessioncode__@VegBIEN__.public@vegpath.org; |
|
6525 |
"A reference to a specific ''project''"'; |
|
6441 |
COMMENT ON COLUMN analytical_stem_view."catalogNumber__@DwC__@vegpath.org" IS '"An identifier (preferably unique) for the record within the data set or collection"'; |
|
6526 | 6442 |
|
6527 | 6443 |
|
6528 | 6444 |
-- |
6529 |
-- Name: COLUMN analytical_plot."projectContributor[s]__@VegBank__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
6445 |
-- Name: COLUMN analytical_stem_view."occurrenceID__@DwC__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
6530 | 6446 |
-- |
6531 | 6447 |
|
6532 |
COMMENT ON COLUMN analytical_plot."projectContributor[s]__@VegBank__@vegpath.org" IS '"intersection entit[ies] used to ''link'' a party with a specific project wherein vegetation plots are described"';
|
|
6448 |
COMMENT ON COLUMN analytical_stem_view."occurrenceID__@DwC__@vegpath.org" IS '"An identifier for the Occurrence (as opposed to a particular digital record of the occurrence). In the absence of a persistent global unique identifier, construct one from a combination of identifiers in the record that will most closely make the occurrenceID globally unique."';
|
|
6533 | 6449 |
|
6534 | 6450 |
|
6535 | 6451 |
-- |
6536 |
-- Name: COLUMN analytical_plot."locationID__@DwC__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
6452 |
-- Name: COLUMN analytical_stem_view."recordedBy__@DwC__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
6537 | 6453 |
-- |
6538 | 6454 |
|
6539 |
COMMENT ON COLUMN analytical_plot."locationID__@DwC__@vegpath.org" IS '"An identifier for the set of location information (data associated with dcterms:Location)"';
|
|
6455 |
COMMENT ON COLUMN analytical_stem_view."recordedBy__@DwC__@vegpath.org" IS '"A list (concatenated and separated) of names of people, groups, or organizations responsible for recording the original Occurrence. The primary collector or observer, especially one who applies a personal identifier (recordNumber), should be listed first."';
|
|
6540 | 6456 |
|
6541 | 6457 |
|
6542 | 6458 |
-- |
6543 |
-- Name: COLUMN analytical_plot."plotName__@VegX__.plot@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
6459 |
-- Name: COLUMN analytical_stem_view."recordNumber__@DwC__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
6544 | 6460 |
-- |
6545 | 6461 |
|
6546 |
COMMENT ON COLUMN analytical_plot."plotName__@VegX__.plot@vegpath.org" IS '"Name or label for a plot"';
|
|
6462 |
COMMENT ON COLUMN analytical_stem_view."recordNumber__@DwC__@vegpath.org" IS '"An identifier given to the Occurrence at the time it was recorded. Often serves as a link between field notes and an Occurrence record, such as a specimen collector''s number."';
|
|
6547 | 6463 |
|
6548 | 6464 |
|
6549 | 6465 |
-- |
6550 |
-- Name: COLUMN analytical_plot."subplot__@SALVIAS__.Plot_data@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
6466 |
-- Name: COLUMN analytical_stem_view."(-Earliest-)DateCollected__-2007-04-17__@DwC__.hist@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
6551 | 6467 |
-- |
6552 | 6468 |
|
6553 |
COMMENT ON COLUMN analytical_plot."subplot__@SALVIAS__.Plot_data@vegpath.org" IS 'http://location.authorlocationcode__@VegBIEN__.public@vegpath.org; |
|
6554 |
"Code for subplot, line, or any other subsample or subdivision of plot"'; |
|
6469 |
COMMENT ON COLUMN analytical_stem_view."(-Earliest-)DateCollected__-2007-04-17__@DwC__.hist@vegpath.org" IS 'the "date-time (Common Era calendar) in a date-time period during which an organism or group of organisms was collected or observed"'; |
|
6555 | 6470 |
|
6556 | 6471 |
|
6557 | 6472 |
-- |
6558 |
-- Name: COLUMN analytical_plot.location__cultivated__bien; Type: COMMENT; Schema: public; Owner: -
|
|
6473 |
-- Name: COLUMN analytical_stem_view."[verbatim_]family__@DwC__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
6559 | 6474 |
-- |
6560 | 6475 |
|
6561 |
COMMENT ON COLUMN analytical_plot.location__cultivated__bien IS 'whether the occurrence''s *location* was flagged as cultivated. note that this refers just to the cultivated status of the *location*; the occurrence may be cultivated even if the location isn''t.';
|
|
6476 |
COMMENT ON COLUMN analytical_stem_view."[verbatim_]family__@DwC__@vegpath.org" IS '"The full scientific name of the family in which the taxon is classified [*before* any TNRS scrubbing]"';
|
|
6562 | 6477 |
|
6563 | 6478 |
|
6564 | 6479 |
-- |
6565 |
-- Name: COLUMN analytical_plot."eventDate__@DwC__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
6480 |
-- Name: COLUMN analytical_stem_view."[verbatim_]scientificName__@DwC__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
6566 | 6481 |
-- |
6567 | 6482 |
|
6568 |
COMMENT ON COLUMN analytical_plot."eventDate__@DwC__@vegpath.org" IS '"The date-time or interval during which an Event occurred. For occurrences, this is the date-time when the event was recorded."';
|
|
6483 |
COMMENT ON COLUMN analytical_stem_view."[verbatim_]scientificName__@DwC__@vegpath.org" IS '"The full scientific name [*before* any TNRS scrubbing], with authorship and date information if known. When forming part of an Identification, this should be the name in lowest level taxonomic rank that can be determined."';
|
|
6569 | 6484 |
|
6570 | 6485 |
|
6571 | 6486 |
-- |
6572 |
-- Name: COLUMN analytical_plot."(-minimum-)ElevationInMeters__@DwC__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
6487 |
-- Name: COLUMN analytical_stem_view."identifiedBy__@DwC__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
6573 | 6488 |
-- |
6574 | 6489 |
|
6575 |
COMMENT ON COLUMN analytical_plot."(-minimum-)ElevationInMeters__@DwC__@vegpath.org" IS 'the "elevation (altitude, usually above sea level), in meters"';
|
|
6490 |
COMMENT ON COLUMN analytical_stem_view."identifiedBy__@DwC__@vegpath.org" IS '"A list (concatenated and separated) of names of people, groups, or organizations who assigned the Taxon to the subject"';
|
|
6576 | 6491 |
|
6577 | 6492 |
|
6578 | 6493 |
-- |
6579 |
-- Name: COLUMN analytical_plot."slopeAspect[_deg]__@VegX__.plot@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
6494 |
-- Name: COLUMN analytical_stem_view."dateIdentified__@DwC__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
6580 | 6495 |
-- |
6581 | 6496 |
|
6582 |
COMMENT ON COLUMN analytical_plot."slopeAspect[_deg]__@VegX__.plot@vegpath.org" IS '"Representative azimuth of slope gradient (0-360 degrees) or as a cardinal direction (e.g. N, S, NE)"';
|
|
6497 |
COMMENT ON COLUMN analytical_stem_view."dateIdentified__@DwC__@vegpath.org" IS '"The date on which the subject was identified as representing the Taxon"';
|
|
6583 | 6498 |
|
6584 | 6499 |
|
6585 | 6500 |
-- |
6586 |
-- Name: COLUMN analytical_plot."slopeGradient[_deg]__@VegX__.plot@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
6501 |
-- Name: COLUMN analytical_stem_view."identificationRemarks__@DwC__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
6587 | 6502 |
-- |
6588 | 6503 |
|
6589 |
COMMENT ON COLUMN analytical_plot."slopeGradient[_deg]__@VegX__.plot@vegpath.org" IS '"Representative inclination of slope in degrees"';
|
|
6504 |
COMMENT ON COLUMN analytical_stem_view."identificationRemarks__@DwC__@vegpath.org" IS '"Comments or notes about the Identification"';
|
|
6590 | 6505 |
|
6591 | 6506 |
|
6592 | 6507 |
-- |
6593 |
-- Name: COLUMN analytical_plot."plot.area[_ha]__@VegX__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
6508 |
-- Name: COLUMN analytical_stem_view."Family_matched__@TNRS__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
6594 | 6509 |
-- |
6595 | 6510 |
|
6596 |
COMMENT ON COLUMN analytical_plot."plot.area[_ha]__@VegX__@vegpath.org" IS '"Total area of the plot"'; |
|
6511 |
COMMENT ON COLUMN analytical_stem_view."Family_matched__@TNRS__@vegpath.org" IS 'http://TNRS.taxon_scrub.matchedFamily__@VegBIEN__.public@vegpath.org; |
|
6512 |
"The closest matching family in the TNRS database to the family submitted"'; |
|
6597 | 6513 |
|
6598 | 6514 |
|
6599 | 6515 |
-- |
6600 |
-- Name: COLUMN analytical_plot."samplingProtocol__@DwC__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
6516 |
-- Name: COLUMN analytical_stem_view."Name_matched__@TNRS__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
6601 | 6517 |
-- |
6602 | 6518 |
|
6603 |
COMMENT ON COLUMN analytical_plot."samplingProtocol__@DwC__@vegpath.org" IS '"The name of, reference to, or description of the method or protocol used during an Event"';
|
|
6519 |
COMMENT ON COLUMN analytical_stem_view."Name_matched__@TNRS__@vegpath.org" IS '"Scientific name with the highest match score. May be an exact match or a fuzzy match."';
|
|
6604 | 6520 |
|
6605 | 6521 |
|
6606 | 6522 |
-- |
6607 |
-- Name: COLUMN analytical_plot."temperature[_C]__@VegX__.plotObs.obsCond@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
6523 |
-- Name: COLUMN analytical_stem_view."Name_matched_author__@TNRS__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
6608 | 6524 |
-- |
6609 | 6525 |
|
6610 |
COMMENT ON COLUMN analytical_plot."temperature[_C]__@VegX__.plotObs.obsCond@vegpath.org" IS '"Temperature during observation [...] [in] Celsius"';
|
|
6526 |
COMMENT ON COLUMN analytical_stem_view."Name_matched_author__@TNRS__@vegpath.org" IS '"Standard authority for the matched name"';
|
|
6611 | 6527 |
|
6612 | 6528 |
|
6613 | 6529 |
-- |
6614 |
-- Name: COLUMN analytical_plot."precip_mm__@SALVIAS__.Plot_metadata@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
6530 |
-- Name: COLUMN analytical_stem_view."[higher_plant_group~]higherClassification__@DwC__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
6615 | 6531 |
-- |
6616 | 6532 |
|
6617 |
COMMENT ON COLUMN analytical_plot."precip_mm__@SALVIAS__.Plot_metadata@vegpath.org" IS '"Total annual precipitation, in mm"';
|
|
6533 |
COMMENT ON COLUMN analytical_stem_view."[higher_plant_group~]higherClassification__@DwC__@vegpath.org" IS 'closed list derived from higher taxa';
|
|
6618 | 6534 |
|
6619 | 6535 |
|
6620 | 6536 |
-- |
6621 |
-- Name: COLUMN analytical_plot."stratumName__@VegX__.stratum@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
6537 |
-- Name: COLUMN analytical_stem_view."taxonomicStatus__@DwC__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
6622 | 6538 |
-- |
6623 | 6539 |
|
6624 |
COMMENT ON COLUMN analytical_plot."stratumName__@VegX__.stratum@vegpath.org" IS '"Name associated with this stratum"';
|
|
6540 |
COMMENT ON COLUMN analytical_stem_view."taxonomicStatus__@DwC__@vegpath.org" IS '"The status of the use of the scientificName as a label for a taxon. Requires taxonomic opinion to define the scope of a taxon. [...] Examples: "invalid", "misapplied", "homotypic synonym", "accepted"."';
|
|
6625 | 6541 |
|
6626 | 6542 |
|
6627 | 6543 |
-- |
6628 |
-- Name: COLUMN analytical_plot."communityConcept.name__@VegX__.communityDet@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
6544 |
-- Name: COLUMN analytical_stem_view.scrubbed_family; Type: COMMENT; Schema: public; Owner: -
|
|
6629 | 6545 |
-- |
6630 | 6546 |
|
6631 |
COMMENT ON COLUMN analytical_plot."communityConcept.name__@VegX__.communityDet@vegpath.org" IS '"A textual label for a community type. A community type is an abstract grouping of organisms that tend to co-occur on the landscape due to shared ecological requirements or preferences."';
|
|
6547 |
COMMENT ON COLUMN analytical_stem_view.scrubbed_family IS 'the family of the TNRS accepted or matched name';
|
|
6632 | 6548 |
|
6633 | 6549 |
|
6634 | 6550 |
-- |
6635 |
-- Name: COLUMN analytical_plot."observationContributor[s]__@VegBank__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
6551 |
-- Name: COLUMN analytical_stem_view.scrubbed_genus; Type: COMMENT; Schema: public; Owner: -
|
|
6636 | 6552 |
-- |
6637 | 6553 |
|
6638 |
COMMENT ON COLUMN analytical_plot."observationContributor[s]__@VegBank__@vegpath.org" IS '"intersection[s] that link[] a party with a specific plot observation event"';
|
|
6554 |
COMMENT ON COLUMN analytical_stem_view.scrubbed_genus IS 'the genus of the TNRS accepted or matched name';
|
|
6639 | 6555 |
|
6640 | 6556 |
|
6641 | 6557 |
-- |
6642 |
-- Name: COLUMN analytical_plot."recordedBy__@DwC__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
6558 |
-- Name: COLUMN analytical_stem_view.scrubbed_specific_epithet; Type: COMMENT; Schema: public; Owner: -
|
|
6643 | 6559 |
-- |
6644 | 6560 |
|
6645 |
COMMENT ON COLUMN analytical_plot."recordedBy__@DwC__@vegpath.org" IS '"A list (concatenated and separated) of names of people, groups, or organizations responsible for recording the original Occurrence. The primary collector or observer, especially one who applies a personal identifier (recordNumber), should be listed first."';
|
|
6561 |
COMMENT ON COLUMN analytical_stem_view.scrubbed_specific_epithet IS 'the specific epithet of the TNRS accepted or matched name';
|
|
6646 | 6562 |
|
6647 | 6563 |
|
6648 | 6564 |
-- |
6649 |
-- Name: COLUMN analytical_plot."recordNumber__@DwC__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
6565 |
-- Name: COLUMN analytical_stem_view.scrubbed_species_binomial; Type: COMMENT; Schema: public; Owner: -
|
|
6650 | 6566 |
-- |
6651 | 6567 |
|
6652 |
COMMENT ON COLUMN analytical_plot."recordNumber__@DwC__@vegpath.org" IS '"An identifier given to the Occurrence at the time it was recorded. Often serves as a link between field notes and an Occurrence record, such as a specimen collector''s number."';
|
|
6568 |
COMMENT ON COLUMN analytical_stem_view.scrubbed_species_binomial IS 'the species binomial of the TNRS accepted or matched name';
|
|
6653 | 6569 |
|
6654 | 6570 |
|
6655 | 6571 |
-- |
6656 |
-- Name: COLUMN analytical_plot."(-Earliest-)DateCollected__-2007-04-17__@DwC__.hist@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
6572 |
-- Name: COLUMN analytical_stem_view.scrubbed_taxon_name_no_author; Type: COMMENT; Schema: public; Owner: -
|
|
6657 | 6573 |
-- |
6658 | 6574 |
|
6659 |
COMMENT ON COLUMN analytical_plot."(-Earliest-)DateCollected__-2007-04-17__@DwC__.hist@vegpath.org" IS 'the "date-time (Common Era calendar) in a date-time period during which an organism or group of organisms was collected or observed"';
|
|
6575 |
COMMENT ON COLUMN analytical_stem_view.scrubbed_taxon_name_no_author IS 'the taxon name without author of the TNRS accepted or matched name';
|
|
6660 | 6576 |
|
6661 | 6577 |
|
6662 | 6578 |
-- |
6663 |
-- Name: COLUMN analytical_plot."[verbatim_]family__@DwC__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
6579 |
-- Name: COLUMN analytical_stem_view.scrubbed_author; Type: COMMENT; Schema: public; Owner: -
|
|
6664 | 6580 |
-- |
6665 | 6581 |
|
6666 |
COMMENT ON COLUMN analytical_plot."[verbatim_]family__@DwC__@vegpath.org" IS '"The full scientific name of the family in which the taxon is classified [*before* any TNRS scrubbing]"';
|
|
6582 |
COMMENT ON COLUMN analytical_stem_view.scrubbed_author IS 'the author of the TNRS accepted or matched name';
|
|
6667 | 6583 |
|
6668 | 6584 |
|
6669 | 6585 |
-- |
6670 |
-- Name: COLUMN analytical_plot."[verbatim_]scientificName__@DwC__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
6586 |
-- Name: COLUMN analytical_stem_view.scrubbed_taxon_name_with_author; Type: COMMENT; Schema: public; Owner: -
|
|
6671 | 6587 |
-- |
6672 | 6588 |
|
6673 |
COMMENT ON COLUMN analytical_plot."[verbatim_]scientificName__@DwC__@vegpath.org" IS '"The full scientific name [*before* any TNRS scrubbing], with authorship and date information if known. When forming part of an Identification, this should be the name in lowest level taxonomic rank that can be determined."'; |
|
6589 |
COMMENT ON COLUMN analytical_stem_view.scrubbed_taxon_name_with_author IS 'the taxon name with author of the TNRS accepted or matched name'; |
Also available in: Unified diff
schemas/public_.sql: derived views: use analytical_stem_view instead of analytical_stem because analytical_stem is no longer materialized (viewFullOccurrence_individual_view is materialized instead)