@@ -843,7 +843,6 @@ def get_record(
843843 - 'dv' : daily mean data
844844 - 'site' : site description
845845 - 'peaks': discharge peaks
846- - 'water_use': get water use data
847846 - 'ratings': get rating table
848847 - 'stat': get statistics
849848 ssl_check: bool, optional
@@ -872,11 +871,6 @@ def get_record(
872871 >>> # Get discharge peaks for site 01585200
873872 >>> df = dataretrieval.nwis.get_record(sites="01585200", service="peaks")
874873
875- >>> # Get water use data for livestock nationally in 2010
876- >>> df = dataretrieval.nwis.get_record(
877- ... service="water_use", years="2010", categories="L"
878- ... )
879-
880874 >>> # Get rating table for USGS streamgage 01585200
881875 >>> df = dataretrieval.nwis.get_record(sites="01585200", service="ratings")
882876
@@ -931,10 +925,6 @@ def get_record(
931925 )
932926 return df
933927
934- elif service == "water_use" :
935- df , _ = get_water_use (state = state , ssl_check = ssl_check , ** kwargs )
936- return df
937-
938928 elif service == "ratings" :
939929 df , _ = get_ratings (site = sites , ssl_check = ssl_check , ** kwargs )
940930 return df
0 commit comments