Revision 14482
Added by Aaron Marcuse-Kubitza over 10 years ago
public_.sql | ||
---|---|---|
3466 | 3466 |
|
3467 | 3467 |
|
3468 | 3468 |
-- |
3469 |
-- Name: viewFullOccurrence_individual_view_modify(boolean, anyelement); Type: FUNCTION; Schema: public; Owner: -
|
|
3469 |
-- Name: view_full_occurrence_individual_view_modify(boolean, anyelement); Type: FUNCTION; Schema: public; Owner: -
|
|
3470 | 3470 |
-- |
3471 | 3471 |
|
3472 |
CREATE FUNCTION "viewFullOccurrence_individual_view_modify"(repopulate boolean DEFAULT true, schema_anchor anyelement DEFAULT NULL::schema_anchor) RETURNS void
|
|
3472 |
CREATE FUNCTION view_full_occurrence_individual_view_modify(repopulate boolean DEFAULT true, schema_anchor anyelement DEFAULT NULL::schema_anchor) RETURNS void
|
|
3473 | 3473 |
LANGUAGE plpgsql |
3474 | 3474 |
AS $_$ |
3475 | 3475 |
/* must use LANGUAGE plpgsql because LANGUAGE sql does not support runtime |
... | ... | |
3480 | 3480 |
BEGIN |
3481 | 3481 |
PERFORM util.use_schema(schema_anchor); |
3482 | 3482 |
|
3483 |
PERFORM util.rematerialize_view('"viewFullOccurrence_individual"', '"viewFullOccurrence_individual_view"', $$
|
|
3484 |
ALTER TABLE "viewFullOccurrence_individual" ADD COLUMN "TAXONOBSERVATION_ID__@VegBank__.taxonObservation@vegpath.org" serial PRIMARY KEY;
|
|
3485 |
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"';
|
|
3483 |
PERFORM util.rematerialize_view('"view_full_occurrence_individual"', '"view_full_occurrence_individual_view"', $$
|
|
3484 |
ALTER TABLE "view_full_occurrence_individual" ADD COLUMN "TAXONOBSERVATION_ID__@VegBank__.taxonObservation@vegpath.org" serial PRIMARY KEY;
|
|
3485 |
COMMENT ON COLUMN "view_full_occurrence_individual"."TAXONOBSERVATION_ID__@VegBank__.taxonObservation@vegpath.org" IS 'VegBIEN-autogenerated "identifier assigned to each unique observation of a taxon in a plot"';
|
|
3486 | 3486 |
|
3487 |
GRANT SELECT ON TABLE "viewFullOccurrence_individual" TO bien_read;
|
|
3488 |
GRANT SELECT ON TABLE "viewFullOccurrence_individual_view" TO bien_read;
|
|
3487 |
GRANT SELECT ON TABLE "view_full_occurrence_individual" TO bien_read;
|
|
3488 |
GRANT SELECT ON TABLE "view_full_occurrence_individual_view" TO bien_read;
|
|
3489 | 3489 |
|
3490 |
ALTER TABLE "viewFullOccurrence_individual" ALTER COLUMN "datasource__@Brad__.identifier_examples@vegpath.org" SET NOT NULL;
|
|
3491 |
ALTER TABLE "viewFullOccurrence_individual" ALTER COLUMN "locationID__@DwC__@vegpath.org" SET NOT NULL;
|
|
3490 |
ALTER TABLE "view_full_occurrence_individual" ALTER COLUMN "datasource__@Brad__.identifier_examples@vegpath.org" SET NOT NULL;
|
|
3491 |
ALTER TABLE "view_full_occurrence_individual" ALTER COLUMN "locationID__@DwC__@vegpath.org" SET NOT NULL;
|
|
3492 | 3492 |
|
3493 |
CREATE INDEX ON "viewFullOccurrence_individual" ("datasource__@Brad__.identifier_examples@vegpath.org", "occurrenceID__@DwC__@vegpath.org");
|
|
3494 |
CREATE INDEX ON "viewFullOccurrence_individual" ("datasource__@Brad__.identifier_examples@vegpath.org", "[custodial_]institutionCode[s]__@DwC__@vegpath.org", "collectionCode__@DwC__@vegpath.org", "catalogNumber__@DwC__@vegpath.org");
|
|
3495 |
CREATE INDEX ON "viewFullOccurrence_individual" ("datasource__@Brad__.identifier_examples@vegpath.org", "projectID__@VegX__.plotObservation@vegpath.org", "locationID__@DwC__@vegpath.org", "eventDate__@DwC__@vegpath.org");
|
|
3496 |
CREATE INDEX ON "viewFullOccurrence_individual" ("speciesBinomialWithMorphospecies__@VegCore__@vegpath.org");
|
|
3493 |
CREATE INDEX ON "view_full_occurrence_individual" ("datasource__@Brad__.identifier_examples@vegpath.org", "occurrenceID__@DwC__@vegpath.org");
|
|
3494 |
CREATE INDEX ON "view_full_occurrence_individual" ("datasource__@Brad__.identifier_examples@vegpath.org", "[custodial_]institutionCode[s]__@DwC__@vegpath.org", "collectionCode__@DwC__@vegpath.org", "catalogNumber__@DwC__@vegpath.org");
|
|
3495 |
CREATE INDEX ON "view_full_occurrence_individual" ("datasource__@Brad__.identifier_examples@vegpath.org", "projectID__@VegX__.plotObservation@vegpath.org", "locationID__@DwC__@vegpath.org", "eventDate__@DwC__@vegpath.org");
|
|
3496 |
CREATE INDEX ON "view_full_occurrence_individual" ("speciesBinomialWithMorphospecies__@VegCore__@vegpath.org");
|
|
3497 | 3497 |
$$, repopulate); |
3498 | 3498 |
END; |
3499 | 3499 |
$_$; |
... | ... | |
5598 | 5598 |
|
5599 | 5599 |
|
5600 | 5600 |
-- |
5601 |
-- Name: viewFullOccurrence_individual; Type: TABLE; Schema: public; Owner: -; Tablespace:
|
|
5601 |
-- Name: view_full_occurrence_individual; Type: TABLE; Schema: public; Owner: -; Tablespace:
|
|
5602 | 5602 |
-- |
5603 | 5603 |
|
5604 |
CREATE TABLE "viewFullOccurrence_individual" (
|
|
5604 |
CREATE TABLE view_full_occurrence_individual (
|
|
5605 | 5605 |
"datasource__@Brad__.identifier_examples@vegpath.org" text NOT NULL, |
5606 | 5606 |
"country__@DwC__@vegpath.org" text, |
5607 | 5607 |
"stateProvince__@DwC__@vegpath.org" text, |
... | ... | |
5675 | 5675 |
|
5676 | 5676 |
|
5677 | 5677 |
-- |
5678 |
-- Name: TABLE "viewFullOccurrence_individual"; Type: COMMENT; Schema: public; Owner: -
|
|
5678 |
-- Name: TABLE view_full_occurrence_individual; Type: COMMENT; Schema: public; Owner: -
|
|
5679 | 5679 |
-- |
5680 | 5680 |
|
5681 |
COMMENT ON TABLE "viewFullOccurrence_individual" IS '
|
|
5681 |
COMMENT ON TABLE view_full_occurrence_individual IS '
|
|
5682 | 5682 |
after updating this: |
5683 |
SELECT viewFullOccurrence_individual_view_modify()
|
|
5683 |
SELECT view_full_occurrence_individual_view_modify()
|
|
5684 | 5684 |
add applicable columns to analytical_specimen, analytical_plot |
5685 | 5685 |
|
5686 | 5686 |
materialize time: 22 h ("79217026.810 ms") @r14089 @vegbiendev |
... | ... | |
5694 | 5694 |
|
5695 | 5695 |
|
5696 | 5696 |
-- |
5697 |
-- Name: COLUMN "viewFullOccurrence_individual"."datasource__@Brad__.identifier_examples@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
5697 |
-- Name: COLUMN view_full_occurrence_individual."datasource__@Brad__.identifier_examples@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
5698 | 5698 |
-- |
5699 | 5699 |
|
5700 |
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)"';
|
|
5700 |
COMMENT ON COLUMN view_full_occurrence_individual."datasource__@Brad__.identifier_examples@vegpath.org" IS '"the person [or] institution that provided the data [to this database] (the *proximate* data provider)"';
|
|
5701 | 5701 |
|
5702 | 5702 |
|
5703 | 5703 |
-- |
5704 |
-- Name: COLUMN "viewFullOccurrence_individual"."country__@DwC__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
5704 |
-- Name: COLUMN view_full_occurrence_individual."country__@DwC__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
5705 | 5705 |
-- |
5706 | 5706 |
|
5707 |
COMMENT ON COLUMN "viewFullOccurrence_individual"."country__@DwC__@vegpath.org" IS 'http://geoscrub.geoscrub_output.acceptedCountry__@VegBIEN__@vegpath.org;
|
|
5707 |
COMMENT ON COLUMN view_full_occurrence_individual."country__@DwC__@vegpath.org" IS 'http://geoscrub.geoscrub_output.acceptedCountry__@VegBIEN__@vegpath.org;
|
|
5708 | 5708 |
"The name of the country or major administrative unit in which the Location occurs"'; |
5709 | 5709 |
|
5710 | 5710 |
|
5711 | 5711 |
-- |
5712 |
-- Name: COLUMN "viewFullOccurrence_individual"."stateProvince__@DwC__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
5712 |
-- Name: COLUMN view_full_occurrence_individual."stateProvince__@DwC__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
5713 | 5713 |
-- |
5714 | 5714 |
|
5715 |
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"';
|
|
5715 |
COMMENT ON COLUMN view_full_occurrence_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"';
|
|
5716 | 5716 |
|
5717 | 5717 |
|
5718 | 5718 |
-- |
5719 |
-- Name: COLUMN "viewFullOccurrence_individual"."county__@DwC__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
5719 |
-- Name: COLUMN view_full_occurrence_individual."county__@DwC__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
5720 | 5720 |
-- |
5721 | 5721 |
|
5722 |
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"';
|
|
5722 |
COMMENT ON COLUMN view_full_occurrence_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"';
|
|
5723 | 5723 |
|
5724 | 5724 |
|
5725 | 5725 |
-- |
5726 |
-- Name: COLUMN "viewFullOccurrence_individual"."locality__@DwC__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
5726 |
-- Name: COLUMN view_full_occurrence_individual."locality__@DwC__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
5727 | 5727 |
-- |
5728 | 5728 |
|
5729 |
COMMENT ON COLUMN "viewFullOccurrence_individual"."locality__@DwC__@vegpath.org" IS '"The specific description of the place"';
|
|
5729 |
COMMENT ON COLUMN view_full_occurrence_individual."locality__@DwC__@vegpath.org" IS '"The specific description of the place"';
|
|
5730 | 5730 |
|
5731 | 5731 |
|
5732 | 5732 |
-- |
5733 |
-- Name: COLUMN "viewFullOccurrence_individual"."decimalLatitude__@DwC__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
5733 |
-- Name: COLUMN view_full_occurrence_individual."decimalLatitude__@DwC__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
5734 | 5734 |
-- |
5735 | 5735 |
|
5736 |
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"';
|
|
5736 |
COMMENT ON COLUMN view_full_occurrence_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"';
|
|
5737 | 5737 |
|
5738 | 5738 |
|
5739 | 5739 |
-- |
5740 |
-- Name: COLUMN "viewFullOccurrence_individual"."decimalLongitude__@DwC__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
5740 |
-- Name: COLUMN view_full_occurrence_individual."decimalLongitude__@DwC__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
5741 | 5741 |
-- |
5742 | 5742 |
|
5743 |
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"';
|
|
5743 |
COMMENT ON COLUMN view_full_occurrence_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"';
|
|
5744 | 5744 |
|
5745 | 5745 |
|
5746 | 5746 |
-- |
5747 |
-- Name: COLUMN "viewFullOccurrence_individual"."coordinateUncertaintyInMeters__@DwC__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
5747 |
-- Name: COLUMN view_full_occurrence_individual."coordinateUncertaintyInMeters__@DwC__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
5748 | 5748 |
-- |
5749 | 5749 |
|
5750 |
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.';
|
|
5750 |
COMMENT ON COLUMN view_full_occurrence_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.';
|
|
5751 | 5751 |
|
5752 | 5752 |
|
5753 | 5753 |
-- |
5754 |
-- Name: COLUMN "viewFullOccurrence_individual"."georeferenceSources__@DwC__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
5754 |
-- Name: COLUMN view_full_occurrence_individual."georeferenceSources__@DwC__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
5755 | 5755 |
-- |
5756 | 5756 |
|
5757 |
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"';
|
|
5757 |
COMMENT ON COLUMN view_full_occurrence_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"';
|
|
5758 | 5758 |
|
5759 | 5759 |
|
5760 | 5760 |
-- |
5761 |
-- Name: COLUMN "viewFullOccurrence_individual"."georeferenceProtocol__@DwC__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
5761 |
-- Name: COLUMN view_full_occurrence_individual."georeferenceProtocol__@DwC__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
5762 | 5762 |
-- |
5763 | 5763 |
|
5764 |
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"';
|
|
5764 |
COMMENT ON COLUMN view_full_occurrence_individual."georeferenceProtocol__@DwC__@vegpath.org" IS '"A description or reference to the methods used to determine the spatial footprint, coordinates, and uncertainties"';
|
|
5765 | 5765 |
|
5766 | 5766 |
|
5767 | 5767 |
-- |
5768 |
-- Name: COLUMN "viewFullOccurrence_individual".geovalid_bien; Type: COMMENT; Schema: public; Owner: -
|
|
5768 |
-- Name: COLUMN view_full_occurrence_individual.geovalid_bien; Type: COMMENT; Schema: public; Owner: -
|
|
5769 | 5769 |
-- |
5770 | 5770 |
|
5771 |
COMMENT ON COLUMN "viewFullOccurrence_individual".geovalid_bien IS 'whether the coordinates are within the boundary of the asserted named places';
|
|
5771 |
COMMENT ON COLUMN view_full_occurrence_individual.geovalid_bien IS 'whether the coordinates are within the boundary of the asserted named places';
|
|
5772 | 5772 |
|
5773 | 5773 |
|
5774 | 5774 |
-- |
5775 |
-- Name: COLUMN "viewFullOccurrence_individual"."isNewWorld_bien"; Type: COMMENT; Schema: public; Owner: -
|
|
5775 |
-- Name: COLUMN view_full_occurrence_individual."isNewWorld_bien"; Type: COMMENT; Schema: public; Owner: -
|
|
5776 | 5776 |
-- |
5777 | 5777 |
|
5778 |
COMMENT ON COLUMN "viewFullOccurrence_individual"."isNewWorld_bien" IS 'whether the country is in the Americas';
|
|
5778 |
COMMENT ON COLUMN view_full_occurrence_individual."isNewWorld_bien" IS 'whether the country is in the Americas';
|
|
5779 | 5779 |
|
5780 | 5780 |
|
5781 | 5781 |
-- |
5782 |
-- Name: COLUMN "viewFullOccurrence_individual"."projectID__@VegX__.plotObservation@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
5782 |
-- Name: COLUMN view_full_occurrence_individual."projectID__@VegX__.plotObservation@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
5783 | 5783 |
-- |
5784 | 5784 |
|
5785 |
COMMENT ON COLUMN "viewFullOccurrence_individual"."projectID__@VegX__.plotObservation@vegpath.org" IS 'http://project.sourceaccessioncode__@VegBIEN__.public@vegpath.org;
|
|
5785 |
COMMENT ON COLUMN view_full_occurrence_individual."projectID__@VegX__.plotObservation@vegpath.org" IS 'http://project.sourceaccessioncode__@VegBIEN__.public@vegpath.org;
|
|
5786 | 5786 |
"A reference to a specific ''project''"'; |
5787 | 5787 |
|
5788 | 5788 |
|
5789 | 5789 |
-- |
5790 |
-- Name: COLUMN "viewFullOccurrence_individual"."projectContributor[s]__@VegBank__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
5790 |
-- Name: COLUMN view_full_occurrence_individual."projectContributor[s]__@VegBank__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
5791 | 5791 |
-- |
5792 | 5792 |
|
5793 |
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"';
|
|
5793 |
COMMENT ON COLUMN view_full_occurrence_individual."projectContributor[s]__@VegBank__@vegpath.org" IS '"intersection entit[ies] used to ''link'' a party with a specific project wherein vegetation plots are described"';
|
|
5794 | 5794 |
|
5795 | 5795 |
|
5796 | 5796 |
-- |
5797 |
-- Name: COLUMN "viewFullOccurrence_individual"."locationID__@DwC__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
5797 |
-- Name: COLUMN view_full_occurrence_individual."locationID__@DwC__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
5798 | 5798 |
-- |
5799 | 5799 |
|
5800 |
COMMENT ON COLUMN "viewFullOccurrence_individual"."locationID__@DwC__@vegpath.org" IS '"An identifier for the set of location information (data associated with dcterms:Location)"';
|
|
5800 |
COMMENT ON COLUMN view_full_occurrence_individual."locationID__@DwC__@vegpath.org" IS '"An identifier for the set of location information (data associated with dcterms:Location)"';
|
|
5801 | 5801 |
|
5802 | 5802 |
|
5803 | 5803 |
-- |
5804 |
-- Name: COLUMN "viewFullOccurrence_individual"."plotName__@VegX__.plot@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
5804 |
-- Name: COLUMN view_full_occurrence_individual."plotName__@VegX__.plot@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
5805 | 5805 |
-- |
5806 | 5806 |
|
5807 |
COMMENT ON COLUMN "viewFullOccurrence_individual"."plotName__@VegX__.plot@vegpath.org" IS '"Name or label for a plot"';
|
|
5807 |
COMMENT ON COLUMN view_full_occurrence_individual."plotName__@VegX__.plot@vegpath.org" IS '"Name or label for a plot"';
|
|
5808 | 5808 |
|
5809 | 5809 |
|
5810 | 5810 |
-- |
5811 |
-- Name: COLUMN "viewFullOccurrence_individual"."subplot__@SALVIAS__.Plot_data@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
5811 |
-- Name: COLUMN view_full_occurrence_individual."subplot__@SALVIAS__.Plot_data@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
5812 | 5812 |
-- |
5813 | 5813 |
|
5814 |
COMMENT ON COLUMN "viewFullOccurrence_individual"."subplot__@SALVIAS__.Plot_data@vegpath.org" IS 'http://location.authorlocationcode__@VegBIEN__.public@vegpath.org;
|
|
5814 |
COMMENT ON COLUMN view_full_occurrence_individual."subplot__@SALVIAS__.Plot_data@vegpath.org" IS 'http://location.authorlocationcode__@VegBIEN__.public@vegpath.org;
|
|
5815 | 5815 |
"Code for subplot, line, or any other subsample or subdivision of plot"'; |
5816 | 5816 |
|
5817 | 5817 |
|
5818 | 5818 |
-- |
5819 |
-- Name: COLUMN "viewFullOccurrence_individual".location__cultivated__bien; Type: COMMENT; Schema: public; Owner: -
|
|
5819 |
-- Name: COLUMN view_full_occurrence_individual.location__cultivated__bien; Type: COMMENT; Schema: public; Owner: -
|
|
5820 | 5820 |
-- |
5821 | 5821 |
|
5822 |
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.';
|
|
5822 |
COMMENT ON COLUMN view_full_occurrence_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.';
|
|
5823 | 5823 |
|
5824 | 5824 |
|
5825 | 5825 |
-- |
5826 |
-- Name: COLUMN "viewFullOccurrence_individual"."locationevent.locationevent_id__@VegBIEN__.public@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
5826 |
-- Name: COLUMN view_full_occurrence_individual."locationevent.locationevent_id__@VegBIEN__.public@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
5827 | 5827 |
-- |
5828 | 5828 |
|
5829 |
COMMENT ON COLUMN "viewFullOccurrence_individual"."locationevent.locationevent_id__@VegBIEN__.public@vegpath.org" IS 'http://locationevent.locationevent_id__@VegBIEN__.public@vegpath.org;
|
|
5829 |
COMMENT ON COLUMN view_full_occurrence_individual."locationevent.locationevent_id__@VegBIEN__.public@vegpath.org" IS 'http://locationevent.locationevent_id__@VegBIEN__.public@vegpath.org;
|
|
5830 | 5830 |
autogenerated ID for locationevent'; |
5831 | 5831 |
|
5832 | 5832 |
|
5833 | 5833 |
-- |
5834 |
-- Name: COLUMN "viewFullOccurrence_individual"."eventDate__@DwC__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
5834 |
-- Name: COLUMN view_full_occurrence_individual."eventDate__@DwC__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
5835 | 5835 |
-- |
5836 | 5836 |
|
5837 |
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."';
|
|
5837 |
COMMENT ON COLUMN view_full_occurrence_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."';
|
|
5838 | 5838 |
|
5839 | 5839 |
|
5840 | 5840 |
-- |
5841 |
-- Name: COLUMN "viewFullOccurrence_individual"."(-minimum-)ElevationInMeters__@DwC__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
5841 |
-- Name: COLUMN view_full_occurrence_individual."(-minimum-)ElevationInMeters__@DwC__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
5842 | 5842 |
-- |
5843 | 5843 |
|
5844 |
COMMENT ON COLUMN "viewFullOccurrence_individual"."(-minimum-)ElevationInMeters__@DwC__@vegpath.org" IS 'the "elevation (altitude, usually above sea level), in meters"';
|
|
5844 |
COMMENT ON COLUMN view_full_occurrence_individual."(-minimum-)ElevationInMeters__@DwC__@vegpath.org" IS 'the "elevation (altitude, usually above sea level), in meters"';
|
|
5845 | 5845 |
|
5846 | 5846 |
|
5847 | 5847 |
-- |
5848 |
-- Name: COLUMN "viewFullOccurrence_individual"."slopeAspect[_deg]__@VegX__.plot@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
5848 |
-- Name: COLUMN view_full_occurrence_individual."slopeAspect[_deg]__@VegX__.plot@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
5849 | 5849 |
-- |
5850 | 5850 |
|
5851 |
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)"';
|
|
5851 |
COMMENT ON COLUMN view_full_occurrence_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)"';
|
|
5852 | 5852 |
|
5853 | 5853 |
|
5854 | 5854 |
-- |
5855 |
-- Name: COLUMN "viewFullOccurrence_individual"."slopeGradient[_deg]__@VegX__.plot@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
5855 |
-- Name: COLUMN view_full_occurrence_individual."slopeGradient[_deg]__@VegX__.plot@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
5856 | 5856 |
-- |
5857 | 5857 |
|
5858 |
COMMENT ON COLUMN "viewFullOccurrence_individual"."slopeGradient[_deg]__@VegX__.plot@vegpath.org" IS '"Representative inclination of slope in degrees"';
|
|
5858 |
COMMENT ON COLUMN view_full_occurrence_individual."slopeGradient[_deg]__@VegX__.plot@vegpath.org" IS '"Representative inclination of slope in degrees"';
|
|
5859 | 5859 |
|
5860 | 5860 |
|
5861 | 5861 |
-- |
5862 |
-- Name: COLUMN "viewFullOccurrence_individual"."plot.area[_ha]__@VegX__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
5862 |
-- Name: COLUMN view_full_occurrence_individual."plot.area[_ha]__@VegX__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
5863 | 5863 |
-- |
5864 | 5864 |
|
5865 |
COMMENT ON COLUMN "viewFullOccurrence_individual"."plot.area[_ha]__@VegX__@vegpath.org" IS '"Total area of the plot"';
|
|
5865 |
COMMENT ON COLUMN view_full_occurrence_individual."plot.area[_ha]__@VegX__@vegpath.org" IS '"Total area of the plot"';
|
|
5866 | 5866 |
|
5867 | 5867 |
|
5868 | 5868 |
-- |
5869 |
-- Name: COLUMN "viewFullOccurrence_individual"."samplingProtocol__@DwC__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
5869 |
-- Name: COLUMN view_full_occurrence_individual."samplingProtocol__@DwC__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
5870 | 5870 |
-- |
5871 | 5871 |
|
5872 |
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"';
|
|
5872 |
COMMENT ON COLUMN view_full_occurrence_individual."samplingProtocol__@DwC__@vegpath.org" IS '"The name of, reference to, or description of the method or protocol used during an Event"';
|
|
5873 | 5873 |
|
5874 | 5874 |
|
5875 | 5875 |
-- |
5876 |
-- Name: COLUMN "viewFullOccurrence_individual"."temperature[_C]__@VegX__.plotObs.obsCond@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
5876 |
-- Name: COLUMN view_full_occurrence_individual."temperature[_C]__@VegX__.plotObs.obsCond@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
5877 | 5877 |
-- |
5878 | 5878 |
|
5879 |
COMMENT ON COLUMN "viewFullOccurrence_individual"."temperature[_C]__@VegX__.plotObs.obsCond@vegpath.org" IS '"Temperature during observation [...] [in] Celsius"';
|
|
5879 |
COMMENT ON COLUMN view_full_occurrence_individual."temperature[_C]__@VegX__.plotObs.obsCond@vegpath.org" IS '"Temperature during observation [...] [in] Celsius"';
|
|
5880 | 5880 |
|
5881 | 5881 |
|
5882 | 5882 |
-- |
5883 |
-- Name: COLUMN "viewFullOccurrence_individual"."precip_mm__@SALVIAS__.Plot_metadata@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
5883 |
-- Name: COLUMN view_full_occurrence_individual."precip_mm__@SALVIAS__.Plot_metadata@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
5884 | 5884 |
-- |
5885 | 5885 |
|
5886 |
COMMENT ON COLUMN "viewFullOccurrence_individual"."precip_mm__@SALVIAS__.Plot_metadata@vegpath.org" IS '"Total annual precipitation, in mm"';
|
|
5886 |
COMMENT ON COLUMN view_full_occurrence_individual."precip_mm__@SALVIAS__.Plot_metadata@vegpath.org" IS '"Total annual precipitation, in mm"';
|
|
5887 | 5887 |
|
5888 | 5888 |
|
5889 | 5889 |
-- |
5890 |
-- Name: COLUMN "viewFullOccurrence_individual"."stratumName__@VegX__.stratum@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
5890 |
-- Name: COLUMN view_full_occurrence_individual."stratumName__@VegX__.stratum@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
5891 | 5891 |
-- |
5892 | 5892 |
|
5893 |
COMMENT ON COLUMN "viewFullOccurrence_individual"."stratumName__@VegX__.stratum@vegpath.org" IS '"Name associated with this stratum"';
|
|
5893 |
COMMENT ON COLUMN view_full_occurrence_individual."stratumName__@VegX__.stratum@vegpath.org" IS '"Name associated with this stratum"';
|
|
5894 | 5894 |
|
5895 | 5895 |
|
5896 | 5896 |
-- |
5897 |
-- Name: COLUMN "viewFullOccurrence_individual"."communityConcept.name__@VegX__.communityDet@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
5897 |
-- Name: COLUMN view_full_occurrence_individual."communityConcept.name__@VegX__.communityDet@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
5898 | 5898 |
-- |
5899 | 5899 |
|
5900 |
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."';
|
|
5900 |
COMMENT ON COLUMN view_full_occurrence_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."';
|
|
5901 | 5901 |
|
5902 | 5902 |
|
5903 | 5903 |
-- |
5904 |
-- Name: COLUMN "viewFullOccurrence_individual"."observationContributor[s]__@VegBank__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
5904 |
-- Name: COLUMN view_full_occurrence_individual."observationContributor[s]__@VegBank__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
5905 | 5905 |
-- |
5906 | 5906 |
|
5907 |
COMMENT ON COLUMN "viewFullOccurrence_individual"."observationContributor[s]__@VegBank__@vegpath.org" IS '"intersection[s] that link[] a party with a specific plot observation event"';
|
|
5907 |
COMMENT ON COLUMN view_full_occurrence_individual."observationContributor[s]__@VegBank__@vegpath.org" IS '"intersection[s] that link[] a party with a specific plot observation event"';
|
|
5908 | 5908 |
|
5909 | 5909 |
|
5910 | 5910 |
-- |
5911 |
-- Name: COLUMN "viewFullOccurrence_individual"."[custodial_]institutionCode[s]__@DwC__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
5911 |
-- Name: COLUMN view_full_occurrence_individual."[custodial_]institutionCode[s]__@DwC__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
5912 | 5912 |
-- |
5913 | 5913 |
|
5914 |
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"';
|
|
5914 |
COMMENT ON COLUMN view_full_occurrence_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"';
|
|
5915 | 5915 |
|
5916 | 5916 |
|
5917 | 5917 |
-- |
5918 |
-- Name: COLUMN "viewFullOccurrence_individual"."collectionCode__@DwC__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
5918 |
-- Name: COLUMN view_full_occurrence_individual."collectionCode__@DwC__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
5919 | 5919 |
-- |
5920 | 5920 |
|
5921 |
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"';
|
|
5921 |
COMMENT ON COLUMN view_full_occurrence_individual."collectionCode__@DwC__@vegpath.org" IS '"The name, acronym, coden, or initialism identifying the collection or data set from which the record was derived"';
|
|
5922 | 5922 |
|
5923 | 5923 |
|
5924 | 5924 |
-- |
5925 |
-- Name: COLUMN "viewFullOccurrence_individual"."catalogNumber__@DwC__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
5925 |
-- Name: COLUMN view_full_occurrence_individual."catalogNumber__@DwC__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
5926 | 5926 |
-- |
5927 | 5927 |
|
5928 |
COMMENT ON COLUMN "viewFullOccurrence_individual"."catalogNumber__@DwC__@vegpath.org" IS '"An identifier (preferably unique) for the record within the data set or collection"';
|
|
5928 |
COMMENT ON COLUMN view_full_occurrence_individual."catalogNumber__@DwC__@vegpath.org" IS '"An identifier (preferably unique) for the record within the data set or collection"';
|
|
5929 | 5929 |
|
5930 | 5930 |
|
5931 | 5931 |
-- |
5932 |
-- Name: COLUMN "viewFullOccurrence_individual"."occurrenceID__@DwC__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
5932 |
-- Name: COLUMN view_full_occurrence_individual."occurrenceID__@DwC__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
5933 | 5933 |
-- |
5934 | 5934 |
|
5935 |
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."';
|
|
5935 |
COMMENT ON COLUMN view_full_occurrence_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."';
|
|
5936 | 5936 |
|
5937 | 5937 |
|
5938 | 5938 |
-- |
5939 |
-- Name: COLUMN "viewFullOccurrence_individual"."recordedBy__@DwC__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
5939 |
-- Name: COLUMN view_full_occurrence_individual."recordedBy__@DwC__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
5940 | 5940 |
-- |
5941 | 5941 |
|
5942 |
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."';
|
|
5942 |
COMMENT ON COLUMN view_full_occurrence_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."';
|
|
5943 | 5943 |
|
5944 | 5944 |
|
5945 | 5945 |
-- |
5946 |
-- Name: COLUMN "viewFullOccurrence_individual"."recordNumber__@DwC__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
5946 |
-- Name: COLUMN view_full_occurrence_individual."recordNumber__@DwC__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
5947 | 5947 |
-- |
5948 | 5948 |
|
5949 |
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."';
|
|
5949 |
COMMENT ON COLUMN view_full_occurrence_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."';
|
|
5950 | 5950 |
|
5951 | 5951 |
|
5952 | 5952 |
-- |
5953 |
-- Name: COLUMN "viewFullOccurrence_individual"."(-Earliest-)DateCollected__-2007-04-17__@DwC__.hist@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
5953 |
-- Name: COLUMN view_full_occurrence_individual."(-Earliest-)DateCollected__-2007-04-17__@DwC__.hist@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
5954 | 5954 |
-- |
5955 | 5955 |
|
5956 |
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"';
|
|
5956 |
COMMENT ON COLUMN view_full_occurrence_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"';
|
|
5957 | 5957 |
|
5958 | 5958 |
|
5959 | 5959 |
-- |
5960 |
-- Name: COLUMN "viewFullOccurrence_individual"."[verbatim_]family__@DwC__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
5960 |
-- Name: COLUMN view_full_occurrence_individual."[verbatim_]family__@DwC__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
5961 | 5961 |
-- |
5962 | 5962 |
|
5963 |
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]"';
|
|
5963 |
COMMENT ON COLUMN view_full_occurrence_individual."[verbatim_]family__@DwC__@vegpath.org" IS '"The full scientific name of the family in which the taxon is classified [*before* any TNRS scrubbing]"';
|
|
5964 | 5964 |
|
5965 | 5965 |
|
5966 | 5966 |
-- |
5967 |
-- Name: COLUMN "viewFullOccurrence_individual"."[verbatim_]scientificName__@DwC__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
5967 |
-- Name: COLUMN view_full_occurrence_individual."[verbatim_]scientificName__@DwC__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
5968 | 5968 |
-- |
5969 | 5969 |
|
5970 |
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."';
|
|
5970 |
COMMENT ON COLUMN view_full_occurrence_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."';
|
|
5971 | 5971 |
|
5972 | 5972 |
|
5973 | 5973 |
-- |
5974 |
-- Name: COLUMN "viewFullOccurrence_individual"."identifiedBy__@DwC__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
5974 |
-- Name: COLUMN view_full_occurrence_individual."identifiedBy__@DwC__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
5975 | 5975 |
-- |
5976 | 5976 |
|
5977 |
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"';
|
|
5977 |
COMMENT ON COLUMN view_full_occurrence_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"';
|
|
5978 | 5978 |
|
5979 | 5979 |
|
5980 | 5980 |
-- |
5981 |
-- Name: COLUMN "viewFullOccurrence_individual"."dateIdentified__@DwC__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
5981 |
-- Name: COLUMN view_full_occurrence_individual."dateIdentified__@DwC__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
5982 | 5982 |
-- |
5983 | 5983 |
|
5984 |
COMMENT ON COLUMN "viewFullOccurrence_individual"."dateIdentified__@DwC__@vegpath.org" IS '"The date on which the subject was identified as representing the Taxon"';
|
|
5984 |
COMMENT ON COLUMN view_full_occurrence_individual."dateIdentified__@DwC__@vegpath.org" IS '"The date on which the subject was identified as representing the Taxon"';
|
|
5985 | 5985 |
|
5986 | 5986 |
|
5987 | 5987 |
-- |
5988 |
-- Name: COLUMN "viewFullOccurrence_individual"."identificationRemarks__@DwC__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
5988 |
-- Name: COLUMN view_full_occurrence_individual."identificationRemarks__@DwC__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
5989 | 5989 |
-- |
5990 | 5990 |
|
5991 |
COMMENT ON COLUMN "viewFullOccurrence_individual"."identificationRemarks__@DwC__@vegpath.org" IS '"Comments or notes about the Identification"';
|
|
5991 |
COMMENT ON COLUMN view_full_occurrence_individual."identificationRemarks__@DwC__@vegpath.org" IS '"Comments or notes about the Identification"';
|
|
5992 | 5992 |
|
5993 | 5993 |
|
5994 | 5994 |
-- |
5995 |
-- Name: COLUMN "viewFullOccurrence_individual"."Family_matched__@TNRS__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
5995 |
-- Name: COLUMN view_full_occurrence_individual."Family_matched__@TNRS__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
5996 | 5996 |
-- |
5997 | 5997 |
|
5998 |
COMMENT ON COLUMN "viewFullOccurrence_individual"."Family_matched__@TNRS__@vegpath.org" IS 'http://TNRS.taxon_scrub.matchedFamily__@VegBIEN__.public@vegpath.org;
|
|
5998 |
COMMENT ON COLUMN view_full_occurrence_individual."Family_matched__@TNRS__@vegpath.org" IS 'http://TNRS.taxon_scrub.matchedFamily__@VegBIEN__.public@vegpath.org;
|
|
5999 | 5999 |
"The closest matching family in the TNRS database to the family submitted"'; |
6000 | 6000 |
|
6001 | 6001 |
|
6002 | 6002 |
-- |
6003 |
-- Name: COLUMN "viewFullOccurrence_individual"."Name_matched__@TNRS__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
6003 |
-- Name: COLUMN view_full_occurrence_individual."Name_matched__@TNRS__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
6004 | 6004 |
-- |
6005 | 6005 |
|
6006 |
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."';
|
|
6006 |
COMMENT ON COLUMN view_full_occurrence_individual."Name_matched__@TNRS__@vegpath.org" IS '"Scientific name with the highest match score. May be an exact match or a fuzzy match."';
|
|
6007 | 6007 |
|
6008 | 6008 |
|
6009 | 6009 |
-- |
6010 |
-- Name: COLUMN "viewFullOccurrence_individual"."Name_matched_author__@TNRS__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
6010 |
-- Name: COLUMN view_full_occurrence_individual."Name_matched_author__@TNRS__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
6011 | 6011 |
-- |
6012 | 6012 |
|
6013 |
COMMENT ON COLUMN "viewFullOccurrence_individual"."Name_matched_author__@TNRS__@vegpath.org" IS '"Standard authority for the matched name"';
|
|
6013 |
COMMENT ON COLUMN view_full_occurrence_individual."Name_matched_author__@TNRS__@vegpath.org" IS '"Standard authority for the matched name"';
|
|
6014 | 6014 |
|
6015 | 6015 |
|
6016 | 6016 |
-- |
6017 |
-- Name: COLUMN "viewFullOccurrence_individual"."[higher_plant_group~]higherClassification__@DwC__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
6017 |
-- Name: COLUMN view_full_occurrence_individual."[higher_plant_group~]higherClassification__@DwC__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
6018 | 6018 |
-- |
6019 | 6019 |
|
6020 |
COMMENT ON COLUMN "viewFullOccurrence_individual"."[higher_plant_group~]higherClassification__@DwC__@vegpath.org" IS 'closed list derived from higher taxa';
|
|
6020 |
COMMENT ON COLUMN view_full_occurrence_individual."[higher_plant_group~]higherClassification__@DwC__@vegpath.org" IS 'closed list derived from higher taxa';
|
|
6021 | 6021 |
|
6022 | 6022 |
|
6023 | 6023 |
-- |
6024 |
-- Name: COLUMN "viewFullOccurrence_individual"."taxonomicStatus__@DwC__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
6024 |
-- Name: COLUMN view_full_occurrence_individual."taxonomicStatus__@DwC__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
6025 | 6025 |
-- |
6026 | 6026 |
|
6027 |
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"."';
|
|
6027 |
COMMENT ON COLUMN view_full_occurrence_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"."';
|
|
6028 | 6028 |
|
6029 | 6029 |
|
6030 | 6030 |
-- |
6031 |
-- Name: COLUMN "viewFullOccurrence_individual".scrubbed_family; Type: COMMENT; Schema: public; Owner: -
|
|
6031 |
-- Name: COLUMN view_full_occurrence_individual.scrubbed_family; Type: COMMENT; Schema: public; Owner: -
|
|
6032 | 6032 |
-- |
6033 | 6033 |
|
6034 |
COMMENT ON COLUMN "viewFullOccurrence_individual".scrubbed_family IS 'the family of the TNRS accepted or matched name';
|
|
6034 |
COMMENT ON COLUMN view_full_occurrence_individual.scrubbed_family IS 'the family of the TNRS accepted or matched name';
|
|
6035 | 6035 |
|
6036 | 6036 |
|
6037 | 6037 |
-- |
6038 |
-- Name: COLUMN "viewFullOccurrence_individual".scrubbed_genus; Type: COMMENT; Schema: public; Owner: -
|
|
6038 |
-- Name: COLUMN view_full_occurrence_individual.scrubbed_genus; Type: COMMENT; Schema: public; Owner: -
|
|
6039 | 6039 |
-- |
6040 | 6040 |
|
6041 |
COMMENT ON COLUMN "viewFullOccurrence_individual".scrubbed_genus IS 'the genus of the TNRS accepted or matched name';
|
|
6041 |
COMMENT ON COLUMN view_full_occurrence_individual.scrubbed_genus IS 'the genus of the TNRS accepted or matched name';
|
|
6042 | 6042 |
|
6043 | 6043 |
|
6044 | 6044 |
-- |
6045 |
-- Name: COLUMN "viewFullOccurrence_individual".scrubbed_specific_epithet; Type: COMMENT; Schema: public; Owner: -
|
|
6045 |
-- Name: COLUMN view_full_occurrence_individual.scrubbed_specific_epithet; Type: COMMENT; Schema: public; Owner: -
|
|
6046 | 6046 |
-- |
6047 | 6047 |
|
6048 |
COMMENT ON COLUMN "viewFullOccurrence_individual".scrubbed_specific_epithet IS 'the specific epithet of the TNRS accepted or matched name';
|
|
6048 |
COMMENT ON COLUMN view_full_occurrence_individual.scrubbed_specific_epithet IS 'the specific epithet of the TNRS accepted or matched name';
|
|
6049 | 6049 |
|
6050 | 6050 |
|
6051 | 6051 |
-- |
6052 |
-- Name: COLUMN "viewFullOccurrence_individual".scrubbed_species_binomial; Type: COMMENT; Schema: public; Owner: -
|
|
6052 |
-- Name: COLUMN view_full_occurrence_individual.scrubbed_species_binomial; Type: COMMENT; Schema: public; Owner: -
|
|
6053 | 6053 |
-- |
6054 | 6054 |
|
6055 |
COMMENT ON COLUMN "viewFullOccurrence_individual".scrubbed_species_binomial IS 'the species binomial of the TNRS accepted or matched name';
|
|
6055 |
COMMENT ON COLUMN view_full_occurrence_individual.scrubbed_species_binomial IS 'the species binomial of the TNRS accepted or matched name';
|
|
6056 | 6056 |
|
6057 | 6057 |
|
6058 | 6058 |
-- |
6059 |
-- Name: COLUMN "viewFullOccurrence_individual".scrubbed_taxon_name_no_author; Type: COMMENT; Schema: public; Owner: -
|
|
6059 |
-- Name: COLUMN view_full_occurrence_individual.scrubbed_taxon_name_no_author; Type: COMMENT; Schema: public; Owner: -
|
|
6060 | 6060 |
-- |
6061 | 6061 |
|
6062 |
COMMENT ON COLUMN "viewFullOccurrence_individual".scrubbed_taxon_name_no_author IS 'the taxon name without author of the TNRS accepted or matched name';
|
|
6062 |
COMMENT ON COLUMN view_full_occurrence_individual.scrubbed_taxon_name_no_author IS 'the taxon name without author of the TNRS accepted or matched name';
|
|
6063 | 6063 |
|
6064 | 6064 |
|
6065 | 6065 |
-- |
6066 |
-- Name: COLUMN "viewFullOccurrence_individual".scrubbed_author; Type: COMMENT; Schema: public; Owner: -
|
|
6066 |
-- Name: COLUMN view_full_occurrence_individual.scrubbed_author; Type: COMMENT; Schema: public; Owner: -
|
|
6067 | 6067 |
-- |
6068 | 6068 |
|
6069 |
COMMENT ON COLUMN "viewFullOccurrence_individual".scrubbed_author IS 'the author of the TNRS accepted or matched name';
|
|
6069 |
COMMENT ON COLUMN view_full_occurrence_individual.scrubbed_author IS 'the author of the TNRS accepted or matched name';
|
|
6070 | 6070 |
|
6071 | 6071 |
|
6072 | 6072 |
-- |
6073 |
-- Name: COLUMN "viewFullOccurrence_individual".scrubbed_taxon_name_with_author; Type: COMMENT; Schema: public; Owner: -
|
|
6073 |
-- Name: COLUMN view_full_occurrence_individual.scrubbed_taxon_name_with_author; Type: COMMENT; Schema: public; Owner: -
|
|
6074 | 6074 |
-- |
6075 | 6075 |
|
6076 |
COMMENT ON COLUMN "viewFullOccurrence_individual".scrubbed_taxon_name_with_author IS 'the taxon name with author of the TNRS accepted or matched name';
|
|
6076 |
COMMENT ON COLUMN view_full_occurrence_individual.scrubbed_taxon_name_with_author IS 'the taxon name with author of the TNRS accepted or matched name';
|
|
6077 | 6077 |
|
6078 | 6078 |
|
6079 | 6079 |
-- |
6080 |
-- Name: COLUMN "viewFullOccurrence_individual"."speciesBinomialWithMorphospecies__@VegCore__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
6080 |
-- Name: COLUMN view_full_occurrence_individual."speciesBinomialWithMorphospecies__@VegCore__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
6081 | 6081 |
-- |
6082 | 6082 |
|
6083 |
COMMENT ON COLUMN "viewFullOccurrence_individual"."speciesBinomialWithMorphospecies__@VegCore__@vegpath.org" IS 'http://TNRS.taxon_scrub.scrubbed_morphospecies_binomial__@VegBIEN__.public@vegpath.org;
|
|
6083 |
COMMENT ON COLUMN view_full_occurrence_individual."speciesBinomialWithMorphospecies__@VegCore__@vegpath.org" IS 'http://TNRS.taxon_scrub.scrubbed_morphospecies_binomial__@VegBIEN__.public@vegpath.org;
|
|
6084 | 6084 |
"combine the `taxon` plus `morphospecies` to produce a unique string, `taxonMorphospecies`"; |
6085 | 6085 |
a morphospecies is a custom species name assigned in the field by the collector (which does not validate to anything in TNRS)'; |
6086 | 6086 |
|
6087 | 6087 |
|
6088 | 6088 |
-- |
6089 |
-- Name: COLUMN "viewFullOccurrence_individual"."[growth_form=]habit__@SALVIAS__.Plot_data@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
6089 |
-- Name: COLUMN view_full_occurrence_individual."[growth_form=]habit__@SALVIAS__.Plot_data@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
6090 | 6090 |
-- |
6091 | 6091 |
|
6092 |
COMMENT ON COLUMN "viewFullOccurrence_individual"."[growth_form=]habit__@SALVIAS__.Plot_data@vegpath.org" IS '"Growth form"; "Closed pick list"';
|
|
6092 |
COMMENT ON COLUMN view_full_occurrence_individual."[growth_form=]habit__@SALVIAS__.Plot_data@vegpath.org" IS '"Growth form"; "Closed pick list"';
|
|
6093 | 6093 |
|
6094 | 6094 |
|
6095 | 6095 |
-- |
6096 |
-- Name: COLUMN "viewFullOccurrence_individual"."reproductiveCondition__@DwC__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
6096 |
-- Name: COLUMN view_full_occurrence_individual."reproductiveCondition__@DwC__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
6097 | 6097 |
-- |
6098 | 6098 |
|
6099 |
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."';
|
|
6099 |
COMMENT ON COLUMN view_full_occurrence_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."';
|
|
6100 | 6100 |
|
6101 | 6101 |
|
6102 | 6102 |
-- |
6103 |
-- Name: COLUMN "viewFullOccurrence_individual".cultivated_bien; Type: COMMENT; Schema: public; Owner: -
|
|
6103 |
-- Name: COLUMN view_full_occurrence_individual.cultivated_bien; Type: COMMENT; Schema: public; Owner: -
|
|
6104 | 6104 |
-- |
6105 | 6105 |
|
6106 |
COMMENT ON COLUMN "viewFullOccurrence_individual".cultivated_bien IS 'whether the occurrence was flagged as cultivated';
|
|
6106 |
COMMENT ON COLUMN view_full_occurrence_individual.cultivated_bien IS 'whether the occurrence was flagged as cultivated';
|
|
6107 | 6107 |
|
6108 | 6108 |
|
6109 | 6109 |
-- |
6110 |
-- Name: COLUMN "viewFullOccurrence_individual"."cultivatedBasis_bien"; Type: COMMENT; Schema: public; Owner: -
|
|
6110 |
-- Name: COLUMN view_full_occurrence_individual."cultivatedBasis_bien"; Type: COMMENT; Schema: public; Owner: -
|
|
6111 | 6111 |
-- |
6112 | 6112 |
|
6113 |
COMMENT ON COLUMN "viewFullOccurrence_individual"."cultivatedBasis_bien" IS 'why the occurrence was flagged as cultivated';
|
|
6113 |
COMMENT ON COLUMN view_full_occurrence_individual."cultivatedBasis_bien" IS 'why the occurrence was flagged as cultivated';
|
|
6114 | 6114 |
|
6115 | 6115 |
|
6116 | 6116 |
-- |
6117 |
-- Name: COLUMN "viewFullOccurrence_individual"."occurrenceRemarks__@DwC__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
6117 |
-- Name: COLUMN view_full_occurrence_individual."occurrenceRemarks__@DwC__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
6118 | 6118 |
-- |
6119 | 6119 |
|
6120 |
COMMENT ON COLUMN "viewFullOccurrence_individual"."occurrenceRemarks__@DwC__@vegpath.org" IS '"Comments or notes about the Occurrence"';
|
|
6120 |
COMMENT ON COLUMN view_full_occurrence_individual."occurrenceRemarks__@DwC__@vegpath.org" IS '"Comments or notes about the Occurrence"';
|
|
6121 | 6121 |
|
6122 | 6122 |
|
6123 | 6123 |
-- |
6124 |
-- Name: COLUMN "viewFullOccurrence_individual"."coverPercent__@VegX__.attribute.ordinal@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
6124 |
-- Name: COLUMN view_full_occurrence_individual."coverPercent__@VegX__.attribute.ordinal@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
6125 | 6125 |
-- |
6126 | 6126 |
|
6127 |
COMMENT ON COLUMN "viewFullOccurrence_individual"."coverPercent__@VegX__.attribute.ordinal@vegpath.org" IS '"Average cover of the index in percent"';
|
|
6127 |
COMMENT ON COLUMN view_full_occurrence_individual."coverPercent__@VegX__.attribute.ordinal@vegpath.org" IS '"Average cover of the index in percent"';
|
|
6128 | 6128 |
|
6129 | 6129 |
|
6130 | 6130 |
-- |
6131 |
-- Name: COLUMN "viewFullOccurrence_individual"."taxonObservation[.id]__@VegBank__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
6131 |
-- Name: COLUMN view_full_occurrence_individual."taxonObservation[.id]__@VegBank__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
6132 | 6132 |
-- |
6133 | 6133 |
|
6134 |
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"';
|
|
6134 |
COMMENT ON COLUMN view_full_occurrence_individual."taxonObservation[.id]__@VegBank__@vegpath.org" IS '"identifier assigned [by the datasource] to each unique observation of a taxon in a plot"';
|
|
6135 | 6135 |
|
6136 | 6136 |
|
6137 | 6137 |
-- |
6138 |
-- Name: COLUMN "viewFullOccurrence_individual"."taxonNameUsageConcept.authorCode__@VegX__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
6138 |
-- Name: COLUMN view_full_occurrence_individual."taxonNameUsageConcept.authorCode__@VegX__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
6139 | 6139 |
-- |
6140 | 6140 |
|
6141 |
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"';
|
|
6141 |
COMMENT ON COLUMN view_full_occurrence_individual."taxonNameUsageConcept.authorCode__@VegX__@vegpath.org" IS '"Verbatum short code used by the author to signify the species at time of observation"';
|
|
6142 | 6142 |
|
6143 | 6143 |
|
6144 | 6144 |
-- |
6145 |
-- Name: COLUMN "viewFullOccurrence_individual"."aggregateOrganismObservation.id__@VegX__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
6145 |
-- Name: COLUMN view_full_occurrence_individual."aggregateOrganismObservation.id__@VegX__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
6146 | 6146 |
-- |
6147 | 6147 |
|
6148 |
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)."';
|
|
6148 |
COMMENT ON COLUMN view_full_occurrence_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)."';
|
|
6149 | 6149 |
|
6150 | 6150 |
|
6151 | 6151 |
-- |
6152 |
-- Name: COLUMN "viewFullOccurrence_individual"."individualOrganismObservation.id__@VegX__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
6152 |
-- Name: COLUMN view_full_occurrence_individual."individualOrganismObservation.id__@VegX__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
6153 | 6153 |
-- |
6154 | 6154 |
|
6155 |
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)."';
|
|
6155 |
COMMENT ON COLUMN view_full_occurrence_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)."';
|
|
6156 | 6156 |
|
6157 | 6157 |
|
6158 | 6158 |
-- |
6159 |
-- Name: COLUMN "viewFullOccurrence_individual"."individualID__@DwC__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
6159 |
-- Name: COLUMN view_full_occurrence_individual."individualID__@DwC__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
6160 | 6160 |
-- |
6161 | 6161 |
|
6162 |
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"';
|
|
6162 |
COMMENT ON COLUMN view_full_occurrence_individual."individualID__@DwC__@vegpath.org" IS '"An identifier for an individual or named group of individual organisms represented in the Occurrence"';
|
|
6163 | 6163 |
|
6164 | 6164 |
|
6165 | 6165 |
-- |
6166 |
-- Name: COLUMN "viewFullOccurrence_individual"."individualCount__@DwC__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
6166 |
-- Name: COLUMN view_full_occurrence_individual."individualCount__@DwC__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
6167 | 6167 |
-- |
6168 | 6168 |
|
6169 |
COMMENT ON COLUMN "viewFullOccurrence_individual"."individualCount__@DwC__@vegpath.org" IS '"The number of individuals represented present at the time of the Occurrence"';
|
|
6169 |
COMMENT ON COLUMN view_full_occurrence_individual."individualCount__@DwC__@vegpath.org" IS '"The number of individuals represented present at the time of the Occurrence"';
|
|
6170 | 6170 |
|
6171 | 6171 |
|
6172 | 6172 |
-- |
6173 |
-- Name: COLUMN "viewFullOccurrence_individual"."plantobservation.""_id__@VegBIEN__.public@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
6173 |
-- Name: COLUMN view_full_occurrence_individual."plantobservation.""_id__@VegBIEN__.public@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
6174 | 6174 |
-- |
6175 | 6175 |
|
6176 |
COMMENT ON COLUMN "viewFullOccurrence_individual"."plantobservation.""_id__@VegBIEN__.public@vegpath.org" IS 'http://plantobservation.plantobservation_id__@VegBIEN__.public@vegpath.org;
|
|
6176 |
COMMENT ON COLUMN view_full_occurrence_individual."plantobservation.""_id__@VegBIEN__.public@vegpath.org" IS 'http://plantobservation.plantobservation_id__@VegBIEN__.public@vegpath.org;
|
|
6177 | 6177 |
autogenerated ID for plantobservation'; |
6178 | 6178 |
|
6179 | 6179 |
|
6180 | 6180 |
-- |
6181 |
-- Name: COLUMN "viewFullOccurrence_individual"."TAXONOBSERVATION_ID__@VegBank__.taxonObservation@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
6181 |
-- Name: COLUMN view_full_occurrence_individual."TAXONOBSERVATION_ID__@VegBank__.taxonObservation@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
6182 | 6182 |
-- |
6183 | 6183 |
|
6184 |
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"';
|
|
6184 |
COMMENT ON COLUMN view_full_occurrence_individual."TAXONOBSERVATION_ID__@VegBank__.taxonObservation@vegpath.org" IS 'VegBIEN-autogenerated "identifier assigned to each unique observation of a taxon in a plot"';
|
|
6185 | 6185 |
|
6186 | 6186 |
|
6187 | 6187 |
-- |
... | ... | |
6189 | 6189 |
-- |
6190 | 6190 |
|
6191 | 6191 |
CREATE VIEW analytical_stem_view AS |
6192 |
SELECT "viewFullOccurrence_individual"."datasource__@Brad__.identifier_examples@vegpath.org",
|
|
6193 |
"viewFullOccurrence_individual"."country__@DwC__@vegpath.org",
|
|
6194 |
"viewFullOccurrence_individual"."stateProvince__@DwC__@vegpath.org",
|
|
6195 |
"viewFullOccurrence_individual"."county__@DwC__@vegpath.org",
|
|
6196 |
"viewFullOccurrence_individual"."locality__@DwC__@vegpath.org",
|
|
6197 |
"viewFullOccurrence_individual"."decimalLatitude__@DwC__@vegpath.org",
|
|
6198 |
"viewFullOccurrence_individual"."decimalLongitude__@DwC__@vegpath.org",
|
|
6199 |
"viewFullOccurrence_individual"."coordinateUncertaintyInMeters__@DwC__@vegpath.org",
|
|
6200 |
"viewFullOccurrence_individual"."georeferenceSources__@DwC__@vegpath.org",
|
|
6201 |
"viewFullOccurrence_individual"."georeferenceProtocol__@DwC__@vegpath.org",
|
|
6202 |
"viewFullOccurrence_individual".geovalid_bien,
|
|
6203 |
"viewFullOccurrence_individual"."isNewWorld_bien",
|
|
6204 |
"viewFullOccurrence_individual"."projectID__@VegX__.plotObservation@vegpath.org",
|
|
6205 |
"viewFullOccurrence_individual"."projectContributor[s]__@VegBank__@vegpath.org",
|
|
6206 |
"viewFullOccurrence_individual"."locationID__@DwC__@vegpath.org",
|
|
6207 |
"viewFullOccurrence_individual"."plotName__@VegX__.plot@vegpath.org",
|
|
6208 |
"viewFullOccurrence_individual"."subplot__@SALVIAS__.Plot_data@vegpath.org",
|
|
6209 |
"viewFullOccurrence_individual".location__cultivated__bien,
|
|
6210 |
"viewFullOccurrence_individual"."locationevent.locationevent_id__@VegBIEN__.public@vegpath.org",
|
|
6211 |
"viewFullOccurrence_individual"."eventDate__@DwC__@vegpath.org",
|
|
6212 |
"viewFullOccurrence_individual"."(-minimum-)ElevationInMeters__@DwC__@vegpath.org",
|
|
6213 |
"viewFullOccurrence_individual"."slopeAspect[_deg]__@VegX__.plot@vegpath.org",
|
|
6214 |
"viewFullOccurrence_individual"."slopeGradient[_deg]__@VegX__.plot@vegpath.org",
|
|
6215 |
"viewFullOccurrence_individual"."plot.area[_ha]__@VegX__@vegpath.org",
|
|
6216 |
"viewFullOccurrence_individual"."samplingProtocol__@DwC__@vegpath.org",
|
|
6217 |
"viewFullOccurrence_individual"."temperature[_C]__@VegX__.plotObs.obsCond@vegpath.org",
|
|
6218 |
"viewFullOccurrence_individual"."precip_mm__@SALVIAS__.Plot_metadata@vegpath.org",
|
|
6219 |
"viewFullOccurrence_individual"."stratumName__@VegX__.stratum@vegpath.org",
|
|
6220 |
"viewFullOccurrence_individual"."communityConcept.name__@VegX__.communityDet@vegpath.org",
|
|
6221 |
"viewFullOccurrence_individual"."observationContributor[s]__@VegBank__@vegpath.org",
|
|
6222 |
"viewFullOccurrence_individual"."[custodial_]institutionCode[s]__@DwC__@vegpath.org",
|
|
6223 |
"viewFullOccurrence_individual"."collectionCode__@DwC__@vegpath.org",
|
|
6224 |
"viewFullOccurrence_individual"."catalogNumber__@DwC__@vegpath.org",
|
|
6225 |
"viewFullOccurrence_individual"."occurrenceID__@DwC__@vegpath.org",
|
|
6226 |
"viewFullOccurrence_individual"."recordedBy__@DwC__@vegpath.org",
|
|
6227 |
"viewFullOccurrence_individual"."recordNumber__@DwC__@vegpath.org",
|
|
6228 |
"viewFullOccurrence_individual"."(-Earliest-)DateCollected__-2007-04-17__@DwC__.hist@vegpath.org",
|
|
6229 |
"viewFullOccurrence_individual"."[verbatim_]family__@DwC__@vegpath.org",
|
|
6230 |
"viewFullOccurrence_individual"."[verbatim_]scientificName__@DwC__@vegpath.org",
|
|
6231 |
"viewFullOccurrence_individual"."identifiedBy__@DwC__@vegpath.org",
|
|
6232 |
"viewFullOccurrence_individual"."dateIdentified__@DwC__@vegpath.org",
|
|
6233 |
"viewFullOccurrence_individual"."identificationRemarks__@DwC__@vegpath.org",
|
|
6234 |
"viewFullOccurrence_individual"."Family_matched__@TNRS__@vegpath.org",
|
|
6235 |
"viewFullOccurrence_individual"."Name_matched__@TNRS__@vegpath.org",
|
|
6236 |
"viewFullOccurrence_individual"."Name_matched_author__@TNRS__@vegpath.org",
|
|
6237 |
"viewFullOccurrence_individual"."[higher_plant_group~]higherClassification__@DwC__@vegpath.org",
|
|
6238 |
"viewFullOccurrence_individual"."taxonomicStatus__@DwC__@vegpath.org",
|
|
6239 |
"viewFullOccurrence_individual".scrubbed_family,
|
|
6240 |
"viewFullOccurrence_individual".scrubbed_genus,
|
|
6241 |
"viewFullOccurrence_individual".scrubbed_specific_epithet,
|
|
6242 |
"viewFullOccurrence_individual".scrubbed_species_binomial,
|
|
6243 |
"viewFullOccurrence_individual".scrubbed_taxon_name_no_author,
|
|
6244 |
"viewFullOccurrence_individual".scrubbed_author,
|
|
6245 |
"viewFullOccurrence_individual".scrubbed_taxon_name_with_author,
|
|
6246 |
"viewFullOccurrence_individual"."speciesBinomialWithMorphospecies__@VegCore__@vegpath.org",
|
|
6247 |
"viewFullOccurrence_individual"."[growth_form=]habit__@SALVIAS__.Plot_data@vegpath.org",
|
|
6248 |
"viewFullOccurrence_individual"."reproductiveCondition__@DwC__@vegpath.org",
|
|
6249 |
"viewFullOccurrence_individual".cultivated_bien,
|
|
6250 |
"viewFullOccurrence_individual"."cultivatedBasis_bien",
|
|
6251 |
"viewFullOccurrence_individual"."occurrenceRemarks__@DwC__@vegpath.org",
|
|
6252 |
"viewFullOccurrence_individual"."coverPercent__@VegX__.attribute.ordinal@vegpath.org",
|
|
6253 |
"viewFullOccurrence_individual"."taxonObservation[.id]__@VegBank__@vegpath.org",
|
|
6254 |
"viewFullOccurrence_individual"."taxonNameUsageConcept.authorCode__@VegX__@vegpath.org",
|
|
6255 |
"viewFullOccurrence_individual"."aggregateOrganismObservation.id__@VegX__@vegpath.org",
|
|
6256 |
"viewFullOccurrence_individual"."individualOrganismObservation.id__@VegX__@vegpath.org",
|
|
6257 |
"viewFullOccurrence_individual"."individualID__@DwC__@vegpath.org",
|
|
6258 |
"viewFullOccurrence_individual"."individualCount__@DwC__@vegpath.org",
|
|
6259 |
"viewFullOccurrence_individual"."plantobservation.""_id__@VegBIEN__.public@vegpath.org",
|
|
6260 |
"viewFullOccurrence_individual"."TAXONOBSERVATION_ID__@VegBank__.taxonObservation@vegpath.org",
|
|
6192 |
SELECT view_full_occurrence_individual."datasource__@Brad__.identifier_examples@vegpath.org",
|
|
6193 |
view_full_occurrence_individual."country__@DwC__@vegpath.org",
|
|
6194 |
view_full_occurrence_individual."stateProvince__@DwC__@vegpath.org",
|
|
6195 |
view_full_occurrence_individual."county__@DwC__@vegpath.org",
|
|
6196 |
view_full_occurrence_individual."locality__@DwC__@vegpath.org",
|
|
6197 |
view_full_occurrence_individual."decimalLatitude__@DwC__@vegpath.org",
|
|
6198 |
view_full_occurrence_individual."decimalLongitude__@DwC__@vegpath.org",
|
|
6199 |
view_full_occurrence_individual."coordinateUncertaintyInMeters__@DwC__@vegpath.org",
|
|
6200 |
view_full_occurrence_individual."georeferenceSources__@DwC__@vegpath.org",
|
|
6201 |
view_full_occurrence_individual."georeferenceProtocol__@DwC__@vegpath.org",
|
|
6202 |
view_full_occurrence_individual.geovalid_bien,
|
|
6203 |
view_full_occurrence_individual."isNewWorld_bien",
|
|
6204 |
view_full_occurrence_individual."projectID__@VegX__.plotObservation@vegpath.org",
|
|
6205 |
view_full_occurrence_individual."projectContributor[s]__@VegBank__@vegpath.org",
|
|
6206 |
view_full_occurrence_individual."locationID__@DwC__@vegpath.org",
|
|
6207 |
view_full_occurrence_individual."plotName__@VegX__.plot@vegpath.org",
|
|
6208 |
view_full_occurrence_individual."subplot__@SALVIAS__.Plot_data@vegpath.org",
|
|
6209 |
view_full_occurrence_individual.location__cultivated__bien,
|
|
6210 |
view_full_occurrence_individual."locationevent.locationevent_id__@VegBIEN__.public@vegpath.org",
|
|
6211 |
view_full_occurrence_individual."eventDate__@DwC__@vegpath.org",
|
|
6212 |
view_full_occurrence_individual."(-minimum-)ElevationInMeters__@DwC__@vegpath.org",
|
|
6213 |
view_full_occurrence_individual."slopeAspect[_deg]__@VegX__.plot@vegpath.org",
|
|
6214 |
view_full_occurrence_individual."slopeGradient[_deg]__@VegX__.plot@vegpath.org",
|
|
6215 |
view_full_occurrence_individual."plot.area[_ha]__@VegX__@vegpath.org",
|
|
6216 |
view_full_occurrence_individual."samplingProtocol__@DwC__@vegpath.org",
|
|
6217 |
view_full_occurrence_individual."temperature[_C]__@VegX__.plotObs.obsCond@vegpath.org",
|
|
6218 |
view_full_occurrence_individual."precip_mm__@SALVIAS__.Plot_metadata@vegpath.org",
|
|
6219 |
view_full_occurrence_individual."stratumName__@VegX__.stratum@vegpath.org",
|
|
6220 |
view_full_occurrence_individual."communityConcept.name__@VegX__.communityDet@vegpath.org",
|
|
6221 |
view_full_occurrence_individual."observationContributor[s]__@VegBank__@vegpath.org",
|
|
6222 |
view_full_occurrence_individual."[custodial_]institutionCode[s]__@DwC__@vegpath.org",
|
|
6223 |
view_full_occurrence_individual."collectionCode__@DwC__@vegpath.org",
|
|
6224 |
view_full_occurrence_individual."catalogNumber__@DwC__@vegpath.org",
|
|
6225 |
view_full_occurrence_individual."occurrenceID__@DwC__@vegpath.org",
|
|
6226 |
view_full_occurrence_individual."recordedBy__@DwC__@vegpath.org",
|
|
6227 |
view_full_occurrence_individual."recordNumber__@DwC__@vegpath.org",
|
|
6228 |
view_full_occurrence_individual."(-Earliest-)DateCollected__-2007-04-17__@DwC__.hist@vegpath.org",
|
|
6229 |
view_full_occurrence_individual."[verbatim_]family__@DwC__@vegpath.org",
|
|
6230 |
view_full_occurrence_individual."[verbatim_]scientificName__@DwC__@vegpath.org",
|
|
6231 |
view_full_occurrence_individual."identifiedBy__@DwC__@vegpath.org",
|
|
6232 |
view_full_occurrence_individual."dateIdentified__@DwC__@vegpath.org",
|
|
6233 |
view_full_occurrence_individual."identificationRemarks__@DwC__@vegpath.org",
|
|
6234 |
view_full_occurrence_individual."Family_matched__@TNRS__@vegpath.org",
|
|
6235 |
view_full_occurrence_individual."Name_matched__@TNRS__@vegpath.org",
|
|
6236 |
view_full_occurrence_individual."Name_matched_author__@TNRS__@vegpath.org",
|
|
6237 |
view_full_occurrence_individual."[higher_plant_group~]higherClassification__@DwC__@vegpath.org",
|
|
6238 |
view_full_occurrence_individual."taxonomicStatus__@DwC__@vegpath.org",
|
|
6239 |
view_full_occurrence_individual.scrubbed_family,
|
|
6240 |
view_full_occurrence_individual.scrubbed_genus,
|
|
6241 |
view_full_occurrence_individual.scrubbed_specific_epithet,
|
|
6242 |
view_full_occurrence_individual.scrubbed_species_binomial,
|
|
6243 |
view_full_occurrence_individual.scrubbed_taxon_name_no_author,
|
|
6244 |
view_full_occurrence_individual.scrubbed_author,
|
|
6245 |
view_full_occurrence_individual.scrubbed_taxon_name_with_author,
|
|
6246 |
view_full_occurrence_individual."speciesBinomialWithMorphospecies__@VegCore__@vegpath.org",
|
|
6247 |
view_full_occurrence_individual."[growth_form=]habit__@SALVIAS__.Plot_data@vegpath.org",
|
|
6248 |
view_full_occurrence_individual."reproductiveCondition__@DwC__@vegpath.org",
|
|
6249 |
view_full_occurrence_individual.cultivated_bien,
|
|
6250 |
view_full_occurrence_individual."cultivatedBasis_bien",
|
|
6251 |
view_full_occurrence_individual."occurrenceRemarks__@DwC__@vegpath.org",
|
|
6252 |
view_full_occurrence_individual."coverPercent__@VegX__.attribute.ordinal@vegpath.org",
|
|
6253 |
view_full_occurrence_individual."taxonObservation[.id]__@VegBank__@vegpath.org",
|
|
6254 |
view_full_occurrence_individual."taxonNameUsageConcept.authorCode__@VegX__@vegpath.org",
|
|
6255 |
view_full_occurrence_individual."aggregateOrganismObservation.id__@VegX__@vegpath.org",
|
|
6256 |
view_full_occurrence_individual."individualOrganismObservation.id__@VegX__@vegpath.org",
|
|
6257 |
view_full_occurrence_individual."individualID__@DwC__@vegpath.org",
|
|
6258 |
view_full_occurrence_individual."individualCount__@DwC__@vegpath.org",
|
|
6259 |
view_full_occurrence_individual."plantobservation.""_id__@VegBIEN__.public@vegpath.org",
|
|
6260 |
view_full_occurrence_individual."TAXONOBSERVATION_ID__@VegBank__.taxonObservation@vegpath.org",
|
|
6261 | 6261 |
_m_to_cm(stemobservation.diameterbreastheight_m) AS "stem_dbh[_cm]__@SALVIAS__.Plot_data@vegpath.org", |
6262 | 6262 |
stemobservation.height_m AS "stemHeight[_m]__@VegBank__.stemCount@vegpath.org", |
6263 | 6263 |
stemobservation.tag AS "[tag=]identificationLabel__@VegX__.individual@vegpath.org", |
6264 | 6264 |
stemobservation.xposition_m AS "relativeX[_m]__@VegX__.individualOrganismObs@vegpath.org", |
6265 | 6265 |
stemobservation.yposition_m AS "relativeY[_m]__@VegX__.individualOrganismObs@vegpath.org", |
6266 | 6266 |
stemobservation.authorstemcode AS "stemCode__@VegBank__.stemLocation@vegpath.org" |
6267 |
FROM ("viewFullOccurrence_individual"
|
|
6268 |
LEFT JOIN stemobservation ON ((stemobservation.plantobservation_id = "viewFullOccurrence_individual"."plantobservation.""_id__@VegBIEN__.public@vegpath.org")));
|
|
6267 |
FROM (view_full_occurrence_individual
|
|
6268 |
LEFT JOIN stemobservation ON ((stemobservation.plantobservation_id = view_full_occurrence_individual."plantobservation.""_id__@VegBIEN__.public@vegpath.org")));
|
|
6269 | 6269 |
|
6270 | 6270 |
|
6271 | 6271 |
-- |
... | ... | |
9081 | 9081 |
|
9082 | 9082 |
|
9083 | 9083 |
-- |
9084 |
-- Name: viewFullOccurrence_individual_view; Type: VIEW; Schema: public; Owner: -
|
|
9084 |
-- Name: view_full_occurrence_individual_view; Type: VIEW; Schema: public; Owner: -
|
|
9085 | 9085 |
-- |
9086 | 9086 |
|
9087 |
CREATE VIEW "viewFullOccurrence_individual_view" AS
|
|
9087 |
CREATE VIEW view_full_occurrence_individual_view AS
|
|
9088 | 9088 |
SELECT "plot.**"."datasource__@Brad__.identifier_examples@vegpath.org", |
9089 | 9089 |
"plot.**"."country__@DwC__@vegpath.org", |
9090 | 9090 |
"plot.**"."stateProvince__@DwC__@vegpath.org", |
... | ... | |
9174 | 9174 |
|
9175 | 9175 |
|
9176 | 9176 |
-- |
9177 |
-- Name: VIEW "viewFullOccurrence_individual_view"; Type: COMMENT; Schema: public; Owner: -
|
|
9177 |
-- Name: VIEW view_full_occurrence_individual_view; Type: COMMENT; Schema: public; Owner: -
|
|
9178 | 9178 |
-- |
9179 | 9179 |
|
9180 |
COMMENT ON VIEW "viewFullOccurrence_individual_view" IS '
|
|
9180 |
COMMENT ON VIEW view_full_occurrence_individual_view IS '
|
|
9181 | 9181 |
after updating this: |
9182 |
SELECT viewFullOccurrence_individual_view_modify()
|
|
9182 |
SELECT view_full_occurrence_individual_view_modify()
|
|
9183 | 9183 |
add applicable columns to analytical_specimen, analytical_plot |
9184 | 9184 |
|
9185 | 9185 |
materialize time: 22 h ("79217026.810 ms") @r14089 @vegbiendev |
... | ... | |
9193 | 9193 |
|
9194 | 9194 |
|
9195 | 9195 |
-- |
9196 |
-- Name: COLUMN "viewFullOccurrence_individual_view"."datasource__@Brad__.identifier_examples@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
9196 |
-- Name: COLUMN view_full_occurrence_individual_view."datasource__@Brad__.identifier_examples@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
9197 | 9197 |
-- |
9198 | 9198 |
|
9199 |
COMMENT ON COLUMN "viewFullOccurrence_individual_view"."datasource__@Brad__.identifier_examples@vegpath.org" IS '"the person [or] institution that provided the data [to this database] (the *proximate* data provider)"';
|
|
9199 |
COMMENT ON COLUMN view_full_occurrence_individual_view."datasource__@Brad__.identifier_examples@vegpath.org" IS '"the person [or] institution that provided the data [to this database] (the *proximate* data provider)"';
|
|
9200 | 9200 |
|
9201 | 9201 |
|
9202 | 9202 |
-- |
9203 |
-- Name: COLUMN "viewFullOccurrence_individual_view"."country__@DwC__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
9203 |
-- Name: COLUMN view_full_occurrence_individual_view."country__@DwC__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
9204 | 9204 |
-- |
9205 | 9205 |
|
9206 |
COMMENT ON COLUMN "viewFullOccurrence_individual_view"."country__@DwC__@vegpath.org" IS 'http://geoscrub.geoscrub_output.acceptedCountry__@VegBIEN__@vegpath.org;
|
|
9206 |
COMMENT ON COLUMN view_full_occurrence_individual_view."country__@DwC__@vegpath.org" IS 'http://geoscrub.geoscrub_output.acceptedCountry__@VegBIEN__@vegpath.org;
|
|
9207 | 9207 |
"The name of the country or major administrative unit in which the Location occurs"'; |
9208 | 9208 |
|
9209 | 9209 |
|
9210 | 9210 |
-- |
9211 |
-- Name: COLUMN "viewFullOccurrence_individual_view"."stateProvince__@DwC__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
9211 |
-- Name: COLUMN view_full_occurrence_individual_view."stateProvince__@DwC__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
9212 | 9212 |
-- |
9213 | 9213 |
|
9214 |
COMMENT ON COLUMN "viewFullOccurrence_individual_view"."stateProvince__@DwC__@vegpath.org" IS '"The name of the next smaller administrative region than country (state, province, canton, department, region, etc.) in which the Location occurs"';
|
|
9214 |
COMMENT ON COLUMN view_full_occurrence_individual_view."stateProvince__@DwC__@vegpath.org" IS '"The name of the next smaller administrative region than country (state, province, canton, department, region, etc.) in which the Location occurs"';
|
|
9215 | 9215 |
|
9216 | 9216 |
|
9217 | 9217 |
-- |
9218 |
-- Name: COLUMN "viewFullOccurrence_individual_view"."county__@DwC__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
9218 |
-- Name: COLUMN view_full_occurrence_individual_view."county__@DwC__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
9219 | 9219 |
-- |
9220 | 9220 |
|
9221 |
COMMENT ON COLUMN "viewFullOccurrence_individual_view"."county__@DwC__@vegpath.org" IS '"The full, unabbreviated name of the next smaller administrative region than stateProvince (county, shire, department, etc.) in which the Location occurs"';
|
|
9221 |
COMMENT ON COLUMN view_full_occurrence_individual_view."county__@DwC__@vegpath.org" IS '"The full, unabbreviated name of the next smaller administrative region than stateProvince (county, shire, department, etc.) in which the Location occurs"';
|
|
9222 | 9222 |
|
9223 | 9223 |
|
9224 | 9224 |
-- |
9225 |
-- Name: COLUMN "viewFullOccurrence_individual_view"."locality__@DwC__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
9225 |
-- Name: COLUMN view_full_occurrence_individual_view."locality__@DwC__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
9226 | 9226 |
-- |
9227 | 9227 |
|
9228 |
COMMENT ON COLUMN "viewFullOccurrence_individual_view"."locality__@DwC__@vegpath.org" IS '"The specific description of the place"';
|
|
9228 |
COMMENT ON COLUMN view_full_occurrence_individual_view."locality__@DwC__@vegpath.org" IS '"The specific description of the place"';
|
|
9229 | 9229 |
|
9230 | 9230 |
|
9231 | 9231 |
-- |
9232 |
-- Name: COLUMN "viewFullOccurrence_individual_view"."decimalLatitude__@DwC__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
9232 |
-- Name: COLUMN view_full_occurrence_individual_view."decimalLatitude__@DwC__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
9233 | 9233 |
-- |
9234 | 9234 |
|
9235 |
COMMENT ON COLUMN "viewFullOccurrence_individual_view"."decimalLatitude__@DwC__@vegpath.org" IS '"The geographic latitude (in decimal degrees, using the spatial reference system given in geodeticDatum) of the geographic center of a Location"';
|
|
9235 |
COMMENT ON COLUMN view_full_occurrence_individual_view."decimalLatitude__@DwC__@vegpath.org" IS '"The geographic latitude (in decimal degrees, using the spatial reference system given in geodeticDatum) of the geographic center of a Location"';
|
|
9236 | 9236 |
|
9237 | 9237 |
|
9238 | 9238 |
-- |
9239 |
-- Name: COLUMN "viewFullOccurrence_individual_view"."decimalLongitude__@DwC__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
9239 |
-- Name: COLUMN view_full_occurrence_individual_view."decimalLongitude__@DwC__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
9240 | 9240 |
-- |
9241 | 9241 |
|
9242 |
COMMENT ON COLUMN "viewFullOccurrence_individual_view"."decimalLongitude__@DwC__@vegpath.org" IS '"The geographic longitude (in decimal degrees, using the spatial reference system given in geodeticDatum) of the geographic center of a Location"';
|
|
9242 |
COMMENT ON COLUMN view_full_occurrence_individual_view."decimalLongitude__@DwC__@vegpath.org" IS '"The geographic longitude (in decimal degrees, using the spatial reference system given in geodeticDatum) of the geographic center of a Location"';
|
|
9243 | 9243 |
|
9244 | 9244 |
|
9245 | 9245 |
-- |
9246 |
-- Name: COLUMN "viewFullOccurrence_individual_view"."coordinateUncertaintyInMeters__@DwC__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
9246 |
-- Name: COLUMN view_full_occurrence_individual_view."coordinateUncertaintyInMeters__@DwC__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
9247 | 9247 |
-- |
9248 | 9248 |
|
9249 |
COMMENT ON COLUMN "viewFullOccurrence_individual_view"."coordinateUncertaintyInMeters__@DwC__@vegpath.org" IS 'for a point observation, this is the fuzziness of the coordinates. for a plot (or other shape), this is the radius of the circle that circumscribes the entire plot, or the fuzziness, whichever is greater. note that the DwC definition is confusingly worded: it uses the ambiguous term Location, which sometimes refers to the asserted named place, but which they intended to refer to the plot or point.';
|
|
9249 |
COMMENT ON COLUMN view_full_occurrence_individual_view."coordinateUncertaintyInMeters__@DwC__@vegpath.org" IS 'for a point observation, this is the fuzziness of the coordinates. for a plot (or other shape), this is the radius of the circle that circumscribes the entire plot, or the fuzziness, whichever is greater. note that the DwC definition is confusingly worded: it uses the ambiguous term Location, which sometimes refers to the asserted named place, but which they intended to refer to the plot or point.';
|
|
9250 | 9250 |
|
9251 | 9251 |
|
9252 | 9252 |
-- |
9253 |
-- Name: COLUMN "viewFullOccurrence_individual_view"."georeferenceSources__@DwC__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
9253 |
-- Name: COLUMN view_full_occurrence_individual_view."georeferenceSources__@DwC__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
9254 | 9254 |
-- |
9255 | 9255 |
|
9256 |
COMMENT ON COLUMN "viewFullOccurrence_individual_view"."georeferenceSources__@DwC__@vegpath.org" IS '"A list (concatenated and separated) of maps, gazetteers, or other resources used to georeference the Location, described specifically enough to allow anyone in the future to use the same resources"';
|
|
9256 |
COMMENT ON COLUMN view_full_occurrence_individual_view."georeferenceSources__@DwC__@vegpath.org" IS '"A list (concatenated and separated) of maps, gazetteers, or other resources used to georeference the Location, described specifically enough to allow anyone in the future to use the same resources"';
|
|
9257 | 9257 |
|
9258 | 9258 |
|
9259 | 9259 |
-- |
9260 |
-- Name: COLUMN "viewFullOccurrence_individual_view"."georeferenceProtocol__@DwC__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
9260 |
-- Name: COLUMN view_full_occurrence_individual_view."georeferenceProtocol__@DwC__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
9261 | 9261 |
-- |
9262 | 9262 |
|
9263 |
COMMENT ON COLUMN "viewFullOccurrence_individual_view"."georeferenceProtocol__@DwC__@vegpath.org" IS '"A description or reference to the methods used to determine the spatial footprint, coordinates, and uncertainties"';
|
|
9263 |
COMMENT ON COLUMN view_full_occurrence_individual_view."georeferenceProtocol__@DwC__@vegpath.org" IS '"A description or reference to the methods used to determine the spatial footprint, coordinates, and uncertainties"';
|
|
9264 | 9264 |
|
9265 | 9265 |
|
9266 | 9266 |
-- |
9267 |
-- Name: COLUMN "viewFullOccurrence_individual_view".geovalid_bien; Type: COMMENT; Schema: public; Owner: -
|
|
9267 |
-- Name: COLUMN view_full_occurrence_individual_view.geovalid_bien; Type: COMMENT; Schema: public; Owner: -
|
|
9268 | 9268 |
-- |
9269 | 9269 |
|
9270 |
COMMENT ON COLUMN "viewFullOccurrence_individual_view".geovalid_bien IS 'whether the coordinates are within the boundary of the asserted named places';
|
|
9270 |
COMMENT ON COLUMN view_full_occurrence_individual_view.geovalid_bien IS 'whether the coordinates are within the boundary of the asserted named places';
|
|
9271 | 9271 |
|
9272 | 9272 |
|
9273 | 9273 |
-- |
9274 |
-- Name: COLUMN "viewFullOccurrence_individual_view"."isNewWorld_bien"; Type: COMMENT; Schema: public; Owner: -
|
|
9274 |
-- Name: COLUMN view_full_occurrence_individual_view."isNewWorld_bien"; Type: COMMENT; Schema: public; Owner: -
|
|
9275 | 9275 |
-- |
9276 | 9276 |
|
9277 |
COMMENT ON COLUMN "viewFullOccurrence_individual_view"."isNewWorld_bien" IS 'whether the country is in the Americas';
|
|
9277 |
COMMENT ON COLUMN view_full_occurrence_individual_view."isNewWorld_bien" IS 'whether the country is in the Americas';
|
|
9278 | 9278 |
|
9279 | 9279 |
|
9280 | 9280 |
-- |
9281 |
-- Name: COLUMN "viewFullOccurrence_individual_view"."projectID__@VegX__.plotObservation@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
9281 |
-- Name: COLUMN view_full_occurrence_individual_view."projectID__@VegX__.plotObservation@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
9282 | 9282 |
-- |
9283 | 9283 |
|
9284 |
COMMENT ON COLUMN "viewFullOccurrence_individual_view"."projectID__@VegX__.plotObservation@vegpath.org" IS 'http://project.sourceaccessioncode__@VegBIEN__.public@vegpath.org;
|
|
9284 |
COMMENT ON COLUMN view_full_occurrence_individual_view."projectID__@VegX__.plotObservation@vegpath.org" IS 'http://project.sourceaccessioncode__@VegBIEN__.public@vegpath.org;
|
|
9285 | 9285 |
"A reference to a specific ''project''"'; |
9286 | 9286 |
|
9287 | 9287 |
|
9288 | 9288 |
-- |
9289 |
-- Name: COLUMN "viewFullOccurrence_individual_view"."projectContributor[s]__@VegBank__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
9289 |
-- Name: COLUMN view_full_occurrence_individual_view."projectContributor[s]__@VegBank__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
9290 | 9290 |
-- |
9291 | 9291 |
|
9292 |
COMMENT ON COLUMN "viewFullOccurrence_individual_view"."projectContributor[s]__@VegBank__@vegpath.org" IS '"intersection entit[ies] used to ''link'' a party with a specific project wherein vegetation plots are described"';
|
|
9292 |
COMMENT ON COLUMN view_full_occurrence_individual_view."projectContributor[s]__@VegBank__@vegpath.org" IS '"intersection entit[ies] used to ''link'' a party with a specific project wherein vegetation plots are described"';
|
|
9293 | 9293 |
|
9294 | 9294 |
|
9295 | 9295 |
-- |
9296 |
-- Name: COLUMN "viewFullOccurrence_individual_view"."locationID__@DwC__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
9296 |
-- Name: COLUMN view_full_occurrence_individual_view."locationID__@DwC__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
9297 | 9297 |
-- |
9298 | 9298 |
|
9299 |
COMMENT ON COLUMN "viewFullOccurrence_individual_view"."locationID__@DwC__@vegpath.org" IS '"An identifier for the set of location information (data associated with dcterms:Location)"';
|
|
9299 |
COMMENT ON COLUMN view_full_occurrence_individual_view."locationID__@DwC__@vegpath.org" IS '"An identifier for the set of location information (data associated with dcterms:Location)"';
|
|
9300 | 9300 |
|
9301 | 9301 |
|
9302 | 9302 |
-- |
9303 |
-- Name: COLUMN "viewFullOccurrence_individual_view"."plotName__@VegX__.plot@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
9303 |
-- Name: COLUMN view_full_occurrence_individual_view."plotName__@VegX__.plot@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
9304 | 9304 |
-- |
9305 | 9305 |
|
9306 |
COMMENT ON COLUMN "viewFullOccurrence_individual_view"."plotName__@VegX__.plot@vegpath.org" IS '"Name or label for a plot"';
|
|
9306 |
COMMENT ON COLUMN view_full_occurrence_individual_view."plotName__@VegX__.plot@vegpath.org" IS '"Name or label for a plot"';
|
|
9307 | 9307 |
|
9308 | 9308 |
|
9309 | 9309 |
-- |
9310 |
-- Name: COLUMN "viewFullOccurrence_individual_view"."subplot__@SALVIAS__.Plot_data@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
9310 |
-- Name: COLUMN view_full_occurrence_individual_view."subplot__@SALVIAS__.Plot_data@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
9311 | 9311 |
-- |
9312 | 9312 |
|
9313 |
COMMENT ON COLUMN "viewFullOccurrence_individual_view"."subplot__@SALVIAS__.Plot_data@vegpath.org" IS 'http://location.authorlocationcode__@VegBIEN__.public@vegpath.org;
|
|
9313 |
COMMENT ON COLUMN view_full_occurrence_individual_view."subplot__@SALVIAS__.Plot_data@vegpath.org" IS 'http://location.authorlocationcode__@VegBIEN__.public@vegpath.org;
|
|
9314 | 9314 |
"Code for subplot, line, or any other subsample or subdivision of plot"'; |
9315 | 9315 |
|
9316 | 9316 |
|
9317 | 9317 |
-- |
9318 |
-- Name: COLUMN "viewFullOccurrence_individual_view".location__cultivated__bien; Type: COMMENT; Schema: public; Owner: -
|
|
9318 |
-- Name: COLUMN view_full_occurrence_individual_view.location__cultivated__bien; Type: COMMENT; Schema: public; Owner: -
|
|
9319 | 9319 |
-- |
9320 | 9320 |
|
9321 |
COMMENT ON COLUMN "viewFullOccurrence_individual_view".location__cultivated__bien IS 'whether the occurrence''s *location* was flagged as cultivated. note that this refers just to the cultivated status of the *location*; the occurrence may be cultivated even if the location isn''t.';
|
|
9321 |
COMMENT ON COLUMN view_full_occurrence_individual_view.location__cultivated__bien IS 'whether the occurrence''s *location* was flagged as cultivated. note that this refers just to the cultivated status of the *location*; the occurrence may be cultivated even if the location isn''t.';
|
|
9322 | 9322 |
|
9323 | 9323 |
|
9324 | 9324 |
-- |
9325 |
-- Name: COLUMN "viewFullOccurrence_individual_view"."locationevent.locationevent_id__@VegBIEN__.public@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
9325 |
-- Name: COLUMN view_full_occurrence_individual_view."locationevent.locationevent_id__@VegBIEN__.public@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
9326 | 9326 |
-- |
9327 | 9327 |
|
9328 |
COMMENT ON COLUMN "viewFullOccurrence_individual_view"."locationevent.locationevent_id__@VegBIEN__.public@vegpath.org" IS 'http://locationevent.locationevent_id__@VegBIEN__.public@vegpath.org;
|
|
9328 |
COMMENT ON COLUMN view_full_occurrence_individual_view."locationevent.locationevent_id__@VegBIEN__.public@vegpath.org" IS 'http://locationevent.locationevent_id__@VegBIEN__.public@vegpath.org;
|
|
9329 | 9329 |
autogenerated ID for locationevent'; |
9330 | 9330 |
|
9331 | 9331 |
|
9332 | 9332 |
-- |
9333 |
-- Name: COLUMN "viewFullOccurrence_individual_view"."eventDate__@DwC__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
9333 |
-- Name: COLUMN view_full_occurrence_individual_view."eventDate__@DwC__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
9334 | 9334 |
-- |
9335 | 9335 |
|
9336 |
COMMENT ON COLUMN "viewFullOccurrence_individual_view"."eventDate__@DwC__@vegpath.org" IS '"The date-time or interval during which an Event occurred. For occurrences, this is the date-time when the event was recorded."';
|
|
9336 |
COMMENT ON COLUMN view_full_occurrence_individual_view."eventDate__@DwC__@vegpath.org" IS '"The date-time or interval during which an Event occurred. For occurrences, this is the date-time when the event was recorded."';
|
|
9337 | 9337 |
|
9338 | 9338 |
|
9339 | 9339 |
-- |
9340 |
-- Name: COLUMN "viewFullOccurrence_individual_view"."(-minimum-)ElevationInMeters__@DwC__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
9340 |
-- Name: COLUMN view_full_occurrence_individual_view."(-minimum-)ElevationInMeters__@DwC__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
9341 | 9341 |
-- |
9342 | 9342 |
|
9343 |
COMMENT ON COLUMN "viewFullOccurrence_individual_view"."(-minimum-)ElevationInMeters__@DwC__@vegpath.org" IS 'the "elevation (altitude, usually above sea level), in meters"';
|
|
9343 |
COMMENT ON COLUMN view_full_occurrence_individual_view."(-minimum-)ElevationInMeters__@DwC__@vegpath.org" IS 'the "elevation (altitude, usually above sea level), in meters"';
|
|
9344 | 9344 |
|
9345 | 9345 |
|
9346 | 9346 |
-- |
9347 |
-- Name: COLUMN "viewFullOccurrence_individual_view"."slopeAspect[_deg]__@VegX__.plot@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
9347 |
-- Name: COLUMN view_full_occurrence_individual_view."slopeAspect[_deg]__@VegX__.plot@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
9348 | 9348 |
-- |
9349 | 9349 |
|
9350 |
COMMENT ON COLUMN "viewFullOccurrence_individual_view"."slopeAspect[_deg]__@VegX__.plot@vegpath.org" IS '"Representative azimuth of slope gradient (0-360 degrees) or as a cardinal direction (e.g. N, S, NE)"';
|
|
9350 |
COMMENT ON COLUMN view_full_occurrence_individual_view."slopeAspect[_deg]__@VegX__.plot@vegpath.org" IS '"Representative azimuth of slope gradient (0-360 degrees) or as a cardinal direction (e.g. N, S, NE)"';
|
|
9351 | 9351 |
|
9352 | 9352 |
|
9353 | 9353 |
-- |
9354 |
-- Name: COLUMN "viewFullOccurrence_individual_view"."slopeGradient[_deg]__@VegX__.plot@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
9354 |
-- Name: COLUMN view_full_occurrence_individual_view."slopeGradient[_deg]__@VegX__.plot@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
9355 | 9355 |
-- |
9356 | 9356 |
|
9357 |
COMMENT ON COLUMN "viewFullOccurrence_individual_view"."slopeGradient[_deg]__@VegX__.plot@vegpath.org" IS '"Representative inclination of slope in degrees"';
|
|
9357 |
COMMENT ON COLUMN view_full_occurrence_individual_view."slopeGradient[_deg]__@VegX__.plot@vegpath.org" IS '"Representative inclination of slope in degrees"';
|
|
9358 | 9358 |
|
9359 | 9359 |
|
9360 | 9360 |
-- |
9361 |
-- Name: COLUMN "viewFullOccurrence_individual_view"."plot.area[_ha]__@VegX__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
9361 |
-- Name: COLUMN view_full_occurrence_individual_view."plot.area[_ha]__@VegX__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
9362 | 9362 |
-- |
9363 | 9363 |
|
9364 |
COMMENT ON COLUMN "viewFullOccurrence_individual_view"."plot.area[_ha]__@VegX__@vegpath.org" IS '"Total area of the plot"';
|
|
9364 |
COMMENT ON COLUMN view_full_occurrence_individual_view."plot.area[_ha]__@VegX__@vegpath.org" IS '"Total area of the plot"';
|
|
9365 | 9365 |
|
9366 | 9366 |
|
9367 | 9367 |
-- |
9368 |
-- Name: COLUMN "viewFullOccurrence_individual_view"."samplingProtocol__@DwC__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
9368 |
-- Name: COLUMN view_full_occurrence_individual_view."samplingProtocol__@DwC__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
9369 | 9369 |
-- |
9370 | 9370 |
|
9371 |
COMMENT ON COLUMN "viewFullOccurrence_individual_view"."samplingProtocol__@DwC__@vegpath.org" IS '"The name of, reference to, or description of the method or protocol used during an Event"';
|
|
9371 |
COMMENT ON COLUMN view_full_occurrence_individual_view."samplingProtocol__@DwC__@vegpath.org" IS '"The name of, reference to, or description of the method or protocol used during an Event"';
|
|
9372 | 9372 |
|
9373 | 9373 |
|
9374 | 9374 |
-- |
9375 |
-- Name: COLUMN "viewFullOccurrence_individual_view"."temperature[_C]__@VegX__.plotObs.obsCond@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
9375 |
-- Name: COLUMN view_full_occurrence_individual_view."temperature[_C]__@VegX__.plotObs.obsCond@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
9376 | 9376 |
-- |
9377 | 9377 |
|
9378 |
COMMENT ON COLUMN "viewFullOccurrence_individual_view"."temperature[_C]__@VegX__.plotObs.obsCond@vegpath.org" IS '"Temperature during observation [...] [in] Celsius"';
|
|
9378 |
COMMENT ON COLUMN view_full_occurrence_individual_view."temperature[_C]__@VegX__.plotObs.obsCond@vegpath.org" IS '"Temperature during observation [...] [in] Celsius"';
|
|
9379 | 9379 |
|
9380 | 9380 |
|
9381 | 9381 |
-- |
9382 |
-- Name: COLUMN "viewFullOccurrence_individual_view"."precip_mm__@SALVIAS__.Plot_metadata@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
9382 |
-- Name: COLUMN view_full_occurrence_individual_view."precip_mm__@SALVIAS__.Plot_metadata@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
9383 | 9383 |
-- |
9384 | 9384 |
|
9385 |
COMMENT ON COLUMN "viewFullOccurrence_individual_view"."precip_mm__@SALVIAS__.Plot_metadata@vegpath.org" IS '"Total annual precipitation, in mm"';
|
|
9385 |
COMMENT ON COLUMN view_full_occurrence_individual_view."precip_mm__@SALVIAS__.Plot_metadata@vegpath.org" IS '"Total annual precipitation, in mm"';
|
|
9386 | 9386 |
|
9387 | 9387 |
|
9388 | 9388 |
-- |
9389 |
-- Name: COLUMN "viewFullOccurrence_individual_view"."stratumName__@VegX__.stratum@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
9389 |
-- Name: COLUMN view_full_occurrence_individual_view."stratumName__@VegX__.stratum@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
9390 | 9390 |
-- |
9391 | 9391 |
|
9392 |
COMMENT ON COLUMN "viewFullOccurrence_individual_view"."stratumName__@VegX__.stratum@vegpath.org" IS '"Name associated with this stratum"';
|
|
9392 |
COMMENT ON COLUMN view_full_occurrence_individual_view."stratumName__@VegX__.stratum@vegpath.org" IS '"Name associated with this stratum"';
|
|
9393 | 9393 |
|
9394 | 9394 |
|
9395 | 9395 |
-- |
9396 |
-- Name: COLUMN "viewFullOccurrence_individual_view"."communityConcept.name__@VegX__.communityDet@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
9396 |
-- Name: COLUMN view_full_occurrence_individual_view."communityConcept.name__@VegX__.communityDet@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
9397 | 9397 |
-- |
9398 | 9398 |
|
9399 |
COMMENT ON COLUMN "viewFullOccurrence_individual_view"."communityConcept.name__@VegX__.communityDet@vegpath.org" IS '"A textual label for a community type. A community type is an abstract grouping of organisms that tend to co-occur on the landscape due to shared ecological requirements or preferences."';
|
|
9399 |
COMMENT ON COLUMN view_full_occurrence_individual_view."communityConcept.name__@VegX__.communityDet@vegpath.org" IS '"A textual label for a community type. A community type is an abstract grouping of organisms that tend to co-occur on the landscape due to shared ecological requirements or preferences."';
|
|
9400 | 9400 |
|
9401 | 9401 |
|
9402 | 9402 |
-- |
9403 |
-- Name: COLUMN "viewFullOccurrence_individual_view"."observationContributor[s]__@VegBank__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
9403 |
-- Name: COLUMN view_full_occurrence_individual_view."observationContributor[s]__@VegBank__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
9404 | 9404 |
-- |
9405 | 9405 |
|
9406 |
COMMENT ON COLUMN "viewFullOccurrence_individual_view"."observationContributor[s]__@VegBank__@vegpath.org" IS '"intersection[s] that link[] a party with a specific plot observation event"';
|
|
9406 |
COMMENT ON COLUMN view_full_occurrence_individual_view."observationContributor[s]__@VegBank__@vegpath.org" IS '"intersection[s] that link[] a party with a specific plot observation event"';
|
|
9407 | 9407 |
|
9408 | 9408 |
|
9409 | 9409 |
-- |
9410 |
-- Name: COLUMN "viewFullOccurrence_individual_view"."[custodial_]institutionCode[s]__@DwC__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
9410 |
-- Name: COLUMN view_full_occurrence_individual_view."[custodial_]institutionCode[s]__@DwC__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
9411 | 9411 |
-- |
9412 | 9412 |
|
9413 |
COMMENT ON COLUMN "viewFullOccurrence_individual_view"."[custodial_]institutionCode[s]__@DwC__@vegpath.org" IS '"The name[s] (or acronym[s]) in use by the institution[s] having custody of the object(s) or information referred to in the record"';
|
|
9413 |
COMMENT ON COLUMN view_full_occurrence_individual_view."[custodial_]institutionCode[s]__@DwC__@vegpath.org" IS '"The name[s] (or acronym[s]) in use by the institution[s] having custody of the object(s) or information referred to in the record"';
|
|
9414 | 9414 |
|
9415 | 9415 |
|
9416 | 9416 |
-- |
9417 |
-- Name: COLUMN "viewFullOccurrence_individual_view"."collectionCode__@DwC__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
9417 |
-- Name: COLUMN view_full_occurrence_individual_view."collectionCode__@DwC__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
9418 | 9418 |
-- |
9419 | 9419 |
|
9420 |
COMMENT ON COLUMN "viewFullOccurrence_individual_view"."collectionCode__@DwC__@vegpath.org" IS '"The name, acronym, coden, or initialism identifying the collection or data set from which the record was derived"';
|
|
9420 |
COMMENT ON COLUMN view_full_occurrence_individual_view."collectionCode__@DwC__@vegpath.org" IS '"The name, acronym, coden, or initialism identifying the collection or data set from which the record was derived"';
|
|
9421 | 9421 |
|
9422 | 9422 |
|
9423 | 9423 |
-- |
9424 |
-- Name: COLUMN "viewFullOccurrence_individual_view"."catalogNumber__@DwC__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
9424 |
-- Name: COLUMN view_full_occurrence_individual_view."catalogNumber__@DwC__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
9425 | 9425 |
-- |
9426 | 9426 |
|
9427 |
COMMENT ON COLUMN "viewFullOccurrence_individual_view"."catalogNumber__@DwC__@vegpath.org" IS '"An identifier (preferably unique) for the record within the data set or collection"';
|
|
9427 |
COMMENT ON COLUMN view_full_occurrence_individual_view."catalogNumber__@DwC__@vegpath.org" IS '"An identifier (preferably unique) for the record within the data set or collection"';
|
|
9428 | 9428 |
|
9429 | 9429 |
|
9430 | 9430 |
-- |
9431 |
-- Name: COLUMN "viewFullOccurrence_individual_view"."occurrenceID__@DwC__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
9431 |
-- Name: COLUMN view_full_occurrence_individual_view."occurrenceID__@DwC__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
9432 | 9432 |
-- |
9433 | 9433 |
|
9434 |
COMMENT ON COLUMN "viewFullOccurrence_individual_view"."occurrenceID__@DwC__@vegpath.org" IS '"An identifier for the Occurrence (as opposed to a particular digital record of the occurrence). In the absence of a persistent global unique identifier, construct one from a combination of identifiers in the record that will most closely make the occurrenceID globally unique."';
|
|
9434 |
COMMENT ON COLUMN view_full_occurrence_individual_view."occurrenceID__@DwC__@vegpath.org" IS '"An identifier for the Occurrence (as opposed to a particular digital record of the occurrence). In the absence of a persistent global unique identifier, construct one from a combination of identifiers in the record that will most closely make the occurrenceID globally unique."';
|
|
9435 | 9435 |
|
9436 | 9436 |
|
9437 | 9437 |
-- |
9438 |
-- Name: COLUMN "viewFullOccurrence_individual_view"."recordedBy__@DwC__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
9438 |
-- Name: COLUMN view_full_occurrence_individual_view."recordedBy__@DwC__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
9439 | 9439 |
-- |
9440 | 9440 |
|
9441 |
COMMENT ON COLUMN "viewFullOccurrence_individual_view"."recordedBy__@DwC__@vegpath.org" IS '"A list (concatenated and separated) of names of people, groups, or organizations responsible for recording the original Occurrence. The primary collector or observer, especially one who applies a personal identifier (recordNumber), should be listed first."';
|
|
9441 |
COMMENT ON COLUMN view_full_occurrence_individual_view."recordedBy__@DwC__@vegpath.org" IS '"A list (concatenated and separated) of names of people, groups, or organizations responsible for recording the original Occurrence. The primary collector or observer, especially one who applies a personal identifier (recordNumber), should be listed first."';
|
|
9442 | 9442 |
|
9443 | 9443 |
|
9444 | 9444 |
-- |
9445 |
-- Name: COLUMN "viewFullOccurrence_individual_view"."recordNumber__@DwC__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
9445 |
-- Name: COLUMN view_full_occurrence_individual_view."recordNumber__@DwC__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
9446 | 9446 |
-- |
9447 | 9447 |
|
9448 |
COMMENT ON COLUMN "viewFullOccurrence_individual_view"."recordNumber__@DwC__@vegpath.org" IS '"An identifier given to the Occurrence at the time it was recorded. Often serves as a link between field notes and an Occurrence record, such as a specimen collector''s number."';
|
|
9448 |
COMMENT ON COLUMN view_full_occurrence_individual_view."recordNumber__@DwC__@vegpath.org" IS '"An identifier given to the Occurrence at the time it was recorded. Often serves as a link between field notes and an Occurrence record, such as a specimen collector''s number."';
|
|
9449 | 9449 |
|
9450 | 9450 |
|
9451 | 9451 |
-- |
9452 |
-- Name: COLUMN "viewFullOccurrence_individual_view"."(-Earliest-)DateCollected__-2007-04-17__@DwC__.hist@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
9452 |
-- Name: COLUMN view_full_occurrence_individual_view."(-Earliest-)DateCollected__-2007-04-17__@DwC__.hist@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
9453 | 9453 |
-- |
9454 | 9454 |
|
9455 |
COMMENT ON COLUMN "viewFullOccurrence_individual_view"."(-Earliest-)DateCollected__-2007-04-17__@DwC__.hist@vegpath.org" IS 'the "date-time (Common Era calendar) in a date-time period during which an organism or group of organisms was collected or observed"';
|
|
9455 |
COMMENT ON COLUMN view_full_occurrence_individual_view."(-Earliest-)DateCollected__-2007-04-17__@DwC__.hist@vegpath.org" IS 'the "date-time (Common Era calendar) in a date-time period during which an organism or group of organisms was collected or observed"';
|
|
9456 | 9456 |
|
9457 | 9457 |
|
9458 | 9458 |
-- |
9459 |
-- Name: COLUMN "viewFullOccurrence_individual_view"."[verbatim_]family__@DwC__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
9459 |
-- Name: COLUMN view_full_occurrence_individual_view."[verbatim_]family__@DwC__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
9460 | 9460 |
-- |
9461 | 9461 |
|
9462 |
COMMENT ON COLUMN "viewFullOccurrence_individual_view"."[verbatim_]family__@DwC__@vegpath.org" IS '"The full scientific name of the family in which the taxon is classified [*before* any TNRS scrubbing]"';
|
|
9462 |
COMMENT ON COLUMN view_full_occurrence_individual_view."[verbatim_]family__@DwC__@vegpath.org" IS '"The full scientific name of the family in which the taxon is classified [*before* any TNRS scrubbing]"';
|
|
9463 | 9463 |
|
9464 | 9464 |
|
9465 | 9465 |
-- |
9466 |
-- Name: COLUMN "viewFullOccurrence_individual_view"."[verbatim_]scientificName__@DwC__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
9466 |
-- Name: COLUMN view_full_occurrence_individual_view."[verbatim_]scientificName__@DwC__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
9467 | 9467 |
-- |
9468 | 9468 |
|
9469 |
COMMENT ON COLUMN "viewFullOccurrence_individual_view"."[verbatim_]scientificName__@DwC__@vegpath.org" IS '"The full scientific name [*before* any TNRS scrubbing], with authorship and date information if known. When forming part of an Identification, this should be the name in lowest level taxonomic rank that can be determined."';
|
|
9469 |
COMMENT ON COLUMN view_full_occurrence_individual_view."[verbatim_]scientificName__@DwC__@vegpath.org" IS '"The full scientific name [*before* any TNRS scrubbing], with authorship and date information if known. When forming part of an Identification, this should be the name in lowest level taxonomic rank that can be determined."';
|
|
9470 | 9470 |
|
9471 | 9471 |
|
9472 | 9472 |
-- |
9473 |
-- Name: COLUMN "viewFullOccurrence_individual_view"."identifiedBy__@DwC__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
9473 |
-- Name: COLUMN view_full_occurrence_individual_view."identifiedBy__@DwC__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
9474 | 9474 |
-- |
9475 | 9475 |
|
9476 |
COMMENT ON COLUMN "viewFullOccurrence_individual_view"."identifiedBy__@DwC__@vegpath.org" IS '"A list (concatenated and separated) of names of people, groups, or organizations who assigned the Taxon to the subject"';
|
|
9476 |
COMMENT ON COLUMN view_full_occurrence_individual_view."identifiedBy__@DwC__@vegpath.org" IS '"A list (concatenated and separated) of names of people, groups, or organizations who assigned the Taxon to the subject"';
|
|
9477 | 9477 |
|
9478 | 9478 |
|
9479 | 9479 |
-- |
9480 |
-- Name: COLUMN "viewFullOccurrence_individual_view"."dateIdentified__@DwC__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
9480 |
-- Name: COLUMN view_full_occurrence_individual_view."dateIdentified__@DwC__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
9481 | 9481 |
-- |
9482 | 9482 |
|
9483 |
COMMENT ON COLUMN "viewFullOccurrence_individual_view"."dateIdentified__@DwC__@vegpath.org" IS '"The date on which the subject was identified as representing the Taxon"';
|
|
9483 |
COMMENT ON COLUMN view_full_occurrence_individual_view."dateIdentified__@DwC__@vegpath.org" IS '"The date on which the subject was identified as representing the Taxon"';
|
|
9484 | 9484 |
|
9485 | 9485 |
|
9486 | 9486 |
-- |
9487 |
-- Name: COLUMN "viewFullOccurrence_individual_view"."identificationRemarks__@DwC__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
9487 |
-- Name: COLUMN view_full_occurrence_individual_view."identificationRemarks__@DwC__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
9488 | 9488 |
-- |
9489 | 9489 |
|
9490 |
COMMENT ON COLUMN "viewFullOccurrence_individual_view"."identificationRemarks__@DwC__@vegpath.org" IS '"Comments or notes about the Identification"';
|
|
9490 |
COMMENT ON COLUMN view_full_occurrence_individual_view."identificationRemarks__@DwC__@vegpath.org" IS '"Comments or notes about the Identification"';
|
|
9491 | 9491 |
|
9492 | 9492 |
|
9493 | 9493 |
-- |
9494 |
-- Name: COLUMN "viewFullOccurrence_individual_view"."Family_matched__@TNRS__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
9494 |
-- Name: COLUMN view_full_occurrence_individual_view."Family_matched__@TNRS__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
9495 | 9495 |
-- |
9496 | 9496 |
|
9497 |
COMMENT ON COLUMN "viewFullOccurrence_individual_view"."Family_matched__@TNRS__@vegpath.org" IS 'http://TNRS.taxon_scrub.matchedFamily__@VegBIEN__.public@vegpath.org;
|
|
9497 |
COMMENT ON COLUMN view_full_occurrence_individual_view."Family_matched__@TNRS__@vegpath.org" IS 'http://TNRS.taxon_scrub.matchedFamily__@VegBIEN__.public@vegpath.org;
|
|
9498 | 9498 |
"The closest matching family in the TNRS database to the family submitted"'; |
9499 | 9499 |
|
9500 | 9500 |
|
9501 | 9501 |
-- |
9502 |
-- Name: COLUMN "viewFullOccurrence_individual_view"."Name_matched__@TNRS__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
9502 |
-- Name: COLUMN view_full_occurrence_individual_view."Name_matched__@TNRS__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
9503 | 9503 |
-- |
9504 | 9504 |
|
9505 |
COMMENT ON COLUMN "viewFullOccurrence_individual_view"."Name_matched__@TNRS__@vegpath.org" IS '"Scientific name with the highest match score. May be an exact match or a fuzzy match."';
|
|
9505 |
COMMENT ON COLUMN view_full_occurrence_individual_view."Name_matched__@TNRS__@vegpath.org" IS '"Scientific name with the highest match score. May be an exact match or a fuzzy match."';
|
|
9506 | 9506 |
|
9507 | 9507 |
|
9508 | 9508 |
-- |
9509 |
-- Name: COLUMN "viewFullOccurrence_individual_view"."Name_matched_author__@TNRS__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
9509 |
-- Name: COLUMN view_full_occurrence_individual_view."Name_matched_author__@TNRS__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
9510 | 9510 |
-- |
9511 | 9511 |
|
9512 |
COMMENT ON COLUMN "viewFullOccurrence_individual_view"."Name_matched_author__@TNRS__@vegpath.org" IS '"Standard authority for the matched name"';
|
|
9512 |
COMMENT ON COLUMN view_full_occurrence_individual_view."Name_matched_author__@TNRS__@vegpath.org" IS '"Standard authority for the matched name"';
|
|
9513 | 9513 |
|
9514 | 9514 |
|
9515 | 9515 |
-- |
9516 |
-- Name: COLUMN "viewFullOccurrence_individual_view"."[higher_plant_group~]higherClassification__@DwC__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
9516 |
-- Name: COLUMN view_full_occurrence_individual_view."[higher_plant_group~]higherClassification__@DwC__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
9517 | 9517 |
-- |
9518 | 9518 |
|
9519 |
COMMENT ON COLUMN "viewFullOccurrence_individual_view"."[higher_plant_group~]higherClassification__@DwC__@vegpath.org" IS 'closed list derived from higher taxa';
|
|
9519 |
COMMENT ON COLUMN view_full_occurrence_individual_view."[higher_plant_group~]higherClassification__@DwC__@vegpath.org" IS 'closed list derived from higher taxa';
|
|
9520 | 9520 |
|
9521 | 9521 |
|
9522 | 9522 |
-- |
9523 |
-- Name: COLUMN "viewFullOccurrence_individual_view"."taxonomicStatus__@DwC__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
9523 |
-- Name: COLUMN view_full_occurrence_individual_view."taxonomicStatus__@DwC__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
9524 | 9524 |
-- |
9525 | 9525 |
|
9526 |
COMMENT ON COLUMN "viewFullOccurrence_individual_view"."taxonomicStatus__@DwC__@vegpath.org" IS '"The status of the use of the scientificName as a label for a taxon. Requires taxonomic opinion to define the scope of a taxon. [...] Examples: "invalid", "misapplied", "homotypic synonym", "accepted"."';
|
|
9526 |
COMMENT ON COLUMN view_full_occurrence_individual_view."taxonomicStatus__@DwC__@vegpath.org" IS '"The status of the use of the scientificName as a label for a taxon. Requires taxonomic opinion to define the scope of a taxon. [...] Examples: "invalid", "misapplied", "homotypic synonym", "accepted"."';
|
|
9527 | 9527 |
|
9528 | 9528 |
|
9529 | 9529 |
-- |
9530 |
-- Name: COLUMN "viewFullOccurrence_individual_view".scrubbed_family; Type: COMMENT; Schema: public; Owner: -
|
|
9530 |
-- Name: COLUMN view_full_occurrence_individual_view.scrubbed_family; Type: COMMENT; Schema: public; Owner: -
|
|
9531 | 9531 |
-- |
9532 | 9532 |
|
9533 |
COMMENT ON COLUMN "viewFullOccurrence_individual_view".scrubbed_family IS 'the family of the TNRS accepted or matched name';
|
|
9533 |
COMMENT ON COLUMN view_full_occurrence_individual_view.scrubbed_family IS 'the family of the TNRS accepted or matched name';
|
|
9534 | 9534 |
|
9535 | 9535 |
|
9536 | 9536 |
-- |
9537 |
-- Name: COLUMN "viewFullOccurrence_individual_view".scrubbed_genus; Type: COMMENT; Schema: public; Owner: -
|
|
9537 |
-- Name: COLUMN view_full_occurrence_individual_view.scrubbed_genus; Type: COMMENT; Schema: public; Owner: -
|
|
9538 | 9538 |
-- |
9539 | 9539 |
|
9540 |
COMMENT ON COLUMN "viewFullOccurrence_individual_view".scrubbed_genus IS 'the genus of the TNRS accepted or matched name';
|
|
9540 |
COMMENT ON COLUMN view_full_occurrence_individual_view.scrubbed_genus IS 'the genus of the TNRS accepted or matched name';
|
|
9541 | 9541 |
|
9542 | 9542 |
|
9543 | 9543 |
-- |
9544 |
-- Name: COLUMN "viewFullOccurrence_individual_view".scrubbed_specific_epithet; Type: COMMENT; Schema: public; Owner: -
|
|
9544 |
-- Name: COLUMN view_full_occurrence_individual_view.scrubbed_specific_epithet; Type: COMMENT; Schema: public; Owner: -
|
|
9545 | 9545 |
-- |
9546 | 9546 |
|
9547 |
COMMENT ON COLUMN "viewFullOccurrence_individual_view".scrubbed_specific_epithet IS 'the specific epithet of the TNRS accepted or matched name';
|
|
9547 |
COMMENT ON COLUMN view_full_occurrence_individual_view.scrubbed_specific_epithet IS 'the specific epithet of the TNRS accepted or matched name';
|
|
9548 | 9548 |
|
9549 | 9549 |
|
9550 | 9550 |
-- |
9551 |
-- Name: COLUMN "viewFullOccurrence_individual_view".scrubbed_species_binomial; Type: COMMENT; Schema: public; Owner: -
|
|
9551 |
-- Name: COLUMN view_full_occurrence_individual_view.scrubbed_species_binomial; Type: COMMENT; Schema: public; Owner: -
|
|
9552 | 9552 |
-- |
9553 | 9553 |
|
9554 |
COMMENT ON COLUMN "viewFullOccurrence_individual_view".scrubbed_species_binomial IS 'the species binomial of the TNRS accepted or matched name';
|
|
9554 |
COMMENT ON COLUMN view_full_occurrence_individual_view.scrubbed_species_binomial IS 'the species binomial of the TNRS accepted or matched name';
|
|
9555 | 9555 |
|
9556 | 9556 |
|
9557 | 9557 |
-- |
9558 |
-- Name: COLUMN "viewFullOccurrence_individual_view".scrubbed_taxon_name_no_author; Type: COMMENT; Schema: public; Owner: -
|
|
9558 |
-- Name: COLUMN view_full_occurrence_individual_view.scrubbed_taxon_name_no_author; Type: COMMENT; Schema: public; Owner: -
|
|
9559 | 9559 |
-- |
9560 | 9560 |
|
9561 |
COMMENT ON COLUMN "viewFullOccurrence_individual_view".scrubbed_taxon_name_no_author IS 'the taxon name without author of the TNRS accepted or matched name';
|
|
9561 |
COMMENT ON COLUMN view_full_occurrence_individual_view.scrubbed_taxon_name_no_author IS 'the taxon name without author of the TNRS accepted or matched name';
|
|
9562 | 9562 |
|
9563 | 9563 |
|
9564 | 9564 |
-- |
9565 |
-- Name: COLUMN "viewFullOccurrence_individual_view".scrubbed_author; Type: COMMENT; Schema: public; Owner: -
|
|
9565 |
-- Name: COLUMN view_full_occurrence_individual_view.scrubbed_author; Type: COMMENT; Schema: public; Owner: -
|
|
9566 | 9566 |
-- |
9567 | 9567 |
|
9568 |
COMMENT ON COLUMN "viewFullOccurrence_individual_view".scrubbed_author IS 'the author of the TNRS accepted or matched name';
|
|
9568 |
COMMENT ON COLUMN view_full_occurrence_individual_view.scrubbed_author IS 'the author of the TNRS accepted or matched name';
|
|
9569 | 9569 |
|
9570 | 9570 |
|
9571 | 9571 |
-- |
9572 |
-- Name: COLUMN "viewFullOccurrence_individual_view".scrubbed_taxon_name_with_author; Type: COMMENT; Schema: public; Owner: -
|
|
9572 |
-- Name: COLUMN view_full_occurrence_individual_view.scrubbed_taxon_name_with_author; Type: COMMENT; Schema: public; Owner: -
|
|
9573 | 9573 |
-- |
9574 | 9574 |
|
9575 |
COMMENT ON COLUMN "viewFullOccurrence_individual_view".scrubbed_taxon_name_with_author IS 'the taxon name with author of the TNRS accepted or matched name';
|
|
9575 |
COMMENT ON COLUMN view_full_occurrence_individual_view.scrubbed_taxon_name_with_author IS 'the taxon name with author of the TNRS accepted or matched name';
|
|
9576 | 9576 |
|
9577 | 9577 |
|
9578 | 9578 |
-- |
9579 |
-- Name: COLUMN "viewFullOccurrence_individual_view"."speciesBinomialWithMorphospecies__@VegCore__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
9579 |
-- Name: COLUMN view_full_occurrence_individual_view."speciesBinomialWithMorphospecies__@VegCore__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
9580 | 9580 |
-- |
9581 | 9581 |
|
9582 |
COMMENT ON COLUMN "viewFullOccurrence_individual_view"."speciesBinomialWithMorphospecies__@VegCore__@vegpath.org" IS 'http://TNRS.taxon_scrub.scrubbed_morphospecies_binomial__@VegBIEN__.public@vegpath.org;
|
|
9582 |
COMMENT ON COLUMN view_full_occurrence_individual_view."speciesBinomialWithMorphospecies__@VegCore__@vegpath.org" IS 'http://TNRS.taxon_scrub.scrubbed_morphospecies_binomial__@VegBIEN__.public@vegpath.org;
|
|
9583 | 9583 |
"combine the `taxon` plus `morphospecies` to produce a unique string, `taxonMorphospecies`"; |
9584 | 9584 |
a morphospecies is a custom species name assigned in the field by the collector (which does not validate to anything in TNRS)'; |
9585 | 9585 |
|
9586 | 9586 |
|
9587 | 9587 |
-- |
9588 |
-- Name: COLUMN "viewFullOccurrence_individual_view"."[growth_form=]habit__@SALVIAS__.Plot_data@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
9588 |
-- Name: COLUMN view_full_occurrence_individual_view."[growth_form=]habit__@SALVIAS__.Plot_data@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
9589 | 9589 |
-- |
9590 | 9590 |
|
9591 |
COMMENT ON COLUMN "viewFullOccurrence_individual_view"."[growth_form=]habit__@SALVIAS__.Plot_data@vegpath.org" IS '"Growth form"; "Closed pick list"';
|
|
9591 |
COMMENT ON COLUMN view_full_occurrence_individual_view."[growth_form=]habit__@SALVIAS__.Plot_data@vegpath.org" IS '"Growth form"; "Closed pick list"';
|
|
9592 | 9592 |
|
9593 | 9593 |
|
9594 | 9594 |
-- |
9595 |
-- Name: COLUMN "viewFullOccurrence_individual_view"."reproductiveCondition__@DwC__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
9595 |
-- Name: COLUMN view_full_occurrence_individual_view."reproductiveCondition__@DwC__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
9596 | 9596 |
-- |
9597 | 9597 |
|
9598 |
COMMENT ON COLUMN "viewFullOccurrence_individual_view"."reproductiveCondition__@DwC__@vegpath.org" IS '"The reproductive condition of the biological individual(s) represented in the Occurrence. Recommended best practice is to use a controlled vocabulary."';
|
|
9598 |
COMMENT ON COLUMN view_full_occurrence_individual_view."reproductiveCondition__@DwC__@vegpath.org" IS '"The reproductive condition of the biological individual(s) represented in the Occurrence. Recommended best practice is to use a controlled vocabulary."';
|
|
9599 | 9599 |
|
9600 | 9600 |
|
9601 | 9601 |
-- |
9602 |
-- Name: COLUMN "viewFullOccurrence_individual_view".cultivated_bien; Type: COMMENT; Schema: public; Owner: -
|
|
9602 |
-- Name: COLUMN view_full_occurrence_individual_view.cultivated_bien; Type: COMMENT; Schema: public; Owner: -
|
|
9603 | 9603 |
-- |
9604 | 9604 |
|
9605 |
COMMENT ON COLUMN "viewFullOccurrence_individual_view".cultivated_bien IS 'whether the occurrence was flagged as cultivated';
|
|
9605 |
COMMENT ON COLUMN view_full_occurrence_individual_view.cultivated_bien IS 'whether the occurrence was flagged as cultivated';
|
|
9606 | 9606 |
|
9607 | 9607 |
|
9608 | 9608 |
-- |
9609 |
-- Name: COLUMN "viewFullOccurrence_individual_view"."cultivatedBasis_bien"; Type: COMMENT; Schema: public; Owner: -
|
|
9609 |
-- Name: COLUMN view_full_occurrence_individual_view."cultivatedBasis_bien"; Type: COMMENT; Schema: public; Owner: -
|
|
9610 | 9610 |
-- |
9611 | 9611 |
|
9612 |
COMMENT ON COLUMN "viewFullOccurrence_individual_view"."cultivatedBasis_bien" IS 'why the occurrence was flagged as cultivated';
|
|
9612 |
COMMENT ON COLUMN view_full_occurrence_individual_view."cultivatedBasis_bien" IS 'why the occurrence was flagged as cultivated';
|
|
9613 | 9613 |
|
9614 | 9614 |
|
9615 | 9615 |
-- |
9616 |
-- Name: COLUMN "viewFullOccurrence_individual_view"."occurrenceRemarks__@DwC__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
9616 |
-- Name: COLUMN view_full_occurrence_individual_view."occurrenceRemarks__@DwC__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
9617 | 9617 |
-- |
9618 | 9618 |
|
9619 |
COMMENT ON COLUMN "viewFullOccurrence_individual_view"."occurrenceRemarks__@DwC__@vegpath.org" IS '"Comments or notes about the Occurrence"';
|
|
9619 |
COMMENT ON COLUMN view_full_occurrence_individual_view."occurrenceRemarks__@DwC__@vegpath.org" IS '"Comments or notes about the Occurrence"';
|
|
9620 | 9620 |
|
9621 | 9621 |
|
9622 | 9622 |
-- |
9623 |
-- Name: COLUMN "viewFullOccurrence_individual_view"."coverPercent__@VegX__.attribute.ordinal@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
9623 |
-- Name: COLUMN view_full_occurrence_individual_view."coverPercent__@VegX__.attribute.ordinal@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
9624 | 9624 |
-- |
9625 | 9625 |
|
9626 |
COMMENT ON COLUMN "viewFullOccurrence_individual_view"."coverPercent__@VegX__.attribute.ordinal@vegpath.org" IS '"Average cover of the index in percent"';
|
|
9626 |
COMMENT ON COLUMN view_full_occurrence_individual_view."coverPercent__@VegX__.attribute.ordinal@vegpath.org" IS '"Average cover of the index in percent"';
|
|
9627 | 9627 |
|
9628 | 9628 |
|
9629 | 9629 |
-- |
9630 |
-- Name: COLUMN "viewFullOccurrence_individual_view"."taxonObservation[.id]__@VegBank__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
9630 |
-- Name: COLUMN view_full_occurrence_individual_view."taxonObservation[.id]__@VegBank__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
9631 | 9631 |
-- |
9632 | 9632 |
|
9633 |
COMMENT ON COLUMN "viewFullOccurrence_individual_view"."taxonObservation[.id]__@VegBank__@vegpath.org" IS '"identifier assigned [by the datasource] to each unique observation of a taxon in a plot"';
|
|
9633 |
COMMENT ON COLUMN view_full_occurrence_individual_view."taxonObservation[.id]__@VegBank__@vegpath.org" IS '"identifier assigned [by the datasource] to each unique observation of a taxon in a plot"';
|
|
9634 | 9634 |
|
9635 | 9635 |
|
9636 | 9636 |
-- |
9637 |
-- Name: COLUMN "viewFullOccurrence_individual_view"."taxonNameUsageConcept.authorCode__@VegX__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
9637 |
-- Name: COLUMN view_full_occurrence_individual_view."taxonNameUsageConcept.authorCode__@VegX__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
9638 | 9638 |
-- |
9639 | 9639 |
|
9640 |
COMMENT ON COLUMN "viewFullOccurrence_individual_view"."taxonNameUsageConcept.authorCode__@VegX__@vegpath.org" IS '"Verbatum short code used by the author to signify the species at time of observation"';
|
|
9640 |
COMMENT ON COLUMN view_full_occurrence_individual_view."taxonNameUsageConcept.authorCode__@VegX__@vegpath.org" IS '"Verbatum short code used by the author to signify the species at time of observation"';
|
|
9641 | 9641 |
|
9642 | 9642 |
|
9643 | 9643 |
-- |
9644 |
-- Name: COLUMN "viewFullOccurrence_individual_view"."aggregateOrganismObservation.id__@VegX__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
9644 |
-- Name: COLUMN view_full_occurrence_individual_view."aggregateOrganismObservation.id__@VegX__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
9645 | 9645 |
-- |
9646 | 9646 |
|
9647 |
COMMENT ON COLUMN "viewFullOccurrence_individual_view"."aggregateOrganismObservation.id__@VegX__@vegpath.org" IS 'the ID for "An observation applying to all occurrences of an organism based on an aggregation factor. It contains an AggregateValue, which is an assessment of the overall occurrence of an organism in a Plot (e.g. number of stems, percentage cover, total biomass, basal area)."';
|
|
9647 |
COMMENT ON COLUMN view_full_occurrence_individual_view."aggregateOrganismObservation.id__@VegX__@vegpath.org" IS 'the ID for "An observation applying to all occurrences of an organism based on an aggregation factor. It contains an AggregateValue, which is an assessment of the overall occurrence of an organism in a Plot (e.g. number of stems, percentage cover, total biomass, basal area)."';
|
|
9648 | 9648 |
|
9649 | 9649 |
|
9650 | 9650 |
-- |
9651 |
-- Name: COLUMN "viewFullOccurrence_individual_view"."individualOrganismObservation.id__@VegX__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
9651 |
-- Name: COLUMN view_full_occurrence_individual_view."individualOrganismObservation.id__@VegX__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
9652 | 9652 |
-- |
9653 | 9653 |
|
9654 |
COMMENT ON COLUMN "viewFullOccurrence_individual_view"."individualOrganismObservation.id__@VegX__@vegpath.org" IS 'the ID for "An observation applying to one occurrence of an organism (or part of an organism). It is a container for measurements made on the organism (e.g. diameter, height, crown dimensions, biomass, growth form, number of stems)."';
|
|
9654 |
COMMENT ON COLUMN view_full_occurrence_individual_view."individualOrganismObservation.id__@VegX__@vegpath.org" IS 'the ID for "An observation applying to one occurrence of an organism (or part of an organism). It is a container for measurements made on the organism (e.g. diameter, height, crown dimensions, biomass, growth form, number of stems)."';
|
|
9655 | 9655 |
|
9656 | 9656 |
|
9657 | 9657 |
-- |
9658 |
-- Name: COLUMN "viewFullOccurrence_individual_view"."individualID__@DwC__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
9658 |
-- Name: COLUMN view_full_occurrence_individual_view."individualID__@DwC__@vegpath.org"; Type: COMMENT; Schema: public; Owner: -
|
|
9659 | 9659 |
-- |
9660 | 9660 |
|
9661 |
COMMENT ON COLUMN "viewFullOccurrence_individual_view"."individualID__@DwC__@vegpath.org" IS '"An identifier for an individual or named group of individual organisms represented in the Occurrence"';
|
|
9661 |
COMMENT ON COLUMN view_full_occurrence_individual_view."individualID__@DwC__@vegpath.org" IS '"An identifier for an individual or named group of individual organisms represented in the Occurrence"';
|
|
9662 | 9662 |
|
9663 | 9663 |
|
9664 | 9664 |
-- |
Also available in: Unified diff
schemas/public_.sql: viewFullOccurrence_*: renamed to view_full_occurrence_* at Brian M's request (e-mail from Martha on 2014-8-12 at 17:37PT). note that this change has already been made on vegbiendev.