Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions ciroh_plugins/drought/drought_map.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ class DroughtMap(base.DataSource):
visualization_tags = [
"map", "drought", "temperature", "precipitation"
]
visualization_attribution = "NOAA, USGS, NDMC, USDA"
_user_parameters = []

def __init__(self, date, service, metadata=None, **kwargs):
Expand Down
1 change: 1 addition & 0 deletions ciroh_plugins/drought/drought_pie.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ class DroughtDataGraph(base.DataSource):
visualization_group = "Drought_Monitor"
visualization_label = "U.S. Drought Monitor Data Graph"
visualization_type = "plotly"
visualization_attribution = "NDMC"

def __init__(self, area_type, date, metadata=None):

Expand Down
1 change: 1 addition & 0 deletions ciroh_plugins/drought/drought_plot.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ class DroughtDataTimeSeries(base.DataSource):
visualization_group = "Drought_Monitor"
visualization_label = "U.S. Drought Monitor Data Time Series"
visualization_type = "plotly"
visualization_attribution = "NDMC"

def __init__(self, area_type, data_index, metadata=None):
self.api_base_url = "https://droughtmonitor.unl.edu/DmData/TimeSeries.aspx/ReturnBasicDmTimeSeries"
Expand Down
1 change: 1 addition & 0 deletions ciroh_plugins/drought/drought_table.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ class DroughtDataTable(base.DataSource):
visualization_group = "Drought_Monitor"
visualization_label = "U.S. Drought Monitor Data Table"
visualization_type = "custom"
visualization_attribution = "NDMC"

def __init__(self, area_type, statistic_type, data_type, metadata=None):
# self.mfe_unpkg_url = "http://localhost:3000/remoteEntry.js"
Expand Down
1 change: 1 addition & 0 deletions ciroh_plugins/nwmps/gauges.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ class NWMPSGaugesSeries(base.DataSource):
visualization_group = "NWMP"
visualization_label = "NWMP Gauges Time Series"
visualization_type = "plotly"
visualization_attribution = "NOAA"

def __init__(self, id, metadata=None):
self.api_base_url = "https://api.water.noaa.gov/nwps/v1"
Expand Down
1 change: 1 addition & 0 deletions ciroh_plugins/nwmps/nwmp_map.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ class NWMPMap(base.DataSource):
visualization_tags = [
"map", "water", "water prediction", "flooding forecast"
]
visualization_attribution = "NOAA"
_user_parameters = []

def __init__(self, service, metadata=None, **kwargs):
Expand Down
1 change: 1 addition & 0 deletions ciroh_plugins/nwmps/reaches.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ class NWMPSReachesSeries(base.DataSource):
visualization_group = "NWMP"
visualization_label = "NWMP Reaches Time Series"
visualization_type = "plotly"
visualization_attribution = "NOAA"

def __init__(self, id, metadata=None):
self.api_base_url = "https://api.water.noaa.gov/nwps/v1"
Expand Down
1 change: 1 addition & 0 deletions ciroh_plugins/nwmps/service.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ class NWMPService(base.DataSource):
visualization_group = "NWMP"
visualization_label = "NWMP Data Service"
visualization_type = "card"
visualization_attribution = "NOAA"

def __init__(self, service, huc_id, layer_id, metadata=None):
"""
Expand Down
Loading