Pacific Island Network Streams Monitoring Dataset 2009-2022
Department of the Interior
@usgov.doi_gov_pacific_island_network_streams_monitoring_2009_2022
Department of the Interior
@usgov.doi_gov_pacific_island_network_streams_monitoring_2009_2022
Throughout the world, freshwater ecosystems are considered to be among the most vulnerable systems. In the isolated Pacific islands there are a relatively small number of native freshwater species, which are mainly endemic to these locations. Throughout the region, native flora and fauna face significant threats from species introductions and habitat destruction. The National Parks in the Pacific Island Network (PACN) protect some of the last relatively pristine stream systems. The Pacific Islands Stream Monitoring Protocol monitors long term changes in stream communities for four of the Pacific Island parks. This dataset contains results from 2009 through 2021 stream animal surveys in HALE, KALA, NPSA, and WAPA and will provide park managers with information necessary to understand status and trends in biotic integrity within park stream systems. This project is ongoing and will be updated annually.
Organization: Department of the Interior
Last updated: 2023-08-24T04:52:58.639436
Tags: aquatic-ecosystems, aquatic-invertebrates, biology, ecological-framework-biological-integrity-focal-species-or-communities-freshwater-invertebrates, ecological-framework-biological-integrity-focal-species-or-communities-riparian-communities, freshwater, guam, hale, haleakala-national-park, hydrography, hydrology, inlandwaters, kala, kalaupapa-national-historical-park, maui, molokai, monitoring, national-park-of-american-samoa-national-park, npsa, pacific-islands-network-network, pacn, streams, surface-water, tau, tutuila, wapa, war-in-the-pacific-national-historical-park, water, water-resources
CREATE TABLE tbl_canopy (
"canopy_id" VARCHAR,
"transect_id" VARCHAR,
"facing" VARCHAR,
"measurement" BIGINT
);CREATE TABLE tbl_db_revisions (
"revision_id" BIGINT,
"revision_contact_id" VARCHAR,
"revision_date" TIMESTAMP,
"revision_reason" VARCHAR,
"revision_desc" VARCHAR
);CREATE TABLE tbl_events (
"event_id" VARCHAR,
"site_id" VARCHAR,
"start_date" TIMESTAMP,
"end_date" TIMESTAMP,
"start_time" VARCHAR,
"end_time" VARCHAR,
"entered_by" VARCHAR,
"entered_date" TIMESTAMP,
"updated_by" VARCHAR,
"updated_date" TIMESTAMP,
"verified" BIGINT,
"verified_by" VARCHAR,
"verified_date" TIMESTAMP,
"certified" BIGINT,
"certified_by" VARCHAR,
"certified_date" TIMESTAMP,
"event_notes" VARCHAR
);CREATE TABLE tbl_fish (
"fish_id" VARCHAR,
"event_id" VARCHAR,
"quadrat" BIGINT,
"flagged" BIGINT
);CREATE TABLE tbl_images (
"image_id" VARCHAR,
"transect_id" VARCHAR,
"image_label" VARCHAR,
"image_date" TIMESTAMP,
"image_time" VARCHAR,
"image_source" VARCHAR,
"image_project_path" VARCHAR,
"image_filename" VARCHAR,
"image_notes" VARCHAR
);CREATE TABLE tbl_odonates (
"odonate_id" VARCHAR,
"event_id" VARCHAR,
"weather" VARCHAR,
"flagged" BIGINT,
"odonate_notes" VARCHAR
);CREATE TABLE tbl_parks (
"park_id" VARCHAR,
"park_name" VARCHAR,
"unit_code" VARCHAR
);CREATE TABLE tbl_points (
"point_id" VARCHAR,
"transect_id" VARCHAR,
"point" VARCHAR,
"tape_reading" DOUBLE,
"depth" DOUBLE,
"velocity" DOUBLE,
"shallowness" BIGINT,
"habitat_type" VARCHAR
);CREATE TABLE tbl_qa_results (
"query_name" VARCHAR,
"time_frame" VARCHAR,
"query_type" BIGINT,
"query_result" BIGINT,
"query_run_time" TIMESTAMP,
"query_description" VARCHAR,
"query_expression" VARCHAR,
"remedy_desc" VARCHAR,
"remedy_date" TIMESTAMP,
"qa_user" VARCHAR,
"is_done" BIGINT
);CREATE TABLE tbl_quadrats (
"quadrat_id" VARCHAR,
"event_id" VARCHAR,
"quadrat" DOUBLE,
"habitat_type" VARCHAR,
"ft_depth" DOUBLE,
"estimated_depth" DOUBLE,
"x" DOUBLE,
"y" DOUBLE,
"flagged" BIGINT
);CREATE TABLE tbl_shrimp (
"shrimp_id" VARCHAR,
"event_id" VARCHAR,
"quadrat" DOUBLE,
"section" VARCHAR,
"collection" VARCHAR,
"flagged" BIGINT
);CREATE TABLE tbl_site_geo_unit (
"site_geo_unit_id" VARCHAR,
"site_id" VARCHAR,
"site_geo_date" TIMESTAMP
);CREATE TABLE tbl_sites (
"site_id" VARCHAR,
"location_id" VARCHAR,
"site_name" VARCHAR,
"site_type" VARCHAR,
"reach" VARCHAR,
"latitude" DOUBLE,
"lat_dir" VARCHAR,
"longitude" DOUBLE,
"long_dir" VARCHAR,
"gcs" VARCHAR,
"site_error" DOUBLE,
"site_desc" VARCHAR,
"long_river_mouth" DOUBLE,
"lat_river_mouth" DOUBLE,
"river_mouth" BIGINT,
"upstream" DOUBLE,
"downstream" DOUBLE,
"elevation" BIGINT,
"marker_upstream" VARCHAR,
"marker_downstream" VARCHAR,
"site_discontinuned" VARCHAR,
"site_notes" VARCHAR,
"site_entered_date" TIMESTAMP,
"site_entered_by" VARCHAR,
"site_updated_date" TIMESTAMP,
"site_updated_by" VARCHAR
);CREATE TABLE tbl_snails (
"snail_id" VARCHAR,
"event_id" VARCHAR,
"quadrat" DOUBLE,
"section" VARCHAR,
"spat" DOUBLE,
"eggs" DOUBLE,
"flagged" BIGINT
);CREATE TABLE tbl_transects (
"transect_id" VARCHAR,
"event_id" VARCHAR,
"transect_number" VARCHAR,
"transect_loc" DOUBLE,
"channel_width" DOUBLE,
"total_discharge" DOUBLE,
"percent_error" DOUBLE,
"flagged" BIGINT,
"pdf_path" VARCHAR,
"transect_notes" VARCHAR
);CREATE TABLE tlu_contacts (
"contact_id" VARCHAR,
"last_name" VARCHAR,
"first_name" VARCHAR,
"middle_init" VARCHAR,
"organization" VARCHAR,
"position_title" VARCHAR,
"address_type" VARCHAR,
"address" VARCHAR,
"address2" VARCHAR,
"city" VARCHAR,
"state_code" VARCHAR,
"zip_code" DOUBLE,
"country" VARCHAR,
"email_address" VARCHAR,
"work_phone" VARCHAR,
"work_extension" DOUBLE,
"contact_notes" VARCHAR,
"active" BIGINT
);CREATE TABLE tlu_enumerations (
"enum_code" VARCHAR,
"enum_description" VARCHAR,
"enum_group" VARCHAR,
"sort_order" BIGINT
);CREATE TABLE tlu_taxa (
"taxa_id" VARCHAR,
"aphiaid" DOUBLE,
"category" VARCHAR,
"range" VARCHAR,
"kingdom" VARCHAR,
"phylum" VARCHAR,
"class" VARCHAR,
"order" VARCHAR,
"family" VARCHAR,
"genus" VARCHAR,
"species" VARCHAR,
"nativity" VARCHAR,
"scientific_name" VARCHAR,
"authority" VARCHAR,
"synonym" VARCHAR,
"local_name" VARCHAR,
"common_name" VARCHAR,
"taxa_updated_date" TIMESTAMP,
"updated_by" VARCHAR,
"updated_notes" VARCHAR
);CREATE TABLE xref_event_contacts (
"event_id" VARCHAR,
"contact_id" VARCHAR,
"contact_role" VARCHAR
);CREATE TABLE xref_fish_taxa (
"fish_id" VARCHAR,
"taxa_id" VARCHAR,
"size" VARCHAR,
"count" BIGINT
);CREATE TABLE xref_odonates_taxa (
"odonate_id" VARCHAR,
"taxa_id" VARCHAR,
"sex" VARCHAR,
"count" BIGINT
);CREATE TABLE xref_point_structures (
"point_id" VARCHAR,
"structures" VARCHAR
);CREATE TABLE xref_quadrat_structures (
"quadrat_id" VARCHAR,
"structures" VARCHAR
);CREATE TABLE xref_shrimp_taxa (
"shrimp_id" VARCHAR,
"taxa_id" VARCHAR,
"length" DOUBLE,
"gravid" VARCHAR,
"count" BIGINT,
"estimated" BIGINT
);CREATE TABLE xref_site_cover (
"site_id" VARCHAR,
"cover" VARCHAR,
"disturbed_cover" VARCHAR,
"site_cover_date" TIMESTAMP
);Anyone who has the link will be able to view this.