@@ -188,8 +188,7 @@ def get_daily(
188188 ... time="2021-01-01T00:00:00Z/2022-01-01T00:00:00Z",
189189 ... )
190190
191- >>> # Get monitoring location info for specific sites
192- >>> # and only specific properties
191+ >>> # Get approved daily flow data from multiple sites
193192 >>> df, md = dataretrieval.waterdata.get_daily(
194193 ... monitoring_location_id = ["USGS-05114000", "USGS-09423350"],
195194 ... approval_status = "Approved",
@@ -678,19 +677,18 @@ def get_time_series_metadata(
678677 --------
679678 .. code::
680679
681- >>> # Get daily flow data from a single site
680+ >>> # Get timeseries metadata information from a single site
682681 >>> # over a yearlong period
683682 >>> df, md = dataretrieval.waterdata.get_time_series_metadata(
684- ... monitoring_location_id="USGS-02238500",
685- ... parameter_code="00060",
686- ... time="2021-01-01T00:00:00Z/2022-01-01T00:00:00Z",
683+ ... monitoring_location_id="USGS-02238500"
687684 ... )
688685
689- >>> # Get monitoring location info for specific sites
690- >>> # and only specific properties
686+ >>> # Get timeseries metadata information from multiple sites
687+ >>> # that begin after January 1, 1990.
691688 >>> df, md = dataretrieval.waterdata.get_time_series_metadata(
692689 ... monitoring_location_id = ["USGS-05114000", "USGS-09423350"],
693- ... time = "2024-01-01/.."
690+ ... begin = "1990-01-01/.."
691+ ... )
694692 """
695693 service = "time-series-metadata"
696694 output_id = "time_series_id"
@@ -856,14 +854,12 @@ def get_latest_continuous(
856854 --------
857855 .. code::
858856
859- >>> # Get daily flow data from a single site
860- >>> # over a yearlong period
857+ >>> # Get latest flow data from a single site
861858 >>> df, md = dataretrieval.waterdata.get_latest_continuous(
862859 ... monitoring_location_id="USGS-02238500", parameter_code="00060"
863860 ... )
864861
865- >>> # Get monitoring location info for specific sites
866- >>> # and only specific properties
862+ >>> # Get latest continuous measurements for multiple sites
867863 >>> df, md = dataretrieval.waterdata.get_latest_continuous(
868864 ... monitoring_location_id=["USGS-05114000", "USGS-09423350"]
869865 ... )
@@ -1034,14 +1030,12 @@ def get_latest_daily(
10341030 --------
10351031 .. code::
10361032
1037- >>> # Get daily flow data from a single site
1038- >>> # over a yearlong period
1033+ >>> # Get most recent daily flow data from a single site
10391034 >>> df, md = dataretrieval.waterdata.get_latest_daily(
10401035 ... monitoring_location_id="USGS-02238500", parameter_code="00060"
10411036 ... )
10421037
1043- >>> # Get monitoring location info for specific sites
1044- >>> # and only specific properties
1038+ >>> # Get most recent daily measurements for two sites
10451039 >>> df, md = dataretrieval.waterdata.get_latest_daily(
10461040 ... monitoring_location_id=["USGS-05114000", "USGS-09423350"]
10471041 ... )
@@ -1201,16 +1195,16 @@ def get_field_measurements(
12011195 --------
12021196 .. code::
12031197
1204- >>> # Get daily flow data from a single site
1205- >>> # over a yearlong period
1198+ >>> # Get field measurements from a single groundwater site
1199+ >>> # and parameter code, and do not return geometry
12061200 >>> df, md = dataretrieval.waterdata.get_field_measurements(
12071201 ... monitoring_location_id="USGS-375907091432201",
12081202 ... parameter_code="72019",
12091203 ... skip_geometry=True,
12101204 ... )
12111205
1212- >>> # Get monitoring location info for specific sites
1213- >>> # and only specific properties
1206+ >>> # Get field measurements from multiple sites and
1207+ >>> # parameter codes from the last 20 years
12141208 >>> df, md = dataretrieval.waterdata.get_field_measurements(
12151209 ... monitoring_location_id = ["USGS-451605097071701",
12161210 "USGS-263819081585801"],
0 commit comments